/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Tilt+Neon&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&display=swap");

/* Basic Body Styles */
body {
  margin: 0;
  /*font-family: 'Lato', sans-serif;*/
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

#root {
  width: 100%;
  min-height: 100vh;
}

.getting-patients-started {
  font-weight: 400;
  font-family: var(--font-agenda);
  font-size: 20px;
  margin: 0;
}

.page__bg {
  background-image: url("../../images/backgrounds/hcp-wall-texture.png");
  background-repeat: repeat;
  opacity: 0.3;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.page__bg--bricks {
  opacity: 0.2 !important;
}

/* Hero Section */
.hero-section {
  position: relative;
  width: 100%;
  height: 499px;
  display: flex;
  flex-direction: column;
  background-image: url(../../images/backgrounds/get-started-desktop.svg);
  background-repeat: no-repeat;
  background-size: cover;
}

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

.hero-content {
  position: absolute;
  top: 40px;
  left: 16px;
  right: 16px;
  width: calc(100% - 32px);
  z-index: 4;
}

.hero-title {
  color: var(--color-charcol);
  font-family: "Tilt Neon";
  font-size: 48px;
  line-height: 1.2;
  font-weight: 400;
  text-shadow: none;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  max-width: 683px;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: var(--color-charchol, #1D2D3A);

  @media (max-width: 768px) {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .hero-section {
    background-size: cover;
    height: 485px;
    background-position: center;
    background-image: url(../../images/backgrounds/get-started-mobile.svg);

  }
  .hero-title.desktop {
    display: none;
  }
  .hero-title.mobile {
    display: block;
  }
}

@media (min-width: 768px) {
  .hero-content {
    left: 120px;
    right: 120px;
    width: calc(100% - 240px);
    top: 60px;
  }

  .hero-title {
    font-size: 48px;
    line-height: 54px;
    &.mobile {
      display: none;
      @media (max-width:768px) {
      display: block;

      }
    }
    &.desktop {
      display: block;
        @media (max-width:768px) {
          display: none;
      }
    }
  }
}

/* Section 2 */
.section {
  width: 100%;
  padding: 80px 16px;
  max-width: 1440px;
  margin: 0 auto;

  &.padding-top-0 {
    padding-bottom: 91px;
  }
}

.section.what-you-need-help {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-header {
  font-family: "Tilt Neon", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 28px;
  margin: 0;
}

@media (min-width: 768px) {
  .section {
    padding-left: 0;
    padding-right: 0;
  }

  .section.what-you-need-help {
    padding: 60px 120px;
  }

  .section-header {
    font-size: 40px;
  }
}

.section-content {
  font-weight: 400;
  font-style: normal;
  font-size: 20px;
  margin: 0;
  line-height: normal;

  &.patient-consent{
    margin-top: 16px;
  }
}

.section-content-bold {
  font-weight: 700;
  font-style: normal;
  font-size: 20px;
  margin: 0;
  line-height: normal;
}

.what-you-need-switch {
  display: grid;
  place-items: center;
  gap: 30px;
}

.what-you-need-switch-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 300px;
  height: 400px;
}

.switch-off-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: absolute;
  width: 170px;
  height: 220px;
  top: 70px;

  @media (max-width: 768px) {
    width: 200px;
    top: 85px;
  }
}

.what-you-need-switch-item.active .switch-off-container {
  width: 220px;
  top: 60px;
}

.switch-off-content {
  display: flex;
  flex-direction: column;
}

.switch-off-container:hover {
  cursor: pointer;
}

.swift-off-frame-content {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  margin-top: 8px;
}

.switch-off-button {
  transform: rotate(45deg);
  align-self: end;
  visibility: hidden;
}

@media (min-width: 768px) {
  .what-you-need-switch {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    width: fit-content;
    margin: 0 auto;
    max-width: 100%;
  }
}

.section-layout {
  padding: 0 8px;
  gap: 60px;
}

@media (min-width: 768px) {
  .section-layout {
    padding: 0 120px;
  }
}

.ionis-getting-started-header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
  gap: 60px;

  .ionis-getting-started-content {
     display: flex;
     flex-direction: column;
     gap: 24px;
     height: 100%;
  }
}

.getting-started-image {
  width: 100%;
  max-width: 26rem;
  height: auto;
}

@media (max-width: 991px) {
  .ionis-getting-started-header {
    flex-direction: column-reverse;
    align-items: center;
    gap: 24px;
  }
}

.step-header {
  display: flex;
  align-items: center;
  gap: 24px;
}

.step-image {
  width: 80px;
  height: 80px;
}

.step {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step-counter {
  font-weight: 700;
  font-style: normal;
  font-size: 26px;
  color: var(--color-coral);
  margin: 0;
  white-space: nowrap;
}

.header-separator {
  width: 1px;
  height: 30px;
  background-color: var(--color-steel);
}

.step-title {
  font-weight: 700;
  font-style: normal;
  line-height: normal;
  font-size: 26px;
  margin: 0;

  .step-title-sup {
    font-size: 12px;
    top: -12px;
  }
}

@media (max-width: 768px) {
  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .header-separator {
    height: 1px;
    width: 100%;
  }
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 40px;
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.step-title-text {
  font-weight: 700;
  font-family: "Agenda", Helvetica;
  font-style: normal;
  letter-spacing: 0px;
  line-height: normal;
  font-size: 26px;
  margin-bottom: 0;
}

.title-link {
  font-weight: 700;
  color: rgba(241, 107, 80, 1);
  text-decoration: underline;
  font-family: "Agenda", Helvetica;
  font-style: normal;
  letter-spacing: 0px;
  line-height: normal;
  font-size: 26px;
}

@media (max-width: 768px) {
  .step-title-text, .title-link {
    font-size: 22px;
  }
}

.link {
  font-weight: 700;
  color: rgba(241, 107, 80, 1);
  text-decoration: underline;
  font-family: "Agenda", Helvetica;
  font-style: normal;
  letter-spacing: 0px;
  line-height: normal;
  font-size: 20px;
}

.bullet-container {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
}

.bullet-item {
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.bullet {
  width: 7px;
  margin-top: -1px;
  font-family: "Agenda", Helvetica;
  font-weight: 400;
  color: rgba(241, 107, 80, 1);
  font-size: 20px;
  position: relative;
  letter-spacing: 0;
  line-height: normal;
}

.link {
  font-weight: 700;
  color: rgba(241, 107, 80, 1);
  text-decoration: underline;
  line-height: normal;
  font-size: 20px;
}

.sub-bullet {
  padding: 0px 20px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  position: relative;
}

.padding-horizontal-20 {
  padding: 0px 20px;
  margin-bottom: 0;
}

/* Accordion Component */
.accordion {
  width: 100%;
  margin-top:  32px;
}

.accordion__item {
  background: var(--color-white);
  border-radius: var(--radius-2xl);
  box-shadow: 0 4px 16px 0 rgba(81, 88, 97, 0.16);
  overflow: hidden;
}

.accordion__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  outline: none;
  padding: var(--space-lg);
}

.accordion__title {
  flex: 1;
  font-family: var(--font-agenda);
  font-size: 26px;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);

  @media (max-width: 768px) {
    font-size: 22px;
    line-height: normal;
  }

  sup {
    top: -0.3em;
    font-weight: 400;
  }
}

.accordion__icon {
  flex-shrink: 0;
  background-color: var(--color-primary);
  border-radius: var(--radius-full);
  padding: var(--space-sm);
  margin-left: var(--space-lg);
  transform: rotate(180deg);
  transition: transform 0.5s ease;
  align-self: flex-start;
}

.accordion__content {
  padding: 0 var(--space-lg) var(--space-lg);
  display: none;
}

.accordion__body {
  display: flex;
  gap: var(--space-md);
  flex-direction: column;

  font-size: 20px;
  line-height: 1.5;
  color: var(--color-text-primary);

  p {
    font-size: 20px;
    line-height: normal;
  }
}

.active-accordion {
  display: block;
  animation: fadeIn 0.3s ease-in-out;
}

.accordion__body p + p {
  margin-top: 0px;
  margin-bottom: 0px;
}

.accordion__header__button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.rotate-icon {
  transform: rotate(0deg);
}

/* Section Background */
.section-bg {
    position: absolute;
    right: 0;
    top: 63.4%;
    transform: translateY(-50%);
    max-width: 1440px;
    z-index: 1;
    max-height: 1169px;
}

.section.faq .section__header {
  margin-bottom: 0px;
  padding-top: 40px;
}

.section.faq .section__header .section__title {
  color: #f16b50;
}

.section__header .section__subtitle {
  margin: unset;
  max-width: unset;
  color: var(--color-secondary);

  /* H4 */
  font-family: var(--Font-H3, "Tilt Neon");
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin-bottom: 24px;
  margin-top: 24px;
}

.section__header {
  text-align: unset;
  margin-bottom: 80px;
  &.section_header_title {
    margin-top: 24px;
  }
}

.section .tag {
  background-color: #f16b50;
  padding: 5px 12px 3px 12px;
  border-radius: 0.25rem;
  color: white;
  font-family: var(--font-agenda);
  font-size: 20px;
  font-weight: 700;
  width: fit-content;
}

/* FAQ Section */
.faq-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0 auto;
}

.faq-ul {
  margin-top: var(--space-md);
}

.faq-item__answer {
  padding-bottom: 0px;
}

.item__answer p + p {
  padding-top: 0px;
}

.section__container {
  z-index: 2;
  position: relative;
}

.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 991px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

.faq-section ul,ol {
  margin-top: var(--space-md);
}

.faq-section ul li::marker{
  color: #f16b50;
}

.faq-section a {
  text-decoration: underline;
}

.faq-section ul ul li::marker {
  content: "-  ";
  color: var(--color-charcol);
}

.faq-section ul ul,
.faq-section ol ol,
.faq-section ul ol,
.faq-section ol ul {
  margin-top: 0;
}

.cards--burden {
  width: 100%;
}

.cards--burden .card {
  position: relative;
  padding: 2.5rem;
  border-radius: 12px;
  overflow: hidden;

  @media (max-width: 768px) {
    padding: 2rem;
  }
}

.card__gradient {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.card__gradient-layer--primary {
  height: 32px;
  background: linear-gradient(90deg, #DEE1E3 0%, #FFFBE6 25%, #D4CBBF 60%, #EDECEC 80%, #D6D4BA 100%);
}

.card__gradient-layer--secondary {
  height: 8px;
  background: var(--CHARCOAL, #1D2D3A)
}

.card__content {
  padding-top: 40px;
  display: flex;
  gap: 40px;
  z-index: 1;
}

@media (max-width: 769px) {
  .card__content {
    flex-direction: column;
    align-items: center;
    gap: 40px;
  }
}

.card__image {
  width: 100%;
  height: auto;
  margin-bottom: 1.5rem;
}

.card__text {
  color: white;
  font-size: 1rem;
  line-height: 1.2;
}

.sample-letter-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.sample-letter {
  width: 150px;
  height: auto;
  border: 1px solid var(--color-steel);
}

.download-sample-letter-button {
  display: flex;
  background-color: #F16B50;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-agenda);
  line-height: normal;
  height: 48px;
  width: fit-content;
  padding: 12px 16px 10px 24px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.download-icon {
  height: 24px;
  width: 24px;
  font-size: 18px;
}

@media (max-width: 991px) {
  .download-sample-letter-button {
    display: flex;
    padding: 12px 16px 10px 24px;
    justify-content: space-between;
    align-items: center;
    text-align: left;
    border-radius: 999px;
    max-width: 251px;
    height: 70px;
  }
}

.padding-top-0 {
	padding-top: 0px;
}

.coverage-process {
  width: 310px;
  height: auto;
  border: 1px solid var(--color-steel);
}

.neon-container {
  display: flex;
  align-items: flex-start;
  padding: 2px;
  position: relative;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #ffffff;
  border-radius: 24px;
  overflow: hidden;
  border: none;
  box-shadow: 0px 0px 8px #e08a67, 0px 0px 8px #c94808;
}

.neon-container::before {
  content: "";
  position: absolute;
  inset: 0;
  padding: 2px;
  border-radius: 24px;
  background: linear-gradient(90deg, rgba(226, 66, 45, 1) 0%, rgba(255, 198, 187, 1) 50%, rgba(226, 66, 45, 1) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
  pointer-events: none;
}

.support-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  padding: 40px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: inset 0px 0px 8px #e08a67, inset 0px 0px 8px #c94808;
}

.IONIS-everystep-logo {
  position: relative;
  width: 300px;
  height: 81px;
  aspect-ratio: 3.72;
}

.support-text {
  font-size: 32px;
  flex: 1;
  margin-top: -3px;
  font-family: var(--font-tilt-neon);
  font-weight: 400;
  color: #f16b50;
  font-size: var(--font-size-2xl);
  position: relative;
  letter-spacing: 0px;
  line-height: var(--line-height-normal);
}

.underline {
  text-decoration: underline;
}


@media (max-width: 768px) {
  .support-container {
    flex-direction: column;
  }
  .support-text {
    text-align: center;
  }
}

.what-you-need-button {
  visibility: hidden;
  display: flex;
  background-color: #F16B50;
  color: #ffffff;
  font-size: 20px;
  font-weight: 700;
  font-family: var(--font-agenda);
  line-height: normal;
  padding: 12px 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  border-radius: 30px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  text-align: center;
  z-index: 2;
}

.right-pipe {
  transform: rotate(180deg);
  width: 60px;
}
