.dfao-cataract-faq,
.dfao-cataract-final-cta {
  --dfao-faq-blue-950: #082653;
  --dfao-faq-blue-900: #123b73;
  --dfao-faq-blue-700: #2b5fc5;
  --dfao-faq-green-500: #6fc377;
  --dfao-faq-muted: #64748b;
  font-family: Inter, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.dfao-cataract-faq *,
.dfao-cataract-faq *::before,
.dfao-cataract-faq *::after,
.dfao-cataract-final-cta *,
.dfao-cataract-final-cta *::before,
.dfao-cataract-final-cta *::after {
  box-sizing: border-box;
}

.dfao-cataract-faq {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(88px, 9vw, 144px) 0;
  background:
    radial-gradient(circle at 5% 4%, rgba(111, 195, 119, .11), transparent 23rem),
    #fff;
}

.dfao-cataract-faq__inner {
  display: grid;
  width: min(1120px, calc(100% - 48px));
  margin-inline: auto;
  align-items: start;
  grid-template-columns: minmax(280px, .7fr) minmax(0, 1.3fr);
  gap: clamp(62px, 9vw, 132px);
}

.dfao-cataract-faq__heading {
  position: sticky;
  top: 180px;
}

.dfao-cataract-faq h2 {
  margin: 0;
  color: var(--dfao-faq-blue-950);
  font-size: clamp(42px, 4vw, 62px);
  font-weight: 780;
  letter-spacing: -.045em;
  line-height: 1.05;
}

.dfao-cataract-faq__heading::after {
  display: block;
  width: 58px;
  height: 3px;
  margin-top: 27px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--dfao-faq-green-500), var(--dfao-faq-blue-700));
  content: "";
}

.dfao-cataract-faq__items {
  border-top: 1px solid #dfe7f0;
}

.dfao-cataract-faq details {
  border-bottom: 1px solid #dfe7f0;
}

.dfao-cataract-faq summary {
  display: grid;
  min-height: 82px;
  align-items: center;
  padding: 20px 4px;
  color: var(--dfao-faq-blue-950);
  cursor: pointer;
  font-size: 18px;
  font-weight: 740;
  line-height: 1.4;
  list-style: none;
  grid-template-columns: 1fr 38px;
  gap: 22px;
}

.dfao-cataract-faq summary::-webkit-details-marker {
  display: none;
}

.dfao-cataract-faq summary i {
  position: relative;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #d5dfeb;
  border-radius: 50%;
  background: #f7fafc;
  transition: border-color .2s ease, background .2s ease, transform .25s ease;
}

.dfao-cataract-faq summary i::before,
.dfao-cataract-faq summary i::after {
  position: absolute;
  width: 13px;
  height: 2px;
  border-radius: 99px;
  background: var(--dfao-faq-blue-700);
  content: "";
}

.dfao-cataract-faq summary i::after {
  transform: rotate(90deg);
  transition: transform .25s ease;
}

.dfao-cataract-faq details[open] summary i {
  border-color: rgba(111, 195, 119, .48);
  background: #edf8ef;
  transform: rotate(180deg);
}

.dfao-cataract-faq details[open] summary i::after {
  transform: rotate(0);
}

.dfao-cataract-faq details > div {
  padding: 0 64px 27px 4px;
  animation: dfao-faq-reveal .28s ease both;
}

.dfao-cataract-faq details p {
  max-width: 700px;
  margin: 0;
  color: var(--dfao-faq-muted);
  font-size: 17px;
  line-height: 1.72;
}

.dfao-cataract-faq summary:focus-visible {
  outline: 3px solid rgba(43, 95, 197, .25);
  outline-offset: 3px;
}

.dfao-cataract-final-cta {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: clamp(82px, 9vw, 132px) 0;
  color: #fff;
  background:
    radial-gradient(circle at 22% 18%, rgba(111, 195, 119, .19), transparent 19rem),
    radial-gradient(circle at 84% 75%, rgba(43, 95, 197, .28), transparent 28rem),
    linear-gradient(145deg, #123f7b 0%, #082653 58%, #061d3f 100%);
}

.dfao-cataract-final-cta__inner {
  position: relative;
  z-index: 2;
  width: min(900px, calc(100% - 48px));
  margin-inline: auto;
  text-align: center;
}

.dfao-cataract-final-cta h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(42px, 4.6vw, 68px);
  font-weight: 780;
  letter-spacing: -.045em;
  line-height: 1.04;
}

