body {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-navy-900);
  background-color: #fff;
}

.container {
  width: 100%;
  max-width: var(--container-max);
  padding: 0 var(--container-padding-x);
  margin: 0 auto;
}

.btn {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 16px;
  line-height: 28.8px;
  text-align: center;
  padding: 11px 24px;
  color: var(--color-bluegray-600);
  border-radius: 2px;
  border: 1px solid #37446C33;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: color 220ms ease, background-color 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.btn:hover {
  background-color: var(--color-blue-600);
  color: #FFFFFF;
  border-color: var(--color-blue-600);
}

.btn-block {
  width: 100%;
}

.btn-blue {
  background-color: var(--color-blue-600);
  color: #FFFFFF;
  border-color: var(--color-blue-600);
}

.btn-blue:hover {
  background-color: #FFFFFF;
  color: var(--color-bluegray-600);
  border-color: var(--color-bluegray-600);
}

.btn-dark-blue {
  background-color: var(--color-bluegray-600);
  color: var(--color-snow-100);
  border-color: var(--color-bluegray-600);
}

.btn-dark-blue:hover {
  background-color: var(--color-snow-100);
  color: var(--color-bluegray-600);
  border-color: var(--color-bluegray-600);
}

.btn-arrow::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.1665 9.99999H15.8332M15.8332 9.99999L9.99984 4.16666M15.8332 9.99999L9.99984 15.8333' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 20px 20px;
  mask: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4.1665 9.99999H15.8332M15.8332 9.99999L9.99984 4.16666M15.8332 9.99999L9.99984 15.8333' stroke='%23000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center / 20px 20px;
}

.title {
  font-weight: 600;
  font-size: 40px;
  line-height: 1.3;
  text-align: center;
  color: var(--color-slate-700);
  margin-bottom: 16px;
}

.subtitle {
  font-weight: 600;
  font-size: 24px;
  line-height: 1.3;
  text-align: center;
  vertical-align: middle;
  color: var(--color-slate-700);
}

.overline {
  font-weight: 700;
  font-size: 16px;
  line-height: 21.76px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  vertical-align: middle;
  color: #17203D;
  opacity: 0.6;
}

.overline--small {
  font-size: 14px;
}

.text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  vertical-align: middle;
  color: var(--color-navy-900);
}

.text-18 {
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: #1A1A18;
  margin-bottom: 16px;
}

.hero-title {
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  letter-spacing: -1px;
  text-align: center;
  vertical-align: middle;
  color: var(--color-slate-700);
  margin-bottom: 60px;
}

.text-centered {
  text-align: center !important;
}

.text-navy-900 {
  color: var(--color-navy-900) !important;
}

/* Section utilities (backgrounds) */
.section-bg-ice {
  background-color: var(--color-ice-100);
}

.section-bg-snow {
  background-color: var(--color-snow-100);
}

.section-bg-mint {
  background-color: var(--color-mint-100);
}

.section-bg-light {
  background-color: #FCFCFC;
}

.section-bg-white {
  background-color: #FFFFFF;
}

/* Section utilities (padding) */
.section-pad-80 {
  padding: 80px 0;
}

.section-pad-95 {
  padding: 95px 0;
}

.section-pad-120 {
  padding: 120px 0;
}

