/* =========================================================
   Pricing page CSS
   ========================================================= */

:root {
  --surface: #ffffff;
  --dark: #303030;
  --text: #303030;
  --line: #e8e2d9;
  --soft: #f5eee5;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

img,
svg {
  max-width: 100%;
}

.price-hero {
  position: relative;
  overflow: hidden;
  padding: 1.875rem 0 3.5rem;
  text-align: center;
  background: var(--bg);
}

.price-hero h1 {
  margin: 0 auto 1.5rem;
  color: #303030;
  text-align: center;
  font-family: "DM Sans";
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.price-hero .eyebrow {
  margin: 0 0 1rem;
  color: #303030;
  font-family: "DM Sans";
  font-size: 24px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
}

.price-hero .intro {
  margin: 0 auto;
  color: #303030;
  text-align: center;
  font-family: "DM Sans";
  font-size: 20px;
  font-weight: 500;
  line-height: 1.5;
}

.price-hero__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  z-index: 2;
  position: relative;
  padding: 24px 20px;
  margin: 1.5rem auto 0;
  border-radius: 54px;
  border: 2px solid #FFF;
  background: rgba(255, 255, 255, 0.10);
}

.price-hero__cta .btn-outline {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.pricing-note {
  margin: 1.5rem 0 0;
  color: #303030;
  text-align: center;
  font-family: "DM Sans";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
}

.page_nav-wrapper {
  padding: 1.875rem 0;
}

.page_nav-wrapper .container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.page_nav-hd {
  color: #303030;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
}

.page-nav {
  position: relative;
  z-index: 2;
}

.page-nav::-webkit-scrollbar {
  display: none;
}

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

.page-nav a {
  display: block;
  padding: 0.75rem 0.5rem;
  border-bottom: 2px solid #303030;
  color: #303030;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  text-decoration: none;
  white-space: nowrap;
}

.page-nav a:hover,
.page-nav a:focus-visible,
.page-nav a[aria-current="page"] {
  border-bottom-width: 4px;
  border-bottom-color: #FF5C00;
}

.hero-wave {
  position: absolute;
  z-index: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 215px;
  background: url("assets/hero-wave-mob.svg") center bottom / 100% 100% no-repeat;
  pointer-events: none;
}

/* Pricing card */

.pricing-section {
  position: relative;
  z-index: 1;
  padding: 1.875rem 0px;
}

.pricing-card {
  display: grid;
  padding: 1.875rem 1.25rem;
  color: #fff;
  background: var(--dark);
  border-radius: 1rem;
}

.pricing-summary {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pricing-card .pricing-summary .card-label {
  margin-bottom: 0.5rem;
}

.pricing-card .card-label {
  margin: 0;
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

.pricing-summary h2 {
  margin: 0 0 1.5rem;
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.pricing-summary > p:not(.card-label) {
  margin: 0 0 1.5rem;
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.price-btn__desk {
  display: none;
}

.price-btn__mob {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  margin-top: 1.5rem;
}

.price-btn__mob .btn {
  padding: 0.75rem 1.5rem;
}

.price-btn__mob small {
  color: rgba(255, 255, 255, 0.40);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.pricing-features .card-label {
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #FF5C00;
}

.feature-wrapper {
  display: grid;
  margin: 0;
  padding: 0.5rem 0;
  border-bottom: 1px solid #FF5C00;
  list-style: none;
}

.feature-list li,
.step-card li {
  position: relative;
  padding: 1rem 0 1rem 3.5rem;
  color: #FFF;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.feature-list li {
  max-width: 304px;
}

.feature-list li::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 60%;
  width: 117%;
  border-bottom: 1px solid rgba(255, 92, 0, 0.24);
  content: "";
  transform: translateX(-50%);
}

.step-card li::after {
  position: absolute;
  right: 50%;
  bottom: 0;
  left: 50%;
  width: 100%;
  border-bottom: 1px solid rgba(255, 92, 0, 0.24);
  content: "";
  transform: translateX(-50%);
}

.feature-list li:last-child:after,
.step-card li:last-child::after {
  border: none;
}

.feature-list li::before,
.step-card li::before {
  position: absolute;
  top: 1.25em;
  left: 0;
  width: 2.5rem;
  height: 2.5rem;
  content: "";
  background: url("assets/check-icon.svg") no-repeat center / contain;
}

/* Compare / how it works */

.compare-section {
  padding: 1.875rem 0px;
}

.compare-section .eyebrow {
    color: #303030;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.5;
    text-transform: uppercase;
    margin: 0 0 0.5rem;
}

.compare-section h2 {
  margin: 0 auto 1rem;
  color: #303030;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.compare-section .intro {
  margin: 0 auto 1.5rem;
  color: #303030;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.compare-section a {
  color: #FF5C00;
  font-weight: 700;
}

.steps-grid {
  display: grid;
  gap: 1rem;
  text-align: left;
}

.step-card {
  padding: 1.875rem 1.25rem;
  background: #FAF6F0;
  border-radius: 1rem;
}

.step-card .step-number {
  color: #FF5C00;
  font-family: "DM Sans";
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.step-card__title {
  color: #303030;
  font-family: "DM Sans";
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.step-lead {
  margin: 1rem 0;
  color: #303030;
  font-family: "DM Sans";
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}

.step-card li {
  color: #303030;
}

.step-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 24px;
  font-size: 0.75rem;
  color: #FF5C00;
  font-family: "DM Sans";
  font-weight: 700;
  border-radius: 30px;
  width: fit-content;
  border: 1px solid #FF5C00;
  background: rgba(255, 92, 0, 0.10);
  margin-top: 1rem;
  text-transform: uppercase;
  line-height: 1.35;
}

.step-card__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  color: #303030;
  text-align: left;
  cursor: pointer;
  border-bottom: 1px solid rgba(255, 92, 0, 0.24);
}

.step-card__toggle > span {
    display: flex;
    flex-direction: column;
}

.step-card__icon {
    flex: 0 0 auto;
    transition: transform 0.3s ease, color 0.3s ease;
}

.step-card__toggle[aria-expanded="true"] {
    color: #ff5c00;
}

.step-card__toggle[aria-expanded="true"] .step-card__icon {
    transform: rotate(180deg);
}

.step-card .step-card__lists {
  display: none;
}

.step-card__toggle[aria-expanded="true"] + .step-card__lists {
  display: block;
}

.pricing-plans {
  margin: 1.875rem 0;
  padding: 3.75rem 0;
  background: #FAF6F0;
}

.pricing-plans .eyebrow {
  margin: 0 0 1rem;
  color: #303030;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.pricing-plans__header {
  max-width: 1200px;
  margin-inline: auto;
}

.pricing-plans__header h2 {
  margin: 0;
  color: #303030;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.pricing-plans__intro {
  margin: 1.5rem 0 1.5rem;
  color: #303030;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.pricing-slider {
    width: 100%;
    overflow: hidden;
    padding-bottom: 30px;
}

.pricing-slider__wrapper {
  align-items: stretch;
}

.pricing-plan__card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 467px;
  padding: 5.2rem 1.25rem 1.875rem;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 1rem;
}

.pricing-card--featured {
  background: rgba(255, 92, 0, 0.10);
  border-color: var(--neo-org);
}


/* Popular badge */

.pricing-card__badge {
  position: absolute;
  top: 30px;
  left: 20px;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0.5rem 1.5rem;
  color: #FFF;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  border-radius: 30px;
  border: 1px solid #FE3F00;
  background: #FE3F00;
  text-transform: uppercase;
}

/* Card category */

.pricing-card__category {
  margin: 0 0 1.5rem;
  color: var(--neo-org);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}


/* Card title */

.pricing-card__name {
  margin: 0 0 1rem;
  color: #303030;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}


/* Price */

.pricing-card__price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  font-weight: 700;
  line-height: 1.2;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid #FE3F00;
}

.pricing-card--featured .pricing-card__price {
  border-bottom: 1px solid #303030;
}

.pricing-card__amount {
  color: #303030;
  font-size: 3.75rem;
}

.pricing-card__unit {
  color: rgba(48, 48, 48, 0.60);
  font-size: 1.25rem;
}

.pricing-plan__card .btn {
  width: 100%;
}

.pricing-card__description {
  margin: 0 0 1rem;
  color: #303030;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}

.pricing-card__description strong {
  color: var(--neo-org);
}

.pricing-plan__card .btn {
    margin-top: auto;
}

.pricing-slider .slider-prev, .pricing-slider .slider-next {
  background: transparent;
}

.pricing-slider .slider-prev:hover, .pricing-slider .slider-prev:focus, .pricing-slider .slider-prev:focus-visible, .pricing-slider .slider-next:hover, .pricing-slider .slider-next:focus, .pricing-slider .slider-next:focus-visible {
  background: #FE3F00;
}

/* comparison plan */

.plan-comparison__header {
  margin: 3.75rem 0 1.5rem;
}

.plan-comparison__header h2 {
  margin: 0 0 1.5rem;
  color: #303030;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.plan-comparison__header p {
  margin: 0;
  color: #303030;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.comparison-table-wrapper {
    width: 100%;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
}

.comparison-table tr:first-child td {
  font-weight: 700;
}

.comparison-table thead th,
.comparison-table thead td {
  border-bottom: 1px solid #FF5C00;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem 0.375rem 1rem 0.375rem;
  border-bottom: 1px solid rgba(255, 92, 0, 0.40);
  text-align: left;
  vertical-align: middle;
}

.comparison-table thead th {
  padding-top: 0;
  color: var(--neo-org);
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.5;
  text-transform: uppercase;
}

.comparison-table tbody th {
  width: 24%;
  padding-inline: 0 0.625rem;
  color: #303030;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
}

.comparison-table tbody td {
  color: #303030;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
}

/* analyst */

.analyst-addon {
    padding: 1.875rem 0;
    background: #ffffff;
}

.analyst-addon__inner {
    display: flex;
    flex-direction: column;
    padding: 1.875rem 1.25rem;
    border-radius: 1rem;
    background: #7521a0;
    color: #ffffff;
}

.analyst-addon__eyebrow {
  margin: 0 0 0.5rem;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-transform: uppercase;
}

.analyst-addon__content h2 {
  margin: 0 0 1.5rem;
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.analyst-addon__content .analyst-addon__desc {
  margin: 0 0 1.5rem;
  color: #FFF;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
}


/* Feature list */

.analyst-addon__features {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.analyst-addon__content .analyst-addon__desc, .analyst-addon__content .analyst-addon__features {
  display: none;
}

.analyst-addon__features li {
    position: relative;
    padding-left: 14px;
}

.analyst-addon__features li::before {
    content: "•";

    position: absolute;
    left: 0;
}


/* Offer card */

.analyst-addon__offer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4.7rem 1.25rem;
  border-radius: 16px;
  background: linear-gradient(145deg, #FAF6F0 0%, #FFF 100%);
}

.analyst-addon__price {
    display: flex;
    align-items: baseline;
    gap: 2px;
    color: #303030;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #303030;
    font-weight: 700;
    line-height: 1.2;
}

.analyst-addon__plus {
  font-size: 2.5rem;
  align-self: flex-start;
}

.analyst-addon__amount {
  font-size: 3.75rem;
}

.analyst-addon__unit {
  margin-left: 4px;
  font-size: 1.25rem;
  color: rgba(48, 48, 48, 0.60);
}

.analyst-addon__offer p {
  margin: 0 0 1rem;
  color: #303030;
  text-align: center;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
}

.analyst-addon__offer strong {
  color: var(--neo-org);
}

.analyst-addon__mob p {
  margin: 1.5rem 0;
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.5;
}

.analyst-addon__note {
  display: none;
}

.discovery-cta {
  padding: 1.875rem 0;
  background: #ffffff;
}

.discovery-cta__inner {
    position: relative;
    overflow: hidden;
    padding: 3.75rem 1.25rem;
    border-radius: 1rem;
    background:
        linear-gradient(
            115deg,
            #c979e9 0%,
            #d86fc4 38%,
            #ef5e76 68%,
            #ff4a17 100%
        );
    color: #ffffff;
    text-align: center;
}

.discovery-cta__inner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url(./assets/discovery-cover-img.svg) center 15rem no-repeat;
  background-size: 100% auto;
  opacity: 0.1;
  pointer-events: none;
}

.discovery-cta__eyebrow,
.discovery-cta__title,
.discovery-cta__description,
.discovery-cta__actions {
    position: relative;
    z-index: 1;
}

.discovery-cta__eyebrow {
  margin: 0 0 1.5rem;
  color: #FFF;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
}

.discovery-cta__title {
  margin: 0;
  color: #FFF;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

.discovery-cta__description {
  margin: 1.5rem 0 0;
  color: #FFF;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.5;
}

.discovery-cta__actions {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

/* Primary */

.discovery-cta .btn {
    padding: 0.9rem 1.5rem;
}

.discovery-cta .btn--primary {
  background: #ffffff;
  color: #FE3F00;
  border: 1px solid #FE3F00;
}

.discovery-cta .btn--primary:hover {
  background: #f8f8f8;
}

.discovery-cta .btn--outline {
  border: 1px solid rgba(255, 255, 255, 0.9);
  color: #ffffff;
}

.discovery-cta .btn--outline:hover {
    background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 639px) {
  .price-hero .container {
    max-width: 400px;
  }
  .price-hero__cta .btn {
    font-size: 1.125rem;
  }
}

/* Tablet */

@media (min-width: 640px) {

  .price-hero {
    padding-top: 3rem;
  }

  .pricing-card {
    grid-template-columns: minmax(220px, 0.8fr) 1.2fr;
    padding: 2rem;
  }

  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .step-card {
    padding: 2.5rem 1.875rem;
  }

  .discovery-cta {
    padding: 2rem 0;
  }

  .discovery-cta__inner {
    padding: 65px 40px;
  }

  .discovery-cta__actions {
    flex-direction: row;
    align-items: center;
    justify-content: center;

    max-width: none;
  }

  .discovery-cta .btn {
    width: auto;
    min-width: 0;
  }
}

/* Desktop */

@media (min-width: 960px) {

  .price-hero {
    padding: 6.4rem 0 9.35rem;
  }

  .price-hero h1 {
    font-size: 5.02rem;
  }

  .price-hero .hero-wave {
    height: 350px;
    background-image: url(assets/hero-wave-img.svg);
  }

  .price-hero .eyebrow {
    font-size: 2rem;
    margin-bottom: 1.5rem;
  }

  .price-hero .intro {
    font-size: 1.5rem;
  }

  .pricing-note {
    font-size: 2rem;
    font-weight: 600;
  }

  .page_nav-wrapper {
    padding: 2.25rem 0;
  }

  .page_nav-wrapper .container {
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
  }

  .page_nav-hd {
    font-size: 1.25rem;
  }

  .page-nav a {
    font-size: 1.5rem;
  }

  .page-nav ul {
    gap: 1.5rem;
  }

  .pricing-section {
    padding: 3.75rem 0;
  }

  .pricing-card {
    padding: 3.75rem;
    gap: 3.75rem;
  }

  .price-btn__mob {
    display: none;
  }

  .price-btn__desk {
    display: flex;
    gap: 1rem;
    flex-direction: column;
    margin-top: 1.5rem;
  }

  .feature-wrapper {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 2.5rem;
    border: none;
  }

  .pricing-card .card-label,
  .pricing-card.step-number {
    font-size: 1.25rem;
    font-weight: 500;
  }

  .pricing-summary h2 {
    font-size: 3rem;
  }

  .pricing-summary > p:not(.card-label) {
    font-size: 1.25rem;
    font-weight: 500;
  }

  .price-btn__desk small {
    color: rgba(255, 255, 255, 0.40);
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
  }

  .pricing-card .pricing-summary .card-label {
    margin-bottom: 1rem;
  }

  .pricing-features .card-label {
    padding-bottom: 3rem;
  }

  .feature-list li {
    max-width: 380px;
    padding: 1.5rem 0 1rem 4rem;
    font-size: 1rem;
  }

  .step-card li {
    max-width: 380px;
    padding: 1rem 0 1rem 4rem;
    font-size: 1rem;
  }

  .feature-list {
    padding: 1.5rem 0 0;
    border: none;
  }

  .feature-list li::before {
    top: 1.75em;
  }

  .feature-list li::after {
    left: 50%;
    width: 100%;
  }

  .compare-section {
    text-align: center;
    padding: 3.75rem 0;
  }

  .compare-section .eyebrow {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
  }

  .compare-section h2 {
    margin-bottom: 1.5rem;
    font-size: 3rem;
    line-height: 1;
  }

  .compare-section .intro {
    max-width: 1200px;
    font-size: 1.25rem;
    margin-bottom: 3rem;
  }

  .step-card .step-number {
    font-size: 1.25rem;
    font-weight: 600;
  }

  .step-card__title {
    font-size: 1.75rem;
  }

  .step-lead {
    margin: 0.5rem 0 1.5rem;
    font-size: 1.25rem;
  }

  .steps-grid {
    gap: 2.5rem;
  }

  .step-card__toggle {
    cursor: default;
  }

  .step-card__icon {
    display: none;
  }

  .step-card .step-card__lists {
    display: block;
  }

  .pricing-plans {
    margin: 3.75rem 0;
    padding: 7.5rem 0;
  }

  .pricing-plans__header {
    text-align: center;
  }

  .pricing-slider {
      overflow: visible;
      padding-bottom: 0;
  }

  .pricing-slider__wrapper.swiper-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    transform: none !important;
  }

  .pricing-slider .swiper-slide {
      width: auto !important;
      margin: 0 !important;
  }

  .pricing-slider__pagination {
      display: none;
  }

  .discovery-cta {
    padding: 3.75rem 0;
  }

  .discovery-cta__inner {
    padding: 58px 50px;
  }

  .discovery-cta__title {
    font-size: 2.5rem;
  }

  .discovery-cta__description {
    font-size: 1.25rem;
  }

  .discovery-cta__actions {
    margin-top: 3rem;
  }
}

@media (min-width: 1100px) {
  .price-hero__cta {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: fit-content;
    margin-top: 3rem;
  }

  .pricing-plans .eyebrow {
    margin: 0 0 1.5rem;
    font-size: 1.25rem;
    line-height: 1.5;
  }

  .pricing-plans__header h2 {
    font-size: 5rem;
    line-height: 1;
  }

  .pricing-plans__intro {
    font-size: 1.25rem;
    margin-bottom: 3.75rem;
  }

  .pricing-plan__card {
    min-height: 569px;
    padding: 5.2rem 1.875rem 2.5rem;
  }

  .pricing-card__badge {
    top: 20px;
    left: 30px;
  }

  .pricing-card__category {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }

  .pricing-card__name {
    font-size: 1.75rem;
    margin-bottom: 1.5rem;
  }

  .pricing-card__price {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .pricing-card__amount {
    font-size: 5rem;
  }

  .pricing-card__unit {
    font-size: 1.5rem;
  }

  .pricing-card__description {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
  }

  .plan-comparison__header {
    max-width: 1048px;
    margin: 7.5rem auto 3.75rem;
    text-align: center;
  }

  .plan-comparison__header h2 {
    font-size: 3rem;
    line-height: 1;
  }

  .plan-comparison__header p {
    font-size: 1.25rem;
  }

  .comparison-table {
    min-width: 0;
    font-size: 11px;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 1.5rem 1.25rem;
  }

  .comparison-table thead th {
    font-size: 1.5rem;
  }

  .comparison-table tbody th{
    font-size: 1.25rem;
    padding-inline: 0 1.25rem;
  }

  .comparison-table tbody td {
    font-size: 1.25rem;
  }

  .analyst-addon {
    padding: 3.75rem 0;
  }

  .analyst-addon__price {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .analyst-addon__inner {
    display: grid;
    grid-template-columns: minmax(0, 1.1034fr) minmax(0, 1fr);
    gap: 3.75rem;
    align-items: center;
    padding: 3.75rem;
  }

  .analyst-addon__mob {
    display: none;
  }

  .analyst-addon__content .analyst-addon__desc {
    display: block;
  }

  .analyst-addon__content .analyst-addon__features {
    display: flex;
  }

  .analyst-addon__eyebrow {
    margin: 0 0 1rem;
    font-size: 1.25rem;
  }

  .analyst-addon__content {
    margin-bottom: 0;
  }

  .analyst-addon__content h2 {
    font-size: 3rem;
  }

  .analyst-addon__features {
    font-size: 1.25rem;
    font-weight: 500;
  }

  .analyst-addon__offer {
    padding: 6.25rem 5.625rem;
    background: #fff;
  }

  .analyst-addon__amount {
    font-size: 5rem;
  }

  .analyst-addon__unit {
    font-size: 1.5rem;
  }

  .analyst-addon__offer p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
  }

  .analyst-addon__note {
    display: block;
    margin: 3rem 0 0;
    color: #303030;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
  }

  .discovery-cta__eyebrow {
    font-size: 1.25rem;
  }

  .discovery-cta__inner {
    padding: 5.25rem 5rem;
  }

  .discovery-cta__title {
    max-width: 1200px;
    margin-inline: auto;
    font-size: 3rem;
  }

  .discovery-cta__inner::after {
    background-image: url(./assets/discovery-cover-bg.svg);
    background-position-y: 0;
  }
}

/* Respect reduced-motion preferences. */

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