.dfao-cataract-final-cta__inner > p:not(.dfao-cataract-final-cta__disclaimer) {
  max-width: 680px;
  margin: 26px auto 0;
  color: rgba(255, 255, 255, .72);
  font-size: 18px;
  line-height: 1.68;
}

.dfao-cataract-final-cta__button {
  display: inline-flex;
  min-height: 55px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  padding: 0 24px;
  border: 1px solid var(--dfao-faq-green-500);
  border-radius: 11px;
  color: #173f36;
  background: var(--dfao-faq-green-500);
  box-shadow: 0 16px 36px rgba(2, 16, 38, .24);
  font-size: 15px;
  font-weight: 780;
  line-height: 1.25;
  text-decoration: none;
  transition: background .2s ease, box-shadow .2s ease, transform .2s ease;
}

.dfao-cataract-final-cta__button::after {
  width: 7px;
  height: 7px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  content: "";
  transform: rotate(45deg);
}

.dfao-cataract-final-cta__button:hover {
  color: #0d3128;
  background: #89d68f;
  box-shadow: 0 20px 42px rgba(2, 16, 38, .28);
  transform: translateY(-3px);
}

.dfao-cataract-final-cta__button:focus-visible {
  outline: 3px solid rgba(255, 255, 255, .35);
  outline-offset: 4px;
}

.dfao-cataract-final-cta__disclaimer {
  max-width: 740px;
  margin: 30px auto 0;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  color: rgba(255, 255, 255, .55);
  font-size: 12.5px;
  line-height: 1.55;
}

.dfao-cataract-final-cta__orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 50%;
  pointer-events: none;
}

.dfao-cataract-final-cta__orbit::after {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dfao-faq-green-500);
  box-shadow: 0 0 20px rgba(111, 195, 119, .68);
  content: "";
}

.dfao-cataract-final-cta__orbit--one {
  top: -250px;
  right: -160px;
  width: 590px;
  height: 590px;
  animation: dfao-faq-orbit 29s linear infinite;
}

.dfao-cataract-final-cta__orbit--one::after {
  bottom: 16%;
  left: 17%;
}

.dfao-cataract-final-cta__orbit--two {
  bottom: -310px;
  left: -180px;
  width: 560px;
  height: 560px;
  border-color: rgba(111, 195, 119, .08);
  animation: dfao-faq-orbit-reverse 24s linear infinite;
}

.dfao-cataract-final-cta__orbit--two::after {
  top: 14%;
  right: 18%;
}

@keyframes dfao-faq-reveal {
  from {
    opacity: 0;
    transform: translateY(-7px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes dfao-faq-orbit {
  to {
    transform: rotate(360deg);
  }
}

@keyframes dfao-faq-orbit-reverse {
  to {
    transform: rotate(-360deg);
  }
}

@media (max-width: 820px) {
  .dfao-cataract-faq__inner {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .dfao-cataract-faq__heading {
    position: static;
  }
}

@media (max-width: 620px) {
  .dfao-cataract-faq {
    padding: 76px 0;
  }

  .dfao-cataract-faq__inner,
  .dfao-cataract-final-cta__inner {
    width: min(100% - 32px, 1120px);
  }

  .dfao-cataract-faq h2,
  .dfao-cataract-final-cta h2 {
    font-size: clamp(40px, 11.4vw, 52px);
  }

  .dfao-cataract-faq summary {
    min-height: 76px;
    font-size: 16.5px;
    grid-template-columns: 1fr 34px;
    gap: 14px;
  }

  .dfao-cataract-faq summary i {
    width: 34px;
    height: 34px;
  }

  .dfao-cataract-faq details > div {
    padding-right: 4px;
  }

  .dfao-cataract-final-cta {
    padding: 78px 0;
  }

  .dfao-cataract-final-cta__button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .dfao-cataract-faq *,
  .dfao-cataract-faq *::before,
  .dfao-cataract-faq *::after,
  .dfao-cataract-final-cta *,
  .dfao-cataract-final-cta *::before,
  .dfao-cataract-final-cta *::after {
    animation: none !important;
    transition: none !important;
  }
}