.section-pad-150 {
  padding: 150px 0 !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mb-2 {
  margin-bottom: 20px !important;
}

.mb-3 {
  margin-bottom: 32px !important;
}

.mb-5 {
  margin-bottom: 60px !important;
}

@media (max-width: 1024px) {
  .container {
    padding: 0 20px;
  }

  .btn {
    font-size: 15px;
    line-height: 24px;
    padding: 10px 22px;
  }

  .btn-arrow::after {
    width: 18px;
    height: 18px;
    margin-left: 6px;
    -webkit-mask-size: 18px 18px;
    mask-size: 18px 18px;
  }

  .title {
    font-size: 32px;
    line-height: 1.25;
  }

  .subtitle {
    font-size: 20px;
    line-height: 1.3;
  }

  .hero-title {
    font-size: 36px;
    margin-bottom: 40px;
  }

  .text {
    font-size: 15px;
    line-height: 1.6;
  }

  .text-18 {
    font-size: 16px;
  }

  .section-pad-150 {
    padding: 100px 0 !important;
  }

  .section-pad-120 {
    padding: 100px 0;
  }

  .section-pad-120-160 {
    padding: 100px 0 120px;
  }
}

.section-sep {
  border-bottom: 1px solid var(--color-gray-150);
}

.hero-banner {
  min-height: 662px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-banner__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-banner__eu-ai-logo {
  margin-bottom: 40px;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #17203DB2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.hero-banner__eu-ai-logo img {
  width: 80px;
}

.hero-banner__text {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-slate-700);
  margin-bottom: 16px;
}

.hero-banner__cta {
  width: 420px;
  max-width: 100%;
  margin-bottom: 60px;
}

.hero-banner__text-bottom {
  font-weight: 500;
  font-size: 14px;
  line-height: 23px;
  color: var(--color-navy-900);
  opacity: .7;
}

.page-hero__inner {
  display: flex;
  align-items: stretch;
  gap: 60px;
  position: relative;
  min-height: 649px;
}

.page-hero__media {
  flex: 0 1 404px;
  max-width: 404px;
  min-width: 60px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px 60px 40px 0;
  position: relative;
}

.page-hero__media::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: calc(50% - 50vw);
  background: var(--color-ice-100);
  z-index: 1;
}

.page-hero__media img {
  max-width: 300px;
  width: 100%;
  height: auto;
  display: block;
  position: relative;
  z-index: 2;
}

.page-hero__media--cover {
  padding: 0;
  overflow: visible;
}

.page-hero__media--cover img {
  max-width: none;
  width: calc(100% + max(0px, 50vw - 50%));
  max-width: calc(100% + max(0px, 50vw - 50%));
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
}

.page-hero__content {
  flex: 1 1 0;
  padding: 60px 0 40px;
}

.page-hero__overline {
  font-family: var(--font-primary);
  font-weight: 700;
  font-size: 14px;
  line-height: 21.76px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #17203D;
  opacity: 0.6;
  margin-bottom: 32px;
}

.page-hero__overline--bright {
  opacity: .7;
}

.page-hero__title {
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 50px;
  line-height: 1.2;
  color: var(--color-slate-700);
  margin-bottom: 20px;
}

.page-hero__text {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.3;
  color: var(--color-slate-700);
  margin-bottom: 40px;
}

.page-hero__text--compact {
  margin-bottom: 24px;
}

.buttons {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-bottom: 40px;
  margin-bottom: 32px;
  border-bottom: 1px solid #BABABA57;
}

.buttons .btn {
  min-width: 203px;
}

.book-links__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  min-width: 239px;
  border-radius: 2px;
  text-transform: uppercase;
  font-family: var(--font-primary);
  font-weight: 600;
  font-size: 12px;
  line-height: 1.1;
  text-decoration: none;
  border: 1px solid transparent;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.book-links__btn-text {
  font-weight: 400;
  letter-spacing: 0.02em;
}

.book-links__btn-text strong {
  display: block;
  font-weight: 600;
  text-transform: initial;
  font-size: 16px;
}

.book-links__btn-icon {
  width: 30px;
  height: 30px;
  object-fit: contain;
  flex-shrink: 0;
  transition: filter 0.2s ease;
}

.book-links__btn--amazon {
  background: #FF9706;
  color: #FFFFFF;
  border-color: #FF9706;
}

.book-links__btn--amazon .book-links__btn-icon {
  filter: brightness(0);
}

.book-links__btn--amazon:hover {
  background: #FFFFFF;
  color: var(--color-slate-700);
  border-color: #000000;
}

.book-links__btn--apple {
  background: #000000;
  color: #FFFFFF;
  border-color: #000000;
}

.book-links__btn--apple:hover {
  background: #FFFFFF;
  color: var(--color-slate-700);
  border-color: #000000;
}

.book-links__btn--notion {
  background: transparent;
  color: var(--color-slate-700);
  border-color: #D8D8D8;
}

.book-links__btn--notion:hover {
  background: #FFFFFF;
  color: var(--color-slate-700);
  border-color: #000000;
}


.page-hero__list {
  margin: 0 0 32px 20px;
  padding: 0;
  list-style-type: disc;
}

.page-hero__note {
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-navy-900);
  opacity: 0.7;
}

@media (max-width: 1024px) {
  .page-hero__inner {
    flex-direction: column;
  }

  .page-hero__media {
    max-width: none;
    height: 200px;
    flex: 0 0 200px;
    padding: 20px 0;
    justify-content: center;
  }

  .page-hero__media::before {
    right: calc(50% - 50vw);
  }

  .page-hero__media img {
    max-width: none;
    height: 100%;
    width: auto;
  }

  .page-hero__media--cover {
    padding: 0;
  }

  .page-hero__media--cover img {
    width: 100%;
    height: 100%;
    left: 0;
    position: absolute;
  }

  .page-hero__content {
    padding: 0 0 40px;
  }

  .page-hero__title {
    font-size: 36px;
  }

  .buttons {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .buttons .btn {
    width: 100%;
  }

  .who-for {
    padding: 80px 0 100px;
  }

  .who-for .title {
    margin-bottom: 40px;
  }

  .flexible-access__title {
    margin-bottom: 40px;
  }
}

.section-pad-120 {
  padding: 120px 0;
}

@media (max-width: 1024px) {
  .section-pad-120 {
    padding: 80px 0;
  }
}

.columns {
  display: flex;
  gap: 40px;
}

.column {
  flex: 1 1 0;
}

@media (max-width: 1024px) {
  .columns {
    flex-direction: column;
    gap: 0;
  }
}

.title--left {
  text-align: left;
}

.column .text {
  margin-bottom: 20px;
}

.column .text:last-child {
  margin-bottom: 0;
}

ul.text {
  list-style-type: disc;
  margin: 0 0 40px 20px;
  padding: 0;
}

.note {
  margin-bottom: 0;
}

.note-header {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 10px;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  color: var(--color-slate-700);
  opacity: 0.8;
}

.note-icon {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.note-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-navy-900);
  opacity: 0.6;
  margin: 0;
}

.authors-avatars {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
}

.authors-avatars__img {
  width: 100px;
  height: 100px;
  border-radius: 100px;
  border: 2px solid #E5E5E0;
  object-fit: cover;
  background-color: #D9D9D9;
  filter: grayscale(100%);
}

.problem-solution {
  position: relative;
  overflow: hidden;
}

.problem-solution__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  z-index: 1;
}

.problem-solution__col {
  padding: 100px 0 120px;
  position: relative;
}

.problem-solution__col--problem {
  padding-right: 20px;
}

.problem-solution__col--solution {
  padding-left: 20px;
}

.problem-solution__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 560px;
}

.problem-solution__col--solution .problem-solution__inner {
  margin-left: auto;
}

.problem-solution__overline {
  display: inline-block;
  padding-bottom: 16px;
  margin-bottom: 0;
  border-bottom: 1px solid var(--color-gray-150);
  text-align: center;
  color: #393D4FB2;
  opacity: 1;
}

.problem-solution__overline--solution {
  color: var(--color-green-600);
  border-bottom-color: var(--color-green-600);
  opacity: 1;
}

.problem-solution .subtitle {
  margin-bottom: 0;
}

.problem-solution__pills {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.problem-solution__pill {
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 20px;
  border: 1px solid #fff;
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.problem-solution__pill--solution {
  border-color: var(--color-gray-150);
}

.problem-solution__icon {
  width: 24px;
  height: 24px;
  flex: 0 0 24px;
  background-repeat: no-repeat;
  background-size: 24px 24px;
}

.problem-solution__icon--problem {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 21C13.1819 21 14.3522 20.7672 15.4442 20.3149C16.5361 19.8626 17.5282 19.1997 18.364 18.364C19.1997 17.5282 19.8626 16.5361 20.3149 15.4442C20.7672 14.3522 21 13.1819 21 12C21 10.8181 20.7672 9.64778 20.3149 8.55585C19.8626 7.46392 19.1997 6.47177 18.364 5.63604C17.5282 4.80031 16.5361 4.13738 15.4442 3.68508C14.3522 3.23279 13.1819 3 12 3C9.61305 3 7.32387 3.94821 5.63604 5.63604C3.94821 7.32387 3 9.61305 3 12C3 14.3869 3.94821 16.6761 5.63604 18.364C7.32387 20.0518 9.61305 21 12 21ZM11.768 15.64L16.768 9.64L15.232 8.36L10.932 13.519L8.707 11.293L7.293 12.707L10.293 15.707L11.067 16.481L11.768 15.64Z' fill='%23EAEAEA'/%3E%3C/svg%3E");
}

.problem-solution__icon--solution {
  background-image: url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill-rule='evenodd' clip-rule='evenodd' d='M12 21C13.1819 21 14.3522 20.7672 15.4442 20.3149C16.5361 19.8626 17.5282 19.1997 18.364 18.364C19.1997 17.5282 19.8626 16.5361 20.3149 15.4442C20.7672 14.3522 21 13.1819 21 12C21 10.8181 20.7672 9.64778 20.3149 8.55585C19.8626 7.46392 19.1997 6.47177 18.364 5.63604C17.5282 4.80031 16.5361 4.13738 15.4442 3.68508C14.3522 3.23279 13.1819 3 12 3C9.61305 3 7.32387 3.94821 5.63604 5.63604C3.94821 7.32387 3 9.61305 3 12C3 14.3869 3.94821 16.6761 5.63604 18.364C7.32387 20.0518 9.61305 21 12 21ZM11.768 15.64L16.768 9.64L15.232 8.36L10.932 13.519L8.707 11.293L7.293 12.707L10.293 15.707L11.067 16.481L11.768 15.64Z' fill='%234C831F'/%3E%3C/svg%3E");
}

.problem-solution__pill-text {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: var(--color-black-90a);
}

@media screen and (max-width: 1024px) {
  .problem-solution__grid {
    grid-template-columns: 1fr;
    padding: 0;
  }

  .problem-solution__col {
    padding: 80px 0;
  }

  .problem-solution__col--problem {
    padding-right: 0;
  }
  
  .problem-solution__col--solution {
    padding-left: 0;
  }

  .problem-solution__inner {
    padding: 0 20px;
    max-width: 100%;
    gap: 20px;
  }
}

.how-it-works {
  padding: 120px 0;
}

.how-it-works__inner {
  max-width: 630px;
  margin: 0 auto;
  text-align: center;
}

.how-it-works__overline {
  margin: 0 auto 16px;
}

.how-it-works .title {
  margin-bottom: 16px;
}

.how-it-works__text {
  margin-bottom: 60px;
  color: var(--color-navy-900);
  opacity: .8;
}

@media screen and (max-width: 1024px) {
  .how-it-works {
    padding: 100px 0;
  }
}

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

.numbered-cards--grid {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.numbered-cards--grid .numbered-card {
  flex: 0 1 calc(50% - 20px);
  max-width: calc(50% - 20px);
}

.numbered-card {
  border-radius: 5px;
  padding: 32px;
  border: 1px solid var(--color-gray-150);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.numbered-card__number {
  font-weight: 700;
  font-size: 14px;
  line-height: 21.76px;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: var(--color-green-600);
  padding-bottom: 4px;
}

.numbered-card__number--blue {
  color: #2C7CAB;
}

.numbered-card__title {
  font-weight: 600;
}

.numbered-card__title svg {
  display: inline-block;
  margin-left: 4px;
}

.numbered-card__text {
  color: var(--color-warmgray-500);
}

@media screen and (max-width: 1024px) {
  .numbered-cards--grid {
    gap: 16px;
  }

  .numbered-cards--grid .numbered-card {
    flex-basis: 100%;
    max-width: 100%;
  }

  .numbered-card {
    padding: 20px;
  }
}

.after-assessment {
  padding: 95px 0;
}

.after-assessment__overline {
  margin-bottom: 40px;
  text-align: center;
}

.after-assessment .title {
  margin-bottom: 16px;
  letter-spacing: -1px;
  color: var(--color-navy-900);
}

.after-assessment__text {
  text-align: center;
  margin-bottom: 80px;
}

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

.card {
  border: 1px solid var(--color-gray-150);
  border-radius: 5px;
  padding: 40px;
  background-color: #FFFFFF;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.card-body {
  margin-bottom: 32px;
}

.card-title {
  font-weight: 600;
  margin-bottom: 24px;
}

.card-title--tight {
  margin-bottom: 16px;
}

.card-title--big {
  font-size: 18px;
  line-height: 28px;
}

.card-title--great {
  font-size: 24px;
  line-height: 28px;
}

.card-title--navy {
  color: #393D4F;
}

.card-text {
  margin-bottom: 0;
  color: var(--color-warmgray-500);
}

.card-text--tight {
  margin-bottom: 0;
}

.card-btn {
  margin-top: auto;
}

.who-for {
  padding: 120px 0 160px;
  text-align: center;
}

.who-for__overline {
  margin-bottom: 20px;
}

.who-for .title {
  margin-bottom: 60px;
}

.cards--centered .card {
  align-items: center;
  text-align: center;
}

.cards--narrow {
  max-width: 932px;
  margin: 0 auto;
}

.card--compact {
  padding: 32px;
}

.card--big {
  padding: 100px 40px 40px;
  min-height: 324px;
}

.card-icon {
  width: 48px;
  height: 48px;
  border-radius: 6px;
  background-color: var(--color-snow-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
}

.card-text--tight {
  margin-bottom: 0;
}

.card-icon--wide {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  gap: 32px;
  padding: 0;
}

@media (max-width: 1024px) {
  .cards {
    grid-template-columns: 1fr;
  }

  .card {
    padding: 20px;
  }

  .card--big {
    padding: 40px;
    min-height: 200px;
  }

  .card-body {
    margin-bottom: 16px;
  }
}

.platform-scope__note {
  margin-top: 60px;
  text-align: center;
  color: var(--color-slate-700);
}

.platform-pricing .who-for__overline {
  text-align: center;
}

.platform-pricing__muted {
  color: #8A8A8A;
}

.platform-pricing__actions {
  width: 100%;
  max-width: 423px;
  margin: 80px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.accordion__title {
  margin-bottom: 60px;
}

.accordion {
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.accordion__item {
  padding-bottom: 32px;
  border-bottom: 1px solid #E5E5E0;
}

.accordion__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.accordion__header {
  width: 100%;
  padding: 0;
  border: none;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  text-align: left;
}

.accordion__question {
  font-size: 16px;
  line-height: 1.5;
  color: #1B2035;
  text-transform: uppercase;
  font-weight: 600;
}

.accordion__icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.accordion__icon--minus {
  display: none;
}

.accordion__item.is-open .accordion__icon--plus {
  display: none;
}

.accordion__item.is-open .accordion__icon--minus {
  display: block;
}

.accordion__content {
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding-right: 40px;
  font-size: 16px;
  line-height: 1.5;
  color: #1B2035;
  font-weight: 400;
  transition: max-height 280ms ease, margin-top 280ms ease;
}

.accordion__item.is-open .accordion__content {
  margin-top: 8px;
}

.flexible-access {
  text-align: center;
}

.flexible-access__overline {
  margin-bottom: 20px;
}

.flexible-access__title {
  margin-bottom: 60px;
}

.flexible-access__note {
  max-width: 620px;
  margin: 60px auto 0;
  font-size: 16px;
  line-height: 1.5;
  color: #1B2035;
  opacity: 0.7;
}

.cta {
  padding: 120px 0;
}

.cta__inner {
  margin: 0 auto;
}

.cta__body {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.cta__inner .text {
  margin-bottom: 24px;
  opacity: .8;
}

.cta__text {
  margin-bottom: 40px;
}

.book-cta-card {
  display: flex;
  max-width: 1200px;
  margin: 0 auto 120px;
  background: #FFFFFF;
  overflow: hidden;
}

.book-cta-card__left {
  width: 367px;
  flex-shrink: 0;
  background: #FCFCFC;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-cta-card__left img {
  width: 200px;
  height: auto;
  display: block;
}

.book-cta-card__left--cover {
  padding: 0;
  overflow: hidden;
}

.book-cta-card__left--cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.book-cta-card__right {
  flex: 1;
  padding: 80px 40px 40px;
  text-align: left;
}

.book-cta-card .overline {
  margin-bottom: 20px;
}

@media (max-width: 768px) {
  .book-cta-card {
    flex-direction: column;
  }

  .book-cta-card__left {
    width: 100%;
    padding: 40px;
  }

  .book-cta-card__left--cover {
    padding: 0;
  }

  .book-cta-card__left--cover img {
    height: 300px;
  }

  .book-cta-card__right {
    padding: 40px 24px;
  }
}

.problem-solution__col--problem::before,
.problem-solution__col--solution::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100vw;
  z-index: -1;
}

.problem-solution__col--problem::before {
  right: 0;
  background-color: var(--color-snow-100);
}

.problem-solution__col--solution::before {
  left: 0;
  background-color: var(--color-mint-100);
}
