@charset "UTF-8";
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 10px;
}

a {
  text-decoration: none;
}

li {
  list-style-type: none;
}

.text-orchid {
  color: #b54eff;
}

:root {
  --color-black: #000000;
  --color-toned-black: #252525;
  --color-toned-black-a: rgba(37, 37, 37, 0.1);
  --color-white: #ffffff;
  --color-white-a: rgba(255, 255, 255, 0.1);
  --color-coral: #fa5a5a;
  --color-coral-a: rgba(43, 13, 13, 0.3);
  --color-l-blue: #7f95ea;
  --color-v-blue: #0038ff;
  --color-orchid: #b54eff;
  --color-ecru: #edebde;
}

.category-btn {
  border-radius: 9999px;
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: var(--color-white);
  color: var(--color-toned-black);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.category-btn:hover {
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);
  transform: translateY(-0.1rem);
}
.category-btn--active {
  background-color: var(--color-toned-black);
  color: var(--color-white);
}

.search-close-btn {
  height: 3.2rem;
  width: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: var(--color-white);
  color: var(--color-toned-black);
  font-size: 1.4rem;
  line-height: 1;
  border: 1px solid var(--color-toned-black-a);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.search-close-btn:hover {
  background-color: var(--color-ecru);
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);
  transform: translateY(-0.1rem);
}

.episode-card {
  border-radius: 3.2rem;
  background-color: var(--color-white);
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.episode-card__content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.episode-card__title {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
}

.episode-card__meta {
  font-size: 1.2rem;
  color: var(--color-toned-black-a);
}

.episode-card__image {
  background-size: cover;
  background-position: center;
}

.episode-card__image--l-blue {
  background-color: var(--color-l-blue);
}

.episode-card__image--orchid {
  background-color: var(--color-orchid);
}

.episode-card__image--coral {
  background-color: var(--color-coral);
}

.episode-card__image--v-blue {
  background-color: var(--color-v-blue);
}

.episode-card__image--toned-black {
  background-color: var(--color-toned-black);
}

.episode-card__image--white-a {
  background-color: var(--color-white-a);
}

body.is-locked {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background-color: #ffffff;
  border-bottom: 0.1rem solid rgba(37, 37, 37, 0.08);
  font-family: "Unbounded", system-ui, sans-serif;
}
.site-header .site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  padding: 1.6rem 0;
}
.site-header .site-header__brand {
  display: inline-flex;
  align-items: center;
}
.site-header .site-header__brand-img {
  display: block;
  height: 3.6rem;
}
.site-header .site-header__nav {
  display: none;
  align-items: center;
  gap: 3.2rem;
}
.site-header .site-header__link {
  position: relative;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  font-size: 1.5rem;
  font-weight: 600;
  color: #252525;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.site-header .site-header__link span {
  display: inline-block;
}
.site-header .site-header__toggle {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #252525;
  font-size: 1.4rem;
  font-weight: 600;
}
.site-header .site-header__toggle-label {
  display: none;
}
.site-header .site-header__toggle-icon {
  width: 3.6rem;
  height: 3.6rem;
  background-color: #000000;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.site-header .site-header__toggle-icon span {
  display: block;
  width: 1.8rem;
  height: 0.2rem;
  background-color: #ffffff;
  margin: 0.2rem 0;
}
.site-header .site-header__overlay {
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 40;
}
.site-header .site-header__overlay.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.site-header .site-header__panel {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 100%;
  background-color: #edebde;
  transform: translateX(100%);
  opacity: 0;
  pointer-events: none;
  z-index: 50;
}
.site-header .site-header__panel.is-open {
  opacity: 1;
  pointer-events: auto;
}
.site-header .site-header__panel-inner {
  position: relative;
  height: 100%;
  padding: 2.4rem 2.4rem 8rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}
.site-header .site-header__panel-close {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;
  width: 3.2rem;
  height: 3.2rem;
  border: none;
  background: transparent;
  cursor: pointer;
  z-index: 999;
}
.site-header .site-header__panel-close span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2.4rem;
  height: 0.18rem;
  background-color: #252525;
  transform-origin: center;
}
.site-header .site-header__panel-close span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.site-header .site-header__panel-close span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.site-header .site-header__panel-main {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
.site-header .site-header__panel-more {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  width: 100%;
}
.site-header .site-header__panel-separator {
  width: 100%;
  height: 0.1rem;
  background-color: rgba(37, 37, 37, 0.1);
}
.site-header .site-header__panel-link {
  font-size: 1.6rem;
  font-weight: 600;
  color: #252525;
  text-decoration: none;
  letter-spacing: 0.02em;
}
.site-header .site-header__panel-link:hover {
  color: #fa5a5a;
}
.site-header .site-header__panel-icons {
  position: absolute;
  left: 50%;
  bottom: 3rem;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.site-header .site-header__panel-icons svg {
  width: 15rem;
  height: auto;
  transform: rotate(-90deg);
}
.site-header .site-header__panel-icons path {
  fill: #fa5a5a;
  fill-opacity: 0.3;
}
@media (min-width: 768px) {
  .site-header .site-header__brand-img {
    height: 4.2rem;
  }
}
@media (min-width: 1024px) {
  .site-header .site-header__bar {
    padding: 2rem 0;
  }
  .site-header .site-header__nav {
    display: flex;
  }
  .site-header .site-header__toggle-label {
    display: inline;
    font-size: 1.4rem;
  }
  .site-header .site-header__toggle-icon {
    background-color: #fa5a5a;
  }
  .site-header .site-header__panel {
    max-width: 38rem;
  }
  .site-header .site-header__panel-inner {
    padding: 3.2rem 3.2rem 8rem;
  }
  .site-header .site-header__panel-main {
    display: none;
  }
  .site-header .site-header__panel-separator {
    display: none;
  }
  .site-header .site-header__panel-link {
    font-size: 1.4rem;
  }
}

.structure-hero {
  width: 100%;
  height: 91vh;
  padding: 2rem;
  background-color: #ffffff;
  color: #252525;
  font-family: "Space Grotesk", system-ui, sans-serif;
}
.structure-hero__inner {
  max-width: 160rem;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: stretch;
}
.structure-hero__layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  width: 100%;
}
.structure-hero__content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-top: 6rem;
}
.structure-hero__eyebrow {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #252525;
}
.structure-hero__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 3.4rem;
  line-height: 1.1;
  font-weight: 700;
  color: #000000;
}
.structure-hero__highlight {
  color: #fa5a5a;
}
.structure-hero__nav {
  display: flex;
  justify-content: space-around;
  gap: 2.4rem;
  padding-bottom: 2.4rem;
  border-bottom: 0.1rem solid rgba(37, 37, 37, 0.1);
  margin-top: 2.4rem;
  overflow-x: hidden;
}
.structure-hero__nav-link {
  position: relative;
  padding: 1.4rem 3rem;
  border-radius: 9999px;
  color: #252525;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.structure-hero__nav-link::before, .structure-hero__nav-link::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: all 0.45s ease;
}
.structure-hero__nav-link::before {
  left: -3.2rem;
  top: 50%;
  width: 3.2rem;
  height: 0;
  border-bottom: 0.3rem solid #fa5a5a;
  transform: translateY(-50%);
}
.structure-hero__nav-link::after {
  right: -3.2rem;
  bottom: 0.2rem;
  width: 3.2rem;
  height: 1.6rem;
  border-bottom: 0.3rem solid #fa5a5a;
  border-right: 0.3rem solid #fa5a5a;
}
.structure-hero__nav-link:hover {
  opacity: 0.9;
}
.structure-hero__nav-link:hover::before {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 0.4rem solid #fa5a5a;
  border-right: 0.4rem solid #fa5a5a;
  transform: translateY(-50%) rotate(-45deg);
}
.structure-hero__nav-link:hover::after {
  width: 4.4rem;
  height: 2.2rem;
}
.structure-hero__nav-link--active {
  color: #fa5a5a;
}
.structure-hero__image {
  width: 100%;
}
.structure-hero__image-inner {
  position: relative;
  width: 100%;
  height: 28rem;
  border-top-left-radius: 30rem;
  overflow: hidden;
}
.structure-hero__image-bg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.structure-hero__triangles {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 12rem;
  height: 12rem;
}

.structure-hero__triangle--white {
  fill: #fff;
}

@media (min-width: 48rem) and (max-width: 63.999rem) {
  .structure-hero {
    height: auto;
  }
  .structure-hero__layout {
    flex-direction: column;
    gap: 4rem;
  }
  .structure-hero__image-inner {
    height: 95vh;
    min-height: 52rem;
    border-top-left-radius: 26rem;
  }
  .structure-hero__content {
    padding-top: 3rem;
  }
}
@media (min-width: 64rem) {
  .structure-hero {
    height: 91vh;
  }
  .structure-hero__layout {
    flex-direction: row;
    gap: 6rem;
    height: 100%;
  }
  .structure-hero__content {
    flex: 0 0 55%;
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
  .structure-hero__title {
    font-size: 4.6rem;
  }
  .structure-hero__image {
    flex: 0 0 45%;
    display: flex;
  }
  .structure-hero__image-inner {
    height: 91vh;
    border-top-left-radius: 30rem;
  }
  .structure-hero__triangles {
    width: 18rem;
    height: 18rem;
  }
}
@media (max-width: 47.999rem) {
  .structure-hero {
    height: auto;
    padding: 2rem 1.6rem 4rem;
  }
  .structure-hero__layout {
    flex-direction: column-reverse;
    gap: 3.6rem;
  }
  .structure-hero__image {
    order: -1;
  }
  .structure-hero__image-inner {
    height: 55rem;
    border-top-left-radius: 22rem;
  }
  .structure-hero__content {
    padding-top: 1rem;
    gap: 2.4rem;
  }
  .structure-hero__title {
    font-size: 2.8rem;
    line-height: 1.15;
  }
  .structure-hero__nav {
    flex-direction: column;
  }
  .structure-hero__nav-link {
    display: block;
    max-width: 12rem;
  }
  .structure-hero__nav-link::before {
    left: -2rem;
  }
  .structure-hero__triangles {
    left: -1rem;
    bottom: -1rem;
    width: 10rem;
    height: 10rem;
  }
}
.structure-logos {
  width: 100%;
  padding: 10rem 0;
}

.structure-logos__title {
  font-family: "Unbounded";
  text-align: center;
  font-size: 3.2rem;
  font-weight: 600;
  margin-bottom: 5rem;
  color: #000000;
}

.structure-logos__grid {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 3rem 3rem;
  align-items: center;
  justify-items: center;
  max-width: 140rem;
  margin: 0 auto;
  padding: 0 2rem;
}

.structure-logos__grid img {
  max-width: 100%;
  max-height: 6rem;
  -o-object-fit: contain;
     object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.structure-logos__grid img:hover {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.05);
}

@media (max-width: 90rem) {
  .structure-logos__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
@media (max-width: 64rem) {
  .structure-logos {
    padding: 4rem 0;
  }
  .structure-logos__title {
    font-size: 2.6rem;
    margin-bottom: 4rem;
  }
  .structure-logos__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem 4rem;
  }
  .structure-logos__grid img {
    max-height: 6.5rem;
  }
}
@media (max-width: 40rem) {
  .structure-logos__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 3rem;
  }
  .structure-logos__grid img {
    max-height: 5.5rem;
  }
}
.structure-growth {
  position: relative;
  background-color: #edebde;
  padding: 6rem 0 8rem;
}
.structure-growth::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 16rem;
  height: 16rem;
  background-color: #fa5a5a;
  clip-path: polygon(0 0, 100% 0, 0 100%);
}

.structure-growth__inner {
  display: flex;
  flex-direction: column;
  gap: 4.8rem;
}

.structure-growth__head {
  max-width: 72rem;
}

.structure-growth__eyebrow {
  font-size: 1rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #252525;
  margin-bottom: 1.6rem;
}

.structure-growth__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 700;
  color: #252525;
}

.structure-growth__title-highlight {
  color: #fa5a5a;
}

.structure-growth__cards {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.structure-growth-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 0.1rem solid rgba(250, 90, 90, 0.4);
  border-radius: 0 8rem 0 8rem;
  padding: 5.6rem 2.4rem 3.2rem;
  background-color: #edebde;
}
.structure-growth-card::before {
  content: "";
  position: absolute;
  top: -1.6rem;
  left: -1.6rem;
  width: 4rem;
  height: 4rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='219' height='296' viewBox='0 0 219 296' fill='none'%3E%3Cpath d='M218.734 147.856L70.9523 295.792L0.846441 225.613L78.5066 147.856L0.910565 70.1789L71.0325 0L218.734 147.856Z' fill='%23FA5A5A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(225deg);
}

.structure-growth-card__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #252525;
  margin-bottom: 1.6rem;
}

.structure-growth-card__text {
  font-family: "Unbounded" !important;
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.65;
  color: #252525;
}

.structure-growth-card__footer-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  margin-top: 3.2rem;
  padding: 1.4rem 3.2rem;
  border-radius: 9999px;
  color: #252525;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

@media (max-width: 47.999rem) {
  .structure-growth-card__footer-link {
    align-self: flex-end;
    display: block;
    margin-right: 5rem;
  }
  .structure-hero__nav-link::after {
    right: -5rem;
  }
}
@media (min-width: 48rem) {
  .structure-growth {
    padding: 8rem 0 10rem;
  }
  .structure-growth::before {
    display: none;
  }
  .structure-growth__title {
    font-size: 3.6rem;
  }
  .structure-growth-card {
    border-radius: 0 12rem 0 12rem;
    padding: 6.4rem 3.2rem 4rem;
  }
  .structure-growth-card__title {
    font-size: 2.2rem;
  }
  .structure-growth-card__footer-link {
    align-self: flex-end;
    display: block;
    margin-right: 5rem;
  }
}
@media (min-width: 64rem) {
  .structure-growth {
    padding: 12rem 0 14rem;
  }
  .structure-growth__cards {
    flex-direction: row;
    gap: 4.8rem;
  }
  .structure-growth-card {
    flex: 1 1 0;
    padding: 7.2rem 4.8rem 5.6rem;
    border-radius: 0 15rem 0 15rem;
  }
  .structure-growth-card__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 96rem) {
  .structure-growth__title {
    font-size: 5rem;
  }
  .structure-growth-card {
    padding: 8rem 6rem 9.2rem;
  }
  .structure-growth-card__text {
    font-size: 1.7rem;
  }
}
.education-structure {
  position: relative;
  z-index: 2;
  background-color: #edebde;
  overflow: hidden;
  height: 0;
  opacity: 0;
  padding: 0;
}
.education-structure--active {
  height: auto;
  opacity: 1;
  padding: 6rem 0;
}

.education-structure__inner {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}

.education-structure__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 4.8rem;
  color: #252525;
}
.education-structure__title-highlight {
  color: #fa5a5a;
}

.education-structure__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.4rem;
}

.education-structure-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 3.2rem 2.4rem;
  border-radius: 2.4rem;
  background-color: #ffffff;
  box-shadow: 0 2rem 4rem rgba(37, 37, 37, 0.08);
  overflow: hidden;
}
.education-structure-card::before {
  content: "";
  position: absolute;
  top: -30%;
  right: -35%;
  width: 160%;
  height: 160%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='219' height='296' viewBox='0 0 219 296' fill='none'%3E%3Cpath d='M218.734 147.856L70.9523 295.792L0.846441 225.613L78.5066 147.856L0.910565 70.1789L71.0325 0L218.734 147.856Z' fill='%23FA5A5A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: rotate(-45deg);
  opacity: 0.08;
  pointer-events: none;
}
.education-structure-card__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #252525;
  margin-bottom: 1.6rem;
}
.education-structure-card__text {
  font-family: "Unbounded" !important;
  font-size: 1.5rem;
  line-height: 1.65;
  font-weight: 300;
  color: #252525;
}

@media (min-width: 48rem) {
  .education-structure--active {
    padding: 8rem 0;
  }
  .education-structure__title {
    font-size: 3.6rem;
    margin-bottom: 6rem;
  }
  .education-structure__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
  }
  .education-structure-card {
    padding: 4rem 3.2rem;
  }
  .education-structure-card__title {
    font-size: 2.2rem;
  }
}
@media (min-width: 64rem) {
  .education-structure--active {
    padding: 12rem 0;
  }
  .education-structure__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 3.2rem;
  }
  .education-structure-card {
    padding: 4.8rem 3.6rem;
  }
  .education-structure-card__text {
    font-size: 1.6rem;
  }
}
@media (min-width: 96rem) {
  .education-structure__title {
    font-size: 5.4rem;
  }
  .education-structure-card__text {
    font-size: 1.7rem;
  }
}
.structure-mastermind {
  border-top: 0.1rem solid rgba(37, 37, 37, 0.2);
  background-image: url("https://cdn.prod.website-files.com/6826037753cea125bded75a0/683d9b16a68f2f134cf230be_item-pattern_structure.webp");
  background-position: 0 0;
  background-size: auto;
  background-attachment: fixed;
  background-color: #ffffff;
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow-x: hidden;
}
.structure-mastermind__inner {
  display: flex;
  flex-direction: column;
}
.structure-mastermind__layout {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.structure-mastermind__visual-column {
  width: 100%;
}
.structure-mastermind__visual {
  position: relative;
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
  aspect-ratio: 1/1;
  border-radius: 0 0 50% 0;
  background-color: #fa5a5a;
  overflow: hidden;
}
.structure-mastermind__visual-shape {
  position: absolute;
  inset: 0;
}
.structure-mastermind__content-column {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.structure-mastermind__spacer {
  height: 12rem;
}
.structure-mastermind .pin-spacer {
  flex-basis: auto !important;
}
.structure-mastermind-card {
  border: 0.1rem solid rgba(250, 90, 90, 0.5);
  background-color: #ffffff;
  padding: 4.8rem 4.4rem;
}
.structure-mastermind-card__tag {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.7);
  margin-bottom: 1.6rem;
}
.structure-mastermind-card__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 600;
  color: #fa5a5a;
  margin-bottom: 2.4rem;
}
.structure-mastermind-card__text {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.8);
  max-width: 60rem;
  margin-bottom: 3.2rem;
}
.structure-mastermind-card__button {
  margin-top: 3.2rem;
  display: inline-flex;
}

@media (min-width: 64rem) {
  .structure-mastermind {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }
  .structure-mastermind__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 8rem;
  }
  .structure-mastermind__visual-column {
    flex: 0 0 48%;
  }
  .structure-mastermind__content-column {
    flex: 0 0 52%;
  }
  .structure-mastermind__visual {
    max-width: none;
  }
}
@media (min-width: 96rem) {
  .structure-mastermind__spacer {
    height: 14rem;
  }
  .structure-mastermind-card__title {
    font-size: 3.2rem;
  }
  .structure-mastermind-card__text {
    font-size: 1.7rem;
  }
}
.structure-about {
  width: 100%;
  padding: 8rem 0;
  background-color: #ffffff;
}
.structure-about__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}
.structure-about__layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4rem;
}
.structure-about__content {
  flex: 1 1 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.structure-about__tag {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.6);
}
.structure-about__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 700;
  color: #fa5a5a;
}
.structure-about__lead {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.9);
}
.structure-about__list {
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  padding-left: 0;
  margin: 0;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  color: #252525;
}
.structure-about__list li {
  position: relative;
  list-style: none;
  padding-left: 3.6rem;
  display: flex;
  align-items: flex-start;
}
.structure-about__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  width: 2rem;
  height: 2rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='219' height='296' viewBox='0 0 219 296' fill='none'%3E%3Cpath d='M218.734 147.856L70.9523 295.792L0.846441 225.613L78.5066 147.856L0.910565 70.1789L71.0325 0L218.734 147.856Z' fill='%23FA5A5A'/%3E%3C/svg%3E");
  transform: rotate(-45deg);
}
.structure-about__cta {
  margin-top: 2.4rem;
}
.structure-about__button {
  padding-inline: 3.6rem;
}
.structure-about__image {
  flex: 1 1 auto;
  width: 100%;
  border-bottom-left-radius: 40rem;
  background-image: url("https://ingoodstrategy.com/wp-content/themes/ingoodstrategy/assets/img/hero/hero.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 38rem;
  position: relative;
}
.structure-about__image::after {
  content: "";
  position: absolute;
  left: -3rem;
  bottom: -3rem;
  width: 12rem;
  height: 12rem;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom left;
  transform: rotate(135deg);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='219' height='296' viewBox='0 0 219 296' fill='none'%3E%3Cpath d='M218.734 147.856L70.9523 295.792L0.846441 225.613L78.5066 147.856L0.910565 70.1789L71.0325 0L218.734 147.856Z' fill='%23FA5A5A'/%3E%3C/svg%3E");
}

.structure-about--mastermind .structure-about__title {
  color: #b54eff;
}
.structure-about--mastermind .structure-about__list li::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='219' height='296' viewBox='0 0 219 296' fill='none'%3E%3Cpath d='M218.734 147.856L70.9523 295.792L0.846441 225.613L78.5066 147.856L0.910565 70.1789L71.0325 0L218.734 147.856Z' fill='%23CA75FF'/%3E%3C/svg%3E");
}
.structure-about--mastermind .structure-about__button.structure-hero__nav-link::before {
  border-bottom-color: #b54eff;
}
.structure-about--mastermind .structure-about__button.structure-hero__nav-link::after {
  border-bottom-color: #b54eff;
  border-right-color: #b54eff;
}
.structure-about--mastermind .structure-about__button.structure-hero__nav-link:hover::before {
  border-bottom-color: #b54eff;
  border-right-color: #b54eff;
}
.structure-about--mastermind .structure-about__button.structure-hero__nav-link:hover::after {
  border-bottom-color: #b54eff;
  border-right-color: #b54eff;
}

@media (min-width: 64rem) {
  .structure-about {
    padding: 10rem 0;
  }
  .structure-about__layout {
    flex-direction: row;
    align-items: center;
    gap: 5rem;
  }
  .structure-about__content {
    flex: 0 0 60%;
  }
  .structure-about__image {
    height: 60rem;
  }
  .structure-about__image::after {
    width: 16rem;
    height: 16rem;
    left: -4rem;
    bottom: -4rem;
  }
}
@media (min-width: 96rem) {
  .structure-about__title {
    font-size: 4.6rem;
  }
  .structure-about__lead {
    font-size: 1.7rem;
  }
  .structure-about__list {
    font-size: 1.6rem;
  }
  .structure-about__image {
    height: 80rem;
  }
  .structure-about__image::after {
    width: 18rem;
    height: 18rem;
    left: -4.5rem;
    bottom: -4.5rem;
  }
}
@media (max-width: 48rem) {
  .structure-about {
    padding: 6rem 0;
  }
  .structure-about__layout {
    gap: 3.2rem;
  }
  .structure-about__image {
    height: 62rem;
  }
  .structure-about__image::after {
    width: 10rem;
    height: 10rem;
    left: -2.5rem;
    bottom: -2.5rem;
  }
}
.mastermind-hero {
  position: relative;
  background-image: url("https://ingoodstrategy.com/wp-content/themes/ingoodstrategy/assets/img/hero/mastermindhero.jpg");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  min-height: 100vh;
  height: 100vh;
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow: hidden;
}
.mastermind-hero::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32rem;
  height: 32rem;
  background-color: #b54eff;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
  opacity: 0.95;
}

.mastermind-hero__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.mastermind-hero__layout {
  display: flex;
  align-items: center;
  height: 100%;
}

.mastermind-hero__content {
  max-width: 70rem;
  z-index: 2;
}

.mastermind-hero__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3.8rem;
  line-height: 1.1;
  font-weight: 700;
  margin-bottom: 4rem;
  color: #ffffff;
}
@media (min-width: 48rem) {
  .mastermind-hero__title {
    font-size: 4.8rem;
  }
}
@media (min-width: 80rem) {
  .mastermind-hero__title {
    font-size: 5.4rem;
  }
}

.mastermind-hero__highlight {
  color: #b54eff;
}

.mastermind-hero__lead {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1.7;
  margin-bottom: 1.6rem;
}

.mastermind-hero__cta {
  display: flex;
  justify-content: flex-end;
  margin-top: 4rem;
}

.mastermind-hero__button.structure-hero__nav-link {
  color: #ffffff;
}
.mastermind-hero__button.structure-hero__nav-link::before {
  border-bottom-color: #b54eff;
}
.mastermind-hero__button.structure-hero__nav-link::after {
  border-bottom-color: #b54eff;
  border-right-color: #b54eff;
}
.mastermind-hero__button.structure-hero__nav-link:hover::before, .mastermind-hero__button.structure-hero__nav-link:hover::after {
  border-bottom-color: #b54eff;
  border-right-color: #b54eff;
}

@media (max-width: 63.9375rem) {
  .mastermind-hero {
    height: auto;
    min-height: 100vh;
    padding-top: 10rem;
    padding-bottom: 10rem;
    background-position: 60% center;
  }
  .mastermind-hero::before {
    width: 24rem;
    height: 24rem;
    opacity: 0.9;
  }
  .mastermind-hero__title {
    font-size: 3rem;
  }
  .mastermind-hero__lead {
    font-size: 1.8rem;
    max-width: 100%;
  }
  .mastermind-hero__cta {
    justify-content: flex-start;
    margin-top: 3rem;
  }
}
@media (min-width: 96rem) {
  .mastermind-hero__title {
    font-size: 5.8rem;
  }
  .mastermind-hero__lead {
    font-size: 2.2rem;
  }
}
.mastermind-intro {
  position: relative;
  padding-top: 12rem;
  padding-bottom: 12rem;
  background-color: #ffffff;
  overflow: hidden;
}
.mastermind-intro::before {
  content: "";
  position: absolute;
  top: 78%;
  left: 89%;
  width: 80rem;
  height: 80rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='219' height='296' viewBox='0 0 219 296' fill='none'%3E%3Cpath d='M218.734 147.856L70.9523 295.792L0.846441 225.613L78.5066 147.856L0.910565 70.1789L71.0325 0L218.734 147.856Z' fill='%23CA75FF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 1;
  pointer-events: none;
  z-index: 0;
}

.mastermind-intro__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  max-width: 170rem;
}

.mastermind-intro__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 4.6rem;
  line-height: 1.18;
  font-weight: 700;
  color: #b54eff;
  max-width: 160rem;
  margin-bottom: 6rem;
}

.mastermind-intro__text {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.6rem;
  line-height: 1.6;
  font-weight: 400;
  color: #252525;
  max-width: 90rem;
}

@media (max-width: 63.9375rem) {
  .mastermind-intro {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .mastermind-intro::before {
    width: 120rem;
    height: 120rem;
    opacity: 0.18;
  }
  .mastermind-intro__title {
    font-size: 3.6rem;
    margin-bottom: 4rem;
  }
  .mastermind-intro__text {
    font-size: 2rem;
    max-width: 100%;
  }
}
@media (min-width: 80rem) {
  .mastermind-intro__title {
    font-size: 6rem;
  }
  .mastermind-intro__text {
    font-size: 3rem;
  }
}
.mastermind-story {
  position: relative;
  min-height: 100vh;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
}

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

.mastermind-story__layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.mastermind-story__figure {
  width: 100%;
}

.mastermind-story__image-shell {
  width: 100%;
  height: auto;
}

.mastermind-story__image {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.mastermind-story__bio {
  margin-top: 3rem;
}

.mastermind-story__name {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: #252525;
  margin-bottom: 1rem;
}

.mastermind-story__role {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.8rem;
  font-weight: 400;
  color: #252525;
  opacity: 0.9;
}

.mastermind-story__content {
  width: 100%;
  position: relative;
}

.mastermind-story__text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #252525;
  position: relative;
}
.mastermind-story__text p {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.mastermind-story:not(.mastermind-story--expanded) .mastermind-story__text {
  max-height: 24rem;
  overflow: hidden;
}

.mastermind-story:not(.mastermind-story--expanded) .mastermind-story__text::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background: linear-gradient(transparent, #ffffff);
}

.mastermind-story__text p + p {
  margin-top: 1.6rem;
}

.mastermind-story__extra {
  display: none;
  margin-top: 2rem;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #252525;
}

.mastermind-story__extra p + p {
  margin-top: 1.6rem;
}

.mastermind-story--expanded .mastermind-story__extra {
  display: block;
}

.mastermind-story__toggle {
  position: relative;
  padding: 1.4rem 3rem;
  border-radius: 9999px;
  background: none;
  border: none;
  color: #252525;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
.mastermind-story__toggle::before, .mastermind-story__toggle::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: all 0.45s ease;
}
.mastermind-story__toggle::before {
  left: -3.2rem;
  top: 50%;
  width: 3.2rem;
  height: 0;
  border-bottom: 0.3rem solid #b54eff;
  transform: translateY(-50%);
  transform-origin: left center;
}
.mastermind-story__toggle::after {
  right: -3.2rem;
  bottom: 0.2rem;
  width: 3.2rem;
  height: 1.6rem;
  border-bottom: 0.3rem solid #b54eff;
  border-right: 0.3rem solid #b54eff;
}
.mastermind-story__toggle:hover::before {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 0.4rem solid #b54eff;
  border-right: 0.4rem solid #b54eff;
  transform: translateY(-50%) rotate(-45deg);
}
.mastermind-story__toggle:hover::after {
  width: 4.4rem;
  height: 2.2rem;
}
.mastermind-story__toggle:hover {
  opacity: 0.9;
}

.text-orchid {
  color: #b54eff;
}

@media (min-width: 64rem) {
  .mastermind-story__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 6rem;
  }
  .mastermind-story__figure {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .mastermind-story__image-shell {
    height: 99vh;
    max-height: 100vh;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
  }
  .mastermind-story__image {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .mastermind-story__content {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .mastermind-story__name {
    font-size: 3.4rem;
  }
  .mastermind-story__text {
    font-size: 2rem;
  }
  .mastermind-story:not(.mastermind-story--expanded) .mastermind-story__text {
    max-height: 28rem;
  }
}
@media (min-width: 96rem) {
  .mastermind-story__name {
    font-size: 3.8rem;
  }
  .mastermind-story__role {
    font-size: 2rem;
  }
  .mastermind-story__text,
  .mastermind-story__extra {
    font-size: 2.1rem;
  }
}
.mastermind-what {
  border-top: 0.1rem solid rgba(37, 37, 37, 0.2);
  background-color: #edebde;
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow-x: hidden;
}
.mastermind-what__inner {
  display: flex;
  flex-direction: column;
}
.mastermind-what__layout {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.mastermind-what__head {
  max-width: 80rem;
}
.mastermind-what__eyebrow {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #252525;
  margin-bottom: 2.4rem;
}
.mastermind-what__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #252525;
}
.mastermind-what__title-highlight {
  color: #b54eff;
}
.mastermind-what__visual-column {
  width: 100%;
}
.mastermind-what__visual {
  position: relative;
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
  aspect-ratio: 1/1;
  border-radius: 0 0 50% 0;
  background-color: #b54eff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mastermind-what__content-column {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.mastermind-what__spacer {
  height: 12rem;
}
.mastermind-what .pin-spacer {
  flex-basis: auto !important;
}
.mastermind-what__cards {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 6rem;
}
.mastermind-what__card {
  border: 0.1rem solid rgba(181, 78, 255, 0.7);
  background-color: #edebde;
  padding: 3.6rem 3.2rem;
}
.mastermind-what__card-text {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #252525;
}
.mastermind-what__notebook-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}
.mastermind-what__arrow-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
}
.mastermind-what__arrow-layer::before {
  content: "";
  width: 34rem;
  max-width: 90%;
  aspect-ratio: 219/296;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 219 296'%3E%3Cpath d='M218.734 147.856L70.9523 295.792L0.846441 225.613L78.5066 147.856L0.910565 70.1789L71.0325 0L218.734 147.856Z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 219 296'%3E%3Cpath d='M218.734 147.856L70.9523 295.792L0.846441 225.613L78.5066 147.856L0.910565 70.1789L71.0325 0L218.734 147.856Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: currentColor;
}

@media (min-width: 64rem) {
  .mastermind-what {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }
  .mastermind-what__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 8rem;
  }
  .mastermind-what__visual-column {
    flex: 0 0 48%;
  }
  .mastermind-what__content-column {
    flex: 0 0 52%;
  }
  .mastermind-what__visual {
    max-width: none;
  }
  .mastermind-what__card-text {
    font-size: 2rem;
  }
}
@media (min-width: 96rem) {
  .mastermind-what__spacer {
    height: 14rem;
  }
  .mastermind-what__card-text {
    font-size: 2.1rem;
  }
  .mastermind-what__title {
    font-size: 5rem;
  }
}
.mastermind-cta {
  padding-top: 10rem;
  padding-bottom: 12rem;
  background-color: #edebde;
}

.mastermind-cta__inner {
  display: flex;
  flex-direction: column;
}

.mastermind-cta__frame {
  border: 0.2rem solid rgba(181, 78, 255, 0.35);
  padding: 1.6rem;
  background-color: #edebde;
}

.mastermind-cta__box {
  display: flex;
  flex-direction: column;
  background-color: #ffffff;
  min-height: 46rem;
}

.mastermind-cta__content {
  flex: 1 1 0;
  padding: 6rem 4.8rem;
  background-color: #b54eff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
}

.mastermind-cta__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 700;
  margin-bottom: 3rem;
}

.mastermind-cta__text {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.9rem;
  line-height: 1.6;
  font-weight: 500;
  max-width: 46rem;
  margin-bottom: 3.6rem;
}

.mastermind-cta__cta {
  display: flex;
  justify-content: center;
}

.mastermind-cta__button {
  color: #ffffff;
}
.mastermind-cta__button::before {
  border-bottom-color: #ffffff;
}
.mastermind-cta__button::after {
  border-bottom-color: #ffffff;
  border-right-color: #ffffff;
}
.mastermind-cta__button:hover::before {
  border-bottom-color: #ffffff;
  border-right-color: #ffffff;
}
.mastermind-cta__button:hover::after {
  border-bottom-color: #ffffff;
  border-right-color: #ffffff;
}

.mastermind-cta__visual {
  position: relative;
  flex: 1 1 0;
  min-height: 32rem;
  overflow: hidden;
}

.mastermind-cta__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.mastermind-cta__visual::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 18rem;
  height: 18rem;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.95) 50%, transparent 50%) 0 0/100% 100% no-repeat, linear-gradient(135deg, rgba(250, 90, 90, 0.9) 0%, rgba(250, 90, 90, 0.9) 50%, transparent 50%) 2.4rem 2.4rem/100% 100% no-repeat;
}

@media (min-width: 48rem) {
  .mastermind-cta {
    padding-top: 12rem;
    padding-bottom: 14rem;
  }
  .mastermind-cta__title {
    font-size: 3.4rem;
  }
  .mastermind-cta__text {
    font-size: 2rem;
  }
}
@media (min-width: 64rem) {
  .mastermind-cta__box {
    flex-direction: row;
  }
  .mastermind-cta__content {
    flex: 0 0 50%;
    padding: 7rem 6rem;
  }
  .mastermind-cta__visual {
    flex: 0 0 50%;
  }
  .mastermind-cta__title {
    font-size: 3.6rem;
  }
  .mastermind-cta__text {
    font-size: 2.1rem;
    max-width: 52rem;
  }
}
@media (min-width: 96rem) {
  .mastermind-cta__content {
    padding: 8rem 7rem;
  }
  .mastermind-cta__title {
    font-size: 4rem;
  }
  .mastermind-cta__text {
    font-size: 2.2rem;
  }
}
.mastermind-scaling {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 12rem;
  background-color: #000000;
  color: #ffffff;
}

.mastermind-scaling__inner {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.mastermind-scaling__head {
  max-width: 90rem;
}

.mastermind-scaling__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3.6rem;
  line-height: 1.15;
  font-weight: 700;
  color: #b54eff;
}

.mastermind-scaling__layout {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.mastermind-scaling__content {
  max-width: 60rem;
}

.mastermind-scaling__subtitle {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.1rem;
  line-height: 1.4;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 2.4rem;
}

.mastermind-scaling__text {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.86);
}

.mastermind-scaling__visual {
  width: 100%;
  background-color: #ffffff;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.mastermind-scaling__image {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (min-width: 48rem) {
  .mastermind-scaling {
    padding-top: 12rem;
    padding-bottom: 14rem;
  }
  .mastermind-scaling__title {
    font-size: 4.4rem;
  }
  .mastermind-scaling__subtitle {
    font-size: 2.3rem;
  }
  .mastermind-scaling__text {
    font-size: 1.9rem;
  }
}
@media (min-width: 64rem) {
  .mastermind-scaling__title {
    font-size: 4.8rem;
  }
  .mastermind-scaling__layout {
    flex-direction: row;
    align-items: stretch;
    gap: 6rem;
  }
  .mastermind-scaling__content {
    flex: 0 0 45%;
    max-width: 45%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 4rem;
  }
  .mastermind-scaling__visual {
    flex: 0 0 55%;
    max-width: 55%;
  }
}
@media (min-width: 96rem) {
  .mastermind-scaling__title {
    font-size: 5.4rem;
  }
  .mastermind-scaling__subtitle {
    font-size: 2.5rem;
  }
  .mastermind-scaling__text {
    font-size: 2rem;
  }
}
.mastermind-plan {
  position: relative;
  background-color: #ffffff;
  padding-top: 10rem;
  padding-bottom: 12rem;
  overflow: hidden;
}
.mastermind-plan::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 24rem;
  height: 24rem;
  background-color: #b54eff;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}

.mastermind-plan__inner {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.mastermind-plan__head {
  max-width: 100rem;
}

.mastermind-plan__eyebrow {
  font-family: "Unbounded";
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #252525;
  margin-bottom: 2.4rem;
}

.mastermind-plan__title {
  font-family: "Unbounded";
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #252525;
}

.mastermind-plan__title-highlight {
  color: #b54eff;
}

.mastermind-plan__desc {
  font-family: "Unbounded";
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.75);
  max-width: 70rem;
  margin-top: 2rem;
}

.mastermind-plan__layout {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.mastermind-plan__content-column {
  flex: 1 1 auto;
}

.mastermind-plan__visual-column {
  flex: 1 1 auto;
}

.mastermind-plan__cards {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 6rem;
}

.mastermind-plan__card {
  border: 0.1rem solid rgba(181, 78, 255, 0.7);
  padding: 3.6rem 3.2rem;
  background-color: #ffffff;
  margin: 3rem 0;
}

.mastermind-plan__card-title {
  font-family: "Unbounded";
  font-size: 2.2rem;
  font-weight: 700;
  color: #252525;
  margin-bottom: 1.6rem;
}

.mastermind-plan__card-text {
  font-family: "Unbounded";
  font-size: 1.7rem;
  line-height: 1.6;
  color: #252525;
}

.mastermind-plan__visual {
  position: relative;
  width: 100%;
  max-width: 62rem;
  margin-inline: auto;
  aspect-ratio: 4/5;
  border-radius: 0 0 0 22rem;
  background-color: #b54eff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mastermind-plan__notebook-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.55;
}

.mastermind-plan__arrow-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
}
.mastermind-plan__arrow-layer::before {
  content: "";
  width: 32rem;
  max-width: 75%;
  aspect-ratio: 219/296;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 219 296'%3E%3Cpath d='M218.734 147.856L70.9523 295.792L0.846441 225.613L78.5066 147.856L0.910565 70.1789L71.0325 0L218.734 147.856Z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 219 296'%3E%3Cpath d='M218.734 147.856L70.9523 295.792L0.846441 225.613L78.5066 147.856L0.910565 70.1789L71.0325 0L218.734 147.856Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: currentColor;
}

@media (min-width: 64rem) {
  .mastermind-plan__title {
    font-size: 4.4rem;
  }
  .mastermind-plan__layout {
    flex-direction: row;
    align-items: center;
    gap: 8rem;
  }
  .mastermind-plan__content-column {
    flex: 0 0 52%;
    max-width: 52%;
  }
  .mastermind-plan__visual-column {
    flex: 0 0 48%;
    max-width: 48%;
    display: flex;
    justify-content: flex-end;
  }
  .mastermind-plan__card-text {
    font-size: 2rem;
  }
}
@media (min-width: 96rem) {
  .mastermind-plan__title {
    font-size: 5rem;
  }
}
.mastermind-organization {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #ffffff;
}

.mastermind-organization__inner {
  display: flex;
  justify-content: center;
}

.mastermind-organization__card {
  width: 100%;
  background-color: #b54eff;
  border-radius: 0.8rem;
  padding: 4.8rem 3.6rem;
  color: #ffffff;
}

.mastermind-organization__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 2.4rem;
}

.mastermind-organization__text {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  max-width: 120rem;
}

@media (min-width: 64rem) {
  .mastermind-organization {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .mastermind-organization__card {
    padding: 5.2rem 4.8rem;
  }
  .mastermind-organization__title {
    font-size: 3.8rem;
  }
  .mastermind-organization__text {
    font-size: 1.8rem;
  }
}
@media (min-width: 96rem) {
  .mastermind-organization__card {
    border-radius: 1.2rem;
  }
  .mastermind-organization__title {
    font-size: 4.2rem;
  }
  .mastermind-organization__text {
    font-size: 1.9rem;
  }
}
.mastermind-journey {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-color: #000000;
  color: #ffffff;
}

.mastermind-journey__inner {
  display: flex;
  flex-direction: column;
}

.mastermind-journey__layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.mastermind-journey__content {
  flex: 1 1 auto;
}

.mastermind-journey__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3.6rem;
  line-height: 1.15;
  font-weight: 700;
  color: #b54eff;
  max-width: 80rem;
}

.mastermind-journey__meta {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.4rem;
}

.mastermind-journey__date {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.mastermind-journey__button.structure-hero__nav-link {
  color: #ffffff;
}
.mastermind-journey__button.structure-hero__nav-link::before {
  border-bottom-color: #b54eff;
}
.mastermind-journey__button.structure-hero__nav-link::after {
  border-bottom-color: #b54eff;
  border-right-color: #b54eff;
}
.mastermind-journey__button.structure-hero__nav-link:hover::before {
  border-bottom-color: #b54eff;
  border-right-color: #b54eff;
}
.mastermind-journey__button.structure-hero__nav-link:hover::after {
  border-bottom-color: #b54eff;
  border-right-color: #b54eff;
}

.mastermind-journey__visual {
  flex: 1 1 auto;
}

.mastermind-journey__image-shell {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.mastermind-journey__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

@media (min-width: 64rem) {
  .mastermind-journey {
    padding-top: 12rem;
    padding-bottom: 12rem;
  }
  .mastermind-journey__layout {
    flex-direction: row;
    align-items: center;
    gap: 6rem;
  }
  .mastermind-journey__content {
    flex: 0 0 48%;
    max-width: 48%;
  }
  .mastermind-journey__visual {
    flex: 0 0 52%;
    max-width: 52%;
  }
  .mastermind-journey__title {
    font-size: 4.6rem;
  }
  .mastermind-journey__date {
    font-size: 1.8rem;
  }
}
@media (min-width: 96rem) {
  .mastermind-journey__title {
    font-size: 5.2rem;
  }
  .mastermind-journey__date {
    font-size: 2rem;
  }
}
.mastermind-apply {
  padding-top: 10rem;
  padding-bottom: 12rem;
  background-color: #ffffff;
}

.mastermind-apply__inner {
  display: flex;
  flex-direction: column;
}

.mastermind-apply__layout {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  align-items: flex-start;
}

.mastermind-apply__left {
  flex: 1 1 auto;
  max-width: 60rem;
}

.mastermind-apply__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3rem;
  line-height: 1.2;
  font-weight: 700;
  color: #252525;
  margin-bottom: 4rem;
}

.mastermind-apply__figure {
  margin: 0;
  display: flex;
  justify-content: center;
}

.mastermind-apply__image {
  max-width: 40rem;
  width: 100%;
  height: auto;
  display: block;
}

.mastermind-apply__right {
  flex: 1 1 auto;
  width: 100%;
}

.mastermind-apply__card {
  width: 100%;
  border-radius: 2.4rem;
  padding: 3.6rem 3.2rem 3.8rem;
  background: linear-gradient(135deg, rgb(189.5288135593, 98.4, 255) 0%, #b54eff 50%, rgb(168.206779661, 47.4, 255) 100%);
  box-shadow: 0 2.4rem 5rem rgba(0, 0, 0, 0.18);
  color: #ffffff;
}

.mastermind-apply__card-title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 2.8rem;
  color: #ffffff;
}

.mastermind-apply__form {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.8rem !important;
}

.mastermind-apply__field {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.8rem !important;
}

.mastermind-apply__field--split {
  flex-direction: row !important;
  gap: 1.2rem !important;
}

.mastermind-apply__field-part {
  flex: 1 1 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 0.8rem !important;
}

.mastermind-apply__label {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.08em !important;
  text-transform: uppercase !important;
  opacity: 0.9 !important;
}

.mastermind-apply__input {
  width: 100% !important;
  border-radius: 0.9rem !important;
  border: 0.1rem solid rgba(255, 255, 255, 0.7) !important;
  background: rgba(255, 255, 255, 0.14) !important;
  padding: 1.1rem 1.4rem !important;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 1.5rem !important;
  color: #ffffff !important;
  outline: none !important;
}

.mastermind-apply__input--select {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  background-image: linear-gradient(45deg, transparent 50%, #ffffff 50%), linear-gradient(135deg, #ffffff 50%, transparent 50%) !important;
  background-position: calc(100% - 1.6rem) 1.6rem, calc(100% - 1.1rem) 1.6rem !important;
  background-size: 0.6rem 0.6rem, 0.6rem 0.6rem !important;
  background-repeat: no-repeat !important;
}

.mastermind-apply__input:focus {
  border-color: #ffffff !important;
  background: rgba(255, 255, 255, 0.18) !important;
}

.mastermind-apply__checkbox {
  display: flex !important;
  align-items: flex-start !important;
  gap: 1rem !important;
  margin-top: 0.8rem !important;
}

.mastermind-apply__checkbox-input {
  width: 1.6rem !important;
  height: 1.6rem !important;
  margin-top: 0.2rem !important;
}

.mastermind-apply__checkbox-label {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 1.3rem !important;
  line-height: 1.5 !important;
}

.mastermind-apply__submit {
  margin-top: 2.4rem !important;
  width: 100% !important;
  border-radius: 0.9rem !important;
  border: none !important;
  padding: 1.4rem 1.6rem !important;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.1em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  background: linear-gradient(90deg, #000000 0%, black 100%) !important;
  cursor: pointer !important;
}

.mastermind-apply__submit:hover {
  filter: brightness(1.08) !important;
}

.mastermind-apply__note {
  margin-top: 1.4rem !important;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 1.1rem !important;
  opacity: 0.8 !important;
}

/* --------------------------- */
/*        FORM END             */
/* --------------------------- */
@media (max-width: 63.9375rem) {
  .mastermind-apply__field--split {
    flex-direction: column !important;
  }
}
@media (min-width: 64rem) {
  .mastermind-apply {
    padding-top: 12rem;
    padding-bottom: 14rem;
  }
  .mastermind-apply__layout {
    flex-direction: row;
    align-items: center;
    gap: 8rem;
  }
  .mastermind-apply__left {
    flex: 0 0 48%;
    max-width: 48%;
  }
  .mastermind-apply__right {
    flex: 0 0 52%;
    max-width: 52%;
  }
  .mastermind-apply__title {
    font-size: 3.8rem;
  }
  .mastermind-apply__image {
    max-width: 44rem;
  }
}
@media (min-width: 96rem) {
  .mastermind-apply__title {
    font-size: 4.4rem;
  }
  .mastermind-apply__card-title {
    font-size: 2.6rem;
  }
  .mastermind-apply__input {
    font-size: 1.6rem !important;
  }
}
.mastermind-benefits {
  position: relative;
  padding-top: 10rem;
  padding-bottom: 12rem;
  background-color: #000000;
  color: #ffffff;
}

.mastermind-benefits__inner {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}

.mastermind-benefits__head {
  max-width: 90rem;
}

.mastermind-benefits__eyebrow {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.4rem;
}

.mastermind-benefits__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.mastermind-benefits__title-highlight {
  color: #b54eff;
}

.mastermind-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.8rem;
  margin-top: 4rem;
}

.mastermind-benefits-card {
  position: relative;
  overflow: hidden;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.08);
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.08);
  padding: 3.6rem 3.2rem 3.8rem;
  background-color: #000000;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 2.4rem 2.4rem;
  background-position: var(--grid-offset-x, 0) var(--grid-offset-y, 0);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.mastermind-benefits-card__inner {
  position: relative;
  z-index: 2;
}

.mastermind-benefits-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14rem;
  background: linear-gradient(0deg, rgba(181, 78, 255, 0.4) 0%, transparent 60%);
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 1;
}

.mastermind-benefits-card__index {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #b54eff;
  margin-bottom: 2.4rem;
}

.mastermind-benefits-card__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.mastermind-benefits-card__text {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 46rem;
}

.mastermind-benefits-card__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 7rem;
  height: 7rem;
  opacity: 0;
  transform: translate(40%, 40%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
}

.mastermind-benefits-card__arrow::before,
.mastermind-benefits-card__arrow::after {
  content: "";
  position: absolute;
  background-color: #b54eff;
}

.mastermind-benefits-card__arrow::before {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
  border-radius: 0;
}

.mastermind-benefits-card__arrow::after {
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
  border-radius: 0;
}

.mastermind-benefits-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}

.mastermind-benefits-card:hover .mastermind-benefits-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

@media (min-width: 48rem) {
  .mastermind-benefits__title {
    font-size: 4.2rem;
  }
}
@media (min-width: 64rem) {
  .mastermind-benefits {
    padding-top: 12rem;
    padding-bottom: 14rem;
  }
  .mastermind-benefits__title {
    font-size: 4.8rem;
  }
  .mastermind-benefits__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    -moz-column-gap: 3.6rem;
         column-gap: 3.6rem;
    row-gap: 3.2rem;
  }
}
@media (min-width: 96rem) {
  .mastermind-benefits__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    row-gap: 4rem;
  }
  .mastermind-benefits-card {
    padding: 4rem 3.4rem 4.4rem;
  }
  .mastermind-benefits-card__title {
    font-size: 2.2rem;
  }
  .mastermind-benefits-card__text {
    font-size: 1.6rem;
  }
}
.podcast-hero {
  position: relative;
  overflow: hidden;
  background-image: url("https://ingoodstrategy.com/wp-content/themes/ingoodstrategy/assets/img/webinarium/herobanneer.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 6rem 0;
  height: 92vh;
  display: flex;
  align-items: flex-end;
}
@media (max-width: 60rem) {
  .podcast-hero {
    max-height: 30vh !important;
  }
}
.podcast-hero .podcast-hero__shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.podcast-hero > .w-full {
  position: relative;
  z-index: 1;
}
.podcast-hero .podcast-hero__shape {
  position: absolute;
  width: 20rem;
  max-width: 25vw;
  opacity: 0.18;
  transform-origin: center;
  will-change: transform, opacity;
  mix-blend-mode: normal;
}
.podcast-hero .podcast-hero__shape-svg {
  display: block;
  width: 100%;
  height: auto;
}
.podcast-hero .podcast-hero__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(5rem, 6vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  margin-bottom: 3rem;
  color: #ffffff;
}
.podcast-hero .podcast-hero__lead {
  margin: 0 auto;
  font-size: clamp(2rem, 2.3vw, 2.6rem);
  line-height: 1.6;
  font-weight: 400;
  color: #ffffff;
  height: 23vh;
  font-family: "Unbounded", system-ui, sans-serif;
}
.podcast-hero .podcast-hero__icons {
  margin-top: 5rem;
  gap: 3.6rem;
}
.podcast-hero .podcast-hero__icon-link {
  width: 6rem;
  height: 6rem;
  background-color: #0038ff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.podcast-hero .podcast-hero__icon-link svg {
  width: 3rem;
  height: 3rem;
  fill: #ffffff;
}
.podcast-hero .podcast-hero__icon-link:hover {
  transform: translateY(-0.4rem);
  opacity: 0.85;
}

@media (min-width: 1024px) {
  .podcast-hero .podcast-hero__shape {
    width: 24rem;
    opacity: 0.22;
  }
}
@media (max-width: 768px) {
  .podcast-hero {
    padding: 10rem 0;
  }
  .podcast-hero .podcast-hero__title {
    font-size: clamp(3.6rem, 8vw, 4.6rem);
  }
  .podcast-hero .podcast-hero__lead {
    font-size: 1.8rem;
    padding: 0 2rem;
  }
  .podcast-hero .podcast-hero__icons {
    gap: 2rem;
  }
  .podcast-hero .podcast-hero__icon-link {
    width: 4.6rem;
    height: 4.6rem;
  }
  .podcast-hero .podcast-hero__icon-link svg {
    width: 2.4rem;
    height: 2.4rem;
  }
}
.podcast-body {
  background-color: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, sans-serif;
}

.podcast-logo {
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.podcast-dot {
  display: inline-block;
}

.podcast-dot--coral {
  background-color: #fa5a5a;
}

.podcast-dot--l-blue {
  background-color: #7f95ea;
}

.podcast-dot--v-blue {
  background-color: #0038ff;
}

.podcast-dot--orchid {
  background-color: #b54eff;
}

.filter-bar {
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
}

.category-btn {
  border-radius: 9999px;
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
  font-weight: 600;
  background-color: #ffffff;
  color: #252525;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.category-btn:hover {
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);
  transform: translateY(-0.1rem);
}
.category-btn--active {
  background-color: #252525;
  color: #ffffff;
}

.filter-action {
  font-size: 1.2rem;
  font-weight: 600;
  color: #0038ff;
  transition: color 0.2s ease, transform 0.1s ease;
}
.filter-action:hover {
  transform: translateY(-0.1rem);
}

.sort-toggle-arrow {
  border-top-color: #0038ff;
}

.sort-menu {
  background-color: #ffffff;
  box-shadow: 0 0.8rem 2.4rem rgba(37, 37, 37, 0.1);
  border: 1px solid rgba(37, 37, 37, 0.1);
}

.sort-menu__item {
  font-size: 1.2rem;
}
.sort-menu__item:hover {
  background-color: #edebde;
}

.search-input {
  border-radius: 9999px;
  border: 1px solid rgba(37, 37, 37, 0.1);
  background-color: #ffffff;
  padding: 0.8rem 1.6rem;
  font-size: 1.2rem;
}

.search-close-btn {
  height: 3.2rem;
  width: 3.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 9999px;
  background-color: #ffffff;
  color: #252525;
  font-size: 1.4rem;
  line-height: 1;
  border: 1px solid rgba(37, 37, 37, 0.1);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.search-close-btn:hover {
  background-color: #edebde;
  box-shadow: 0 0.4rem 1rem rgba(0, 0, 0, 0.08);
  transform: translateY(-0.1rem);
}

.episode-card {
  border-radius: 3.2rem;
  background-color: #ffffff;
  box-shadow: 0 0.8rem 2.4rem rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.episode-card__image-wrapper {
  overflow: hidden;
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.1);
}

.episode-card__image {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.episode-card__content {
  padding: 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.episode-card__title {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  color: #252525;
}

.episode-card__meta {
  font-size: 1.6rem;
  color: #252525;
}

.webinarium-preview-body .webinar-banner {
  width: 100%;
  background-color: #5170ff;
  color: #ffffff;
}
.webinarium-preview-body .webinar-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  padding: 2.2rem 0;
}
.webinarium-preview-body .webinar-banner__text {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 3.3rem;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .webinarium-preview-body .webinar-banner__inner {
    min-height: 3.8rem;
    padding: 1rem 0;
  }
  .webinarium-preview-body .webinar-banner__text {
    font-size: 2.1rem;
    white-space: normal;
  }
}
.webinarium-preview-body .webinar-hero {
  background-color: #252525;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.webinarium-preview-body .webinar-hero__layout {
  align-items: stretch;
}
.webinarium-preview-body .webinar-hero__main {
  max-width: 90rem;
  margin: 0 auto;
  text-align: left;
}
.webinarium-preview-body .webinar-hero__eyebrow {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.6rem;
}
.webinarium-preview-body .webinar-hero__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(4.2rem, 5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #ffffff;
  margin-bottom: 2.4rem;
}
.webinarium-preview-body .webinar-hero__lead {
  font-size: clamp(1.9rem, 2.2vw, 2.3rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
}
.webinarium-preview-body .webinar-hero__meta {
  justify-content: flex-start;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2.4rem;
}
.webinarium-preview-body .webinar-hero__meta-item strong {
  font-weight: 600;
  color: #ffffff;
}
.webinarium-preview-body .webinar-hero__meta-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.4);
}
.webinarium-preview-body .webinar-hero__badges {
  justify-content: flex-start;
  margin-top: 3rem;
}
.webinarium-preview-body .webinar-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0.1rem solid rgba(255, 255, 255, 0.16);
}
.webinarium-preview-body .webinar-hero__form-wrapper {
  margin-top: 4.2rem !important;
  border-radius: 2.4rem !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
  border: 0.1rem solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 2rem 4.8rem rgba(0, 0, 0, 0.7) !important;
  padding: 3.2rem 3.4rem 3.6rem !important;
  text-align: left !important;
}
.webinarium-preview-body .webinar-hero__form-title {
  font-family: "Unbounded", system-ui, sans-serif !important;
  font-size: 1.8rem !important;
  line-height: 1.7 !important;
  color: #ffffff !important;
  margin-bottom: 2.4rem !important;
}
.webinarium-preview-body .webinar-hero__form-title span {
  display: block !important;
  margin-top: 0.6rem !important;
  color: #ffffff !important;
}
.webinarium-preview-body .webinar-hero__form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 1.6rem !important;
}
.webinarium-preview-body .webinar-hero__field {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
}
.webinarium-preview-body .webinar-hero__label {
  font-family: "Unbounded", system-ui, sans-serif !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.78) !important;
}
.webinarium-preview-body .webinar-hero__input {
  width: 100% !important;
  border-radius: 0.9rem !important;
  border: 0.1rem solid rgba(255, 255, 255, 0.6) !important;
  background-color: rgba(0, 0, 0, 0.55) !important;
  padding: 1.2rem 1.6rem !important;
  font-family: "Space Grotesk", system-ui, sans-serif !important;
  font-size: 1.5rem !important;
  color: #ffffff !important;
  outline: none !important;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease !important;
}
.webinarium-preview-body .webinar-hero__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}
.webinarium-preview-body .webinar-hero__input::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}
.webinarium-preview-body .webinar-hero__input:focus {
  border-color: #0038ff !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  box-shadow: 0 0 0 0.15rem rgba(0, 56, 255, 0.4) !important;
}
.webinarium-preview-body .webinar-hero__submit {
  margin-top: 0.6rem !important;
  width: 100% !important;
  border-radius: 999px !important;
  border: none !important;
  padding: 1.5rem 1.8rem !important;
  font-family: "Unbounded", system-ui, sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #fa5a5a, #0038ff) !important;
  cursor: pointer !important;
  box-shadow: 0 1.6rem 3.8rem rgba(0, 0, 0, 0.7) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease !important;
}
.webinarium-preview-body .webinar-hero__submit:hover {
  transform: translateY(-0.1rem) !important;
  opacity: 0.94 !important;
  box-shadow: 0 2.1rem 4.4rem rgba(0, 0, 0, 0.85) !important;
}
.webinarium-preview-body .webinar-hero__sidebar {
  position: relative;
}
.webinarium-preview-body .webinar-hero__sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2.4rem;
  background: radial-gradient(circle at 0 0, rgba(250, 90, 90, 0.32), transparent 60%), radial-gradient(circle at 100% 100%, rgba(0, 56, 255, 0.3), transparent 55%);
  opacity: 0.12;
  pointer-events: none;
}
.webinarium-preview-body .webinar-hero__sidebar > * {
  position: relative;
  z-index: 1;
}
.webinarium-preview-body .webinar-guests {
  background-color: #252525;
  border-radius: 2.4rem;
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
  padding: 2.4rem 2.2rem 2.6rem;
  box-shadow: 0 2rem 4.8rem rgba(0, 0, 0, 0.7);
  color: #252525;
}
.webinarium-preview-body .webinar-guests__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 2.4rem;
}
.webinarium-preview-body .webinar-guests__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.webinarium-preview-body .webinar-guest {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 1.4rem 1.2rem;
  border-radius: 1.8rem;
  background-color: #ffffff;
  border: 0.1rem solid rgba(255, 255, 255, 0.14);
}
.webinarium-preview-body .webinar-guest__avatar-wrapper {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 1.8rem;
  overflow: hidden;
  flex-shrink: 0;
}
.webinarium-preview-body .webinar-guest__avatar {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.webinarium-preview-body .webinar-guest__content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.webinarium-preview-body .webinar-guest__name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #252525;
}
.webinarium-preview-body .webinar-guest__role {
  font-size: 1.3rem;
  color: #252525;
}
.webinarium-preview-body .webinar-guest__bio {
  font-size: 1.3rem;
  color: #252525;
  line-height: 1.6;
  margin-top: 0.3rem;
}
.webinarium-preview-body .webinar-guest__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.4rem;
}
.webinarium-preview-body .webinar-guest__link {
  font-size: 1.2rem;
  color: #0038ff;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.webinarium-preview-body .webinar-guest__link:hover {
  text-decoration: underline;
}
.webinarium-preview-body .webinar-guest__logo-wrapper {
  width: 8rem;
  max-width: 9rem;
  justify-self: flex-end;
  align-self: center;
}
.webinarium-preview-body .webinar-guest__logo {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

@media (min-width: 1024px) {
  .webinarium-preview-body .webinar-hero__form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    -moz-column-gap: 1.6rem !important;
         column-gap: 1.6rem !important;
    row-gap: 1.4rem !important;
  }
  .webinarium-preview-body .webinar-hero__field:nth-child(3), .webinarium-preview-body .webinar-hero__field:nth-child(4) {
    grid-column: span 1 !important;
  }
  .webinarium-preview-body .webinar-hero__submit {
    grid-column: 1/-1 !important;
  }
}
@media (max-width: 1023px) {
  .webinarium-preview-body .webinar-hero__main {
    text-align: left;
  }
  .webinarium-preview-body .webinar-hero__lead {
    margin-left: 0;
    margin-right: 0;
  }
  .webinarium-preview-body .webinar-hero__meta {
    justify-content: flex-start;
  }
  .webinarium-preview-body .webinar-hero__badges {
    justify-content: flex-start;
  }
  .webinarium-preview-body .webinar-hero__form-wrapper {
    max-width: none !important;
  }
  .webinarium-preview-body .webinar-guest {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
  }
  .webinarium-preview-body .webinar-guest__logo-wrapper {
    grid-column: 1/-1;
    justify-self: flex-start;
    margin-top: 0.6rem;
  }
}
@media (max-width: 640px) {
  .webinarium-preview-body .webinar-hero__title {
    font-size: clamp(3rem, 7vw, 3.8rem);
  }
  .webinarium-preview-body .webinar-hero__lead {
    font-size: 1.6rem;
  }
  .webinarium-preview-body .webinar-hero__form-wrapper {
    padding: 2.4rem 2.2rem 2.8rem !important;
  }
  .webinarium-preview-body .webinar-hero__input {
    font-size: 1.4rem !important;
  }
  .webinarium-preview-body .webinar-hero__submit {
    font-size: 1.4rem !important;
  }
  .webinarium-preview-body .webinar-guests {
    padding: 2rem 1.8rem 2.2rem;
  }
}
.webinarium-preview-body .episode-more-webinars__title {
  color: #fa5a5a;
  font-size: clamp(3rem, 7vw, 3.8rem);
  font-weight: 600;
  font-family: "Unbounded";
}

.webinar-banner {
  width: 100%;
  background-color: #5170ff;
  color: #ffffff;
}
.webinar-banner__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  padding: 2.2rem 0;
}
.webinar-banner__text {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 3.3rem;
  text-align: center;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .webinar-banner__inner {
    min-height: 3.8rem;
    padding: 1rem 0;
  }
  .webinar-banner__text {
    font-size: 2.1rem;
    white-space: normal;
  }
}
.podcast-body {
  color: #edebde;
  font-family: "Unbounded", system-ui, sans-serif;
}

.episode {
  background-color: #edebde;
}

.episode-hero {
  position: relative;
  background-color: #252525;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  background-image: url("https://ingoodstrategy.com/wp-content/themes/ingoodstrategy/assets/img/podcast/gueasts/jacek.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
}
.episode-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 0;
  position: none;
}
.episode-hero .episode-hero__layout {
  align-items: stretch;
}
.episode-hero .episode-hero__main {
  max-width: 80rem;
}
.episode-hero .episode-hero__eyebrow {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.6rem;
}
.episode-hero .episode-hero__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(3.8rem, 4.5vw, 5.2rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.08;
  color: #ffffff;
  margin-bottom: 2.4rem;
}
.episode-hero .episode-hero__lead {
  font-size: clamp(1.8rem, 2.1vw, 2.2rem);
  line-height: 1.7;
  color: #ffffff;
  max-width: 70rem;
}
.episode-hero .episode-hero__meta {
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}
.episode-hero .episode-hero__meta-item strong {
  font-weight: 600;
  color: #ffffff;
}
.episode-hero .episode-hero__meta-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.4);
}
.episode-hero .episode-hero__actions {
  row-gap: 1.6rem;
}
.episode-hero .episode-hero__primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.4rem 2.8rem;
  border-radius: 999px;
  border: none;
  outline: none;
  cursor: pointer;
  background: linear-gradient(135deg, #fa5a5a, #b54eff);
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
  box-shadow: 0 1.4rem 3.2rem rgba(0, 0, 0, 0.45);
}
.episode-hero .episode-hero__primary-btn:hover {
  transform: translateY(-0.2rem);
  opacity: 0.9;
  box-shadow: 0 1.8rem 3.6rem rgba(0, 0, 0, 0.6);
}
.episode-hero .episode-hero__secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.3rem 2.4rem;
  border-radius: 999px;
  border: 0.1rem solid rgba(255, 255, 255, 0.35);
  background-color: rgba(0, 0, 0, 0.35);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  cursor: pointer;
  transition: background-color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.episode-hero .episode-hero__secondary-btn:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-0.1rem);
}
.episode-hero .episode-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1.4rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0.1rem solid rgba(255, 255, 255, 0.12);
}
.episode-hero .episode-hero__sidebar {
  position: relative;
}
.episode-hero .episode-hero__sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2.4rem;
  background: radial-gradient(circle at 0% 0%, rgba(250, 90, 90, 0.32), transparent 60%), radial-gradient(circle at 100% 100%, rgba(127, 149, 234, 0.3), transparent 55%);
  opacity: 0.09;
  pointer-events: none;
}
.episode-hero .episode-hero__sidebar > * {
  position: relative;
  z-index: 1;
}

.episode-player {
  background: rgba(0, 0, 0, 0.8);
  border-radius: 2.4rem;
  padding: 2rem 2.4rem 2.4rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 1.6rem 4.2rem rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(14px);
}
.episode-player .episode-player__track {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}
.episode-player .episode-player__cover {
  width: 7.2rem;
  height: 7.2rem;
  border-radius: 1.6rem;
  overflow: hidden;
  flex-shrink: 0;
  background: #252525;
}
.episode-player .episode-player__cover-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.episode-player .episode-player__info {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.episode-player .episode-player__label {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.6);
}
.episode-player .episode-player__title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
}
.episode-player .episode-player__sub {
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.7);
}
.episode-player .episode-player__controls {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.2rem;
  margin-top: 1.8rem;
}
.episode-player .episode-player__time {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.7);
  font-variant-numeric: tabular-nums;
}
.episode-player .episode-player__progress {
  width: 100%;
}
.episode-player .episode-player__progress-bar {
  position: relative;
  width: 100%;
  height: 0.5rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  overflow: hidden;
}
.episode-player .episode-player__progress-fill {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, #fa5a5a, #b54eff);
}
.episode-player .episode-player__buttons {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.8rem;
}
.episode-player .episode-player__small-btn {
  border-radius: 999px;
  border: 0.1rem solid rgba(255, 255, 255, 0.18);
  padding: 0.5rem 0.9rem;
  background: transparent;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.2rem;
  cursor: pointer;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
}
.episode-player .episode-player__small-btn--active {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
}
.episode-player .episode-player__small-btn:hover {
  background-color: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}
.episode-player .episode-player__spacer {
  flex: 1 1 auto;
}
.episode-player .episode-player__circle-btn {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.episode-player .episode-player__circle-btn--primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 0.8rem 2rem rgba(0, 0, 0, 0.5);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.episode-player .episode-player__circle-btn--primary:hover {
  transform: translateY(-0.1rem);
  box-shadow: 0 1rem 2.4rem rgba(0, 0, 0, 0.7);
}
.episode-player .episode-player__circle-btn--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.episode-player .episode-player__circle-btn--secondary:hover {
  background-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-0.1rem);
}

.episode-guest {
  background: rgba(0, 0, 0, 0.5);
  border-radius: 2rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.12);
  padding: 2rem;
}
.episode-guest .episode-guest__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.6rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #ffffff;
  margin-bottom: 1.6rem;
}
.episode-guest .episode-guest__content {
  display: flex;
  gap: 1.6rem;
  align-items: flex-start;
  background-color: #ffffff;
  padding: 0.4rem;
  border-radius: 2rem;
}
.episode-guest .episode-guest__avatar-wrapper {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 1.8rem;
  overflow: hidden;
  flex-shrink: 0;
}
.episode-guest .episode-guest__avatar {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.episode-guest .episode-guest__name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #252525;
  margin-bottom: 0.3rem;
}
.episode-guest .episode-guest__role {
  font-size: 1.3rem;
  color: rgba(37, 37, 37, 0.75);
  margin-bottom: 0.4rem;
}
.episode-guest .episode-guest__bio {
  font-size: 1.3rem;
  color: rgba(37, 37, 37, 0.7);
  line-height: 1.6;
  margin-bottom: 0.8rem;
}
.episode-guest .episode-guest__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
}
.episode-guest .episode-guest__link {
  font-size: 1.3rem;
  color: #0038ff;
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.episode-guest .episode-guest__link:hover {
  text-decoration: underline;
}

.episode-share {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1.8rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
  padding: 1.8rem;
}
.episode-share .episode-share__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.episode-share .episode-share__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.episode-share .episode-share__btn {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.08);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}
.episode-share .episode-share__btn svg {
  width: 2rem;
  height: 2rem;
  fill: #ffffff;
  display: block;
}
.episode-share .episode-share__btn:hover {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.9rem 1.9rem rgba(0, 0, 0, 0.6);
  background-color: rgba(255, 255, 255, 0.14);
  opacity: 0.96;
}
.episode-share .episode-share__btn--linkedin {
  background-color: #0a66c2;
}
.episode-share .episode-share__btn--x {
  background-color: #000000;
}
.episode-share .episode-share__btn--link {
  background-color: rgba(255, 255, 255, 0.12);
}

.episode-subscribe {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1.8rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
  padding: 1.8rem;
}
.episode-subscribe .episode-subscribe__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.episode-subscribe .episode-subscribe__apps {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.episode-subscribe .episode-subscribe__app {
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease;
}
.episode-subscribe .episode-subscribe__app svg {
  width: 2rem;
  height: 2rem;
  fill: #ffffff;
  display: block;
}
.episode-subscribe .episode-subscribe__app:hover {
  transform: translateY(-0.1rem);
  box-shadow: 0 0.9rem 1.9rem rgba(0, 0, 0, 0.6);
  opacity: 0.96;
}
.episode-subscribe .episode-subscribe__app--spotify {
  background: #1db954;
}
.episode-subscribe .episode-subscribe__app--apple {
  background: #a44cff;
}
.episode-subscribe .episode-subscribe__app--youtube {
  background: #ff0000;
}

.episode-tags {
  background: rgba(0, 0, 0, 0.4);
  border-radius: 1.8rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.1);
  padding: 1.8rem;
}
.episode-tags .episode-tags__title {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
}
.episode-tags .episode-tags__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.episode-tags .episode-tags__item {
  border-radius: 999px;
  padding: 0.6rem 1.4rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.23);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.2rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}
.episode-tags .episode-tags__item:hover {
  border-color: #fa5a5a;
  color: #fa5a5a;
}

.episode-media {
  background-color: #000000;
  color: #ffffff;
  display: flex;
  min-height: 60vh;
  max-height: 80vh;
  align-items: center;
  padding: 6rem 0;
}
.episode-media .episode-media__inner {
  width: 100%;
}
.episode-media .episode-media__layout {
  display: grid;
  gap: 3.2rem;
  align-items: stretch;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1.3fr);
}
.episode-media .episode-media__video-wrapper {
  position: relative;
  border-radius: 2.4rem;
  background-color: #252525;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.8);
}
.episode-media .episode-media__video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  border: 0;
  -o-object-fit: cover;
     object-fit: cover;
}
.episode-media .episode-media__video-overlay-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 6rem;
  height: 6rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  font-size: 2.4rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
  transition: transform 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}
.episode-media .episode-media__video-overlay-play:hover {
  transform: translate(-50%, -50%) scale(1.04);
  background-color: rgba(0, 0, 0, 0.8);
  opacity: 0.96;
}
.episode-media .episode-media__slider-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2rem;
}
.episode-media .episode-media__slider-header {
  max-width: 42rem;
}
.episode-media .episode-media__eyebrow {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: #fa5a5a;
  margin-bottom: 0.8rem;
}
.episode-media .episode-media__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.episode-media .episode-media__slider {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1.4rem;
  margin-top: 2rem;
}
.episode-media .episode-media__nav {
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 999px;
  border: 0.1rem solid rgba(255, 255, 255, 0.3);
  background-color: rgba(255, 255, 255, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 2.1rem;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.18s ease, transform 0.18s ease, border-color 0.18s ease;
}
.episode-media .episode-media__nav:hover {
  background-color: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-0.1rem);
}
.episode-media .episode-media__track {
  position: relative;
  overflow: hidden;
}
.episode-media .episode-media__slide {
  min-width: 100%;
  max-width: 100%;
  border-radius: 1.8rem;
  background: rgba(255, 255, 255, 0.06);
  border: 0.1rem solid rgba(255, 255, 255, 0.18);
  padding: 1.8rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transform: translateX(0);
}
.episode-media .episode-media__time {
  font-size: 1.3rem;
  font-variant-numeric: tabular-nums;
  color: #fa5a5a;
  font-weight: 600;
}
.episode-media .episode-media__label {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
}
.episode-media .episode-media__desc {
  font-size: 1.4rem;
  color: #ffffff;
  line-height: 1.7;
}
.episode-media .episode-media__slide:hover {
  cursor: pointer;
}
.episode-media .episode-media__dots {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.6rem;
}
.episode-media .episode-media__dot {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 999px;
  border: none;
  background-color: rgba(255, 255, 255, 0.26);
  cursor: pointer;
  transition: width 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}
.episode-media .episode-media__dot--active {
  width: 2.4rem;
  background-color: #fa5a5a;
  opacity: 1;
}

.episode-body {
  background-color: #edebde;
  color: #252525;
}

.episode-content .episode-section {
  border-bottom: 0.1rem solid rgba(37, 37, 37, 0.06);
  padding-bottom: 2.8rem;
}
.episode-content .episode-section:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.episode-content .episode-section__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 2.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 1.6rem;
  color: #252525;
  text-transform: uppercase;
}
.episode-content .episode-section__text {
  font-size: 1.7rem;
  line-height: 1.8;
  color: rgba(37, 37, 37, 0.9);
  margin-bottom: 1.2rem;
}
.episode-content .episode-section__list {
  list-style: disc;
  margin: 0 0 1.2rem 2.4rem;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}
.episode-content .episode-section__list-item {
  position: relative;
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.9);
}
.episode-content .episode-section--hear {
  padding-top: 3.2rem;
}
.episode-content .episode-section--hear .episode-section__title {
  font-size: 2.4rem;
  letter-spacing: 0.18em;
  margin-bottom: 2.4rem;
}
.episode-content .episode-hear-section {
  margin-bottom: 2.4rem;
}
.episode-content .episode-hear-section:last-of-type {
  margin-bottom: 0;
}
.episode-content .episode-hear-section__title {
  font-size: 1.7rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
  color: #252525;
}
.episode-content .episode-hear-list {
  list-style: disc;
  margin: 0 0 0.8rem 2.4rem;
  padding: 0;
}
.episode-content .episode-hear-list__item {
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.9);
  margin-bottom: 0.4rem;
}

.episode-timestamps {
  display: grid;
  gap: 0.8rem;
}
.episode-timestamps .episode-timestamps__item {
  display: flex;
  align-items: center;
  width: 100%;
  border-radius: 1.4rem;
  border: 0.1rem solid rgba(37, 37, 37, 0.12);
  background-color: rgba(255, 255, 255, 0.8);
  padding: 1.1rem 1.6rem;
  cursor: pointer;
  text-align: left;
  gap: 1.2rem;
  transition: border-color 0.18s ease, background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.episode-timestamps .episode-timestamps__item:hover {
  border-color: rgba(250, 90, 90, 0.7);
  background-color: #ffffff;
  transform: translateY(-0.1rem);
  box-shadow: 0 1.2rem 2.4rem rgba(0, 0, 0, 0.08);
}
.episode-timestamps .episode-timestamps__time {
  font-variant-numeric: tabular-nums;
  font-size: 1.3rem;
  font-weight: 600;
  color: #fa5a5a;
}
.episode-timestamps .episode-timestamps__label {
  font-size: 1.4rem;
  color: #252525;
}

.episode-quote .episode-quote__inner {
  position: relative;
  border-radius: 2.2rem;
  padding: 3.2rem 3.2rem 3rem;
  background: linear-gradient(135deg, rgba(250, 90, 90, 0.1), rgba(127, 149, 234, 0.1));
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
  overflow: hidden;
}
.episode-quote .episode-quote__mark {
  position: absolute;
  top: -2.2rem;
  left: -0.2rem;
  font-size: 12rem;
  font-family: "Unbounded", system-ui, sans-serif;
  color: rgba(250, 90, 90, 0.15);
}
.episode-quote .episode-quote__text {
  position: relative;
  font-size: 1.9rem;
  line-height: 1.8;
  color: #252525;
  margin-bottom: 1.6rem;
}
.episode-quote .episode-quote__author {
  position: relative;
  font-size: 1.5rem;
  font-weight: 600;
  color: #252525;
}
.episode-quote .episode-quote__meta {
  position: relative;
  font-size: 1.4rem;
  color: rgba(37, 37, 37, 0.7);
}

.episode-pill-grid {
  display: grid;
  gap: 1rem;
}

.episode-pill {
  border-radius: 1.8rem;
  background-color: rgba(255, 255, 255, 0.96);
  padding: 1.4rem 1.8rem;
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.95);
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
}

.episode-notes {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.8rem;
}
.episode-notes .episode-notes__group {
  border-radius: 1.8rem;
  background-color: rgba(255, 255, 255, 0.96);
  padding: 1.8rem 2rem;
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
}
.episode-notes .episode-notes__subtitle {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #252525;
}
.episode-notes .episode-notes__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.7rem;
}
.episode-notes .episode-notes__item {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.9);
}

.episode-sideblocks {
  position: relative;
}

.episode-cta-card {
  border-radius: 2.2rem;
  background-color: #252525;
  color: #ffffff;
  padding: 2.4rem 2.6rem;
  border: 0.1rem solid rgba(255, 255, 255, 0.12);
}
.episode-cta-card .episode-cta-card__eyebrow {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #fa5a5a;
  margin-bottom: 1rem;
}
.episode-cta-card .episode-cta-card__title {
  font-size: 1.9rem;
  font-family: "Unbounded", system-ui, sans-serif;
  letter-spacing: -0.02em;
  margin-bottom: 1.2rem;
}
.episode-cta-card .episode-cta-card__text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 1.8rem;
}
.episode-cta-card .episode-cta-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.1rem 2rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fa5a5a, #0038ff);
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.6);
}
.episode-cta-card .episode-cta-card__btn:hover {
  transform: translateY(-0.1rem);
  opacity: 0.94;
  box-shadow: 0 1.6rem 3.4rem rgba(0, 0, 0, 0.7);
}

.episode-related {
  border-radius: 2.2rem;
  background-color: rgba(255, 255, 255, 0.96);
  padding: 2rem 2.2rem;
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
}
.episode-related .episode-related__title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1.6rem;
  color: #ffffff;
}
.episode-related .episode-related__list {
  display: grid;
  gap: 1.2rem;
}
.episode-related .episode-related__item {
  border-radius: 1.4rem;
  padding: 1.2rem 1.4rem;
  background-color: rgba(237, 235, 222, 0.7);
  transition: background-color 0.18s ease, transform 0.18s ease;
}
.episode-related .episode-related__item:hover {
  background-color: #ffffff;
  transform: translateY(-0.1rem);
}
.episode-related .episode-related__link {
  text-decoration: none;
  color: inherit;
  display: block;
}
.episode-related .episode-related__name {
  font-size: 1.5rem;
  font-weight: 600;
  color: #252525;
  margin-bottom: 0.2rem;
}
.episode-related .episode-related__meta {
  font-size: 1.3rem;
  color: rgba(37, 37, 37, 0.75);
}

.episode-faq {
  border-radius: 2.2rem;
  background-color: rgba(255, 255, 255, 0.96);
  padding: 2rem 2.2rem;
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
}
.episode-faq .episode-faq__title {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 1.4rem;
  color: #252525;
}
.episode-faq .episode-faq__item {
  border-top: 0.1rem solid rgba(37, 37, 37, 0.08);
}
.episode-faq .episode-faq__item:first-of-type {
  border-top: none;
}
.episode-faq .episode-faq__question {
  width: 100%;
  padding: 1.2rem 0;
  text-align: left;
  border: none;
  background: transparent;
  font-size: 1.4rem;
  font-weight: 500;
  color: #252525;
  cursor: pointer;
  position: relative;
  padding-right: 2.4rem;
}
.episode-faq .episode-faq__question::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: rgba(37, 37, 37, 0.7);
}
.episode-faq .episode-faq__item.is-open .episode-faq__question::after {
  content: "–";
}
.episode-faq .episode-faq__answer {
  max-height: 0;
  overflow: hidden;
  font-size: 1.4rem;
  color: rgba(37, 37, 37, 0.8);
  line-height: 1.7;
  transition: max-height 0.25s ease, opacity 0.25s ease, padding-bottom 0.25s ease;
  opacity: 0;
}
.episode-faq .episode-faq__item.is-open .episode-faq__answer {
  max-height: 20rem;
  opacity: 1;
  padding-bottom: 1.2rem;
}

@media (max-width: 1199px) {
  .episode-media {
    min-height: auto;
    padding: 3.2rem 0;
  }
  .episode-media .episode-media__layout {
    grid-template-columns: minmax(0, 1fr);
  }
  .episode-media .episode-media__slider-wrapper {
    max-width: 60rem;
    margin: 0 auto;
  }
}
@media (max-width: 1023px) {
  .episode-player {
    padding: 1.8rem 1.6rem 2rem;
  }
  .episode-player .episode-player__track {
    align-items: flex-start;
  }
  .episode-hero .episode-hero__main {
    max-width: none;
  }
  .episode-guest .episode-guest__content {
    align-items: flex-start;
  }
}
@media (max-width: 768px) {
  .episode-hero .episode-hero__title {
    font-size: clamp(2.8rem, 7vw, 3.6rem);
  }
  .episode-hero .episode-hero__lead {
    font-size: 1.6rem;
  }
  .episode-hero .episode-hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
  .episode-hero .episode-player__track {
    align-items: center;
  }
  .episode-player .episode-player__track {
    flex-direction: row;
  }
  .episode-player .episode-player__buttons {
    flex-wrap: wrap;
  }
  .episode-guest .episode-guest__content {
    flex-direction: row;
  }
  .episode-pill-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .episode-notes {
    grid-template-columns: minmax(0, 1fr);
  }
  .episode-media {
    padding: 2.8rem 0;
  }
  .episode-media .episode-media__layout {
    gap: 2.2rem;
  }
  .episode-media .episode-media__slide {
    padding: 1.6rem 1.6rem;
  }
}
.episode-intro-media figure {
  margin-top: 3rem;
}

.episode-body--webinar-v3 .episode-webinar-v3,
.episode-body--webinar-v3 .episode-webinar-v3 * {
  font-family: "Unbounded", system-ui, sans-serif;
}

.episode-webinar-v3 {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.episode-webinar-v3__title {
  font-size: 2.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: #252525;
  margin: 0 0 1.8rem;
}
.episode-webinar-v3__text {
  font-size: 1.7rem;
  line-height: 1.8;
  color: rgba(37, 37, 37, 0.9);
  margin: 0 0 1.2rem;
}
.episode-webinar-v3__intro {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
  gap: 5rem;
  align-items: start;
  padding-bottom: 4.2rem;
  border-bottom: 0.1rem solid rgba(37, 37, 37, 0.08);
}
.episode-webinar-v3__intro-left {
  min-width: 0;
}
.episode-webinar-v3__intro-right {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}
.episode-webinar-v3__media {
  width: 100%;
  border-radius: 2.6rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
  box-shadow: 0 1.6rem 4.2rem rgba(0, 0, 0, 0.08);
}
.episode-webinar-v3__media-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
}
.episode-webinar-v3__guest-list {
  list-style: none;
  margin: 1.2rem 0 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.episode-webinar-v3__guest-item {
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.92);
  padding: 1.1rem 1.4rem;
  border-radius: 1.6rem;
  background: rgba(255, 255, 255, 0.9);
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
}
.episode-webinar-v3__about {
  padding-bottom: 4.2rem;
  border-bottom: 0.1rem solid rgba(37, 37, 37, 0.08);
}
.episode-webinar-v3__label {
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: rgba(37, 37, 37, 0.75);
  margin-bottom: 1rem;
}
.episode-webinar-v3__headline {
  font-size: clamp(2.2rem, 2.2vw, 3.2rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #252525;
  margin: 0;
}
.episode-webinar-v3__question {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 4.2rem;
  align-items: start;
  margin-bottom: 4.4rem;
}
.episode-webinar-v3__question-left, .episode-webinar-v3__question-right {
  min-width: 0;
}
.episode-webinar-v3__discover {
  display: grid;
  grid-template-columns: minmax(0, 0.75fr) minmax(0, 1.25fr);
  gap: 4.2rem;
  align-items: center;
  justify-content: center;
  margin-bottom: 3.6rem;
  padding: 2.4rem 2.6rem;
  border-radius: 2.6rem;
  background: rgba(255, 255, 255, 0.7);
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
}
.episode-webinar-v3__discover-title {
  font-size: clamp(2.4rem, 2.5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  text-align: center;
  color: #252525;
  margin: 0;
}
.episode-webinar-v3__discover-right {
  min-width: 0;
}
.episode-webinar-v3__discover-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.2rem;
}
.episode-webinar-v3__discover-item {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.92);
}
.episode-webinar-v3__boxes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.8rem;
}
.episode-webinar-v3__box {
  border-radius: 2.4rem;
  background: rgba(255, 255, 255, 0.92);
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
  box-shadow: 0 1.4rem 3.8rem rgba(0, 0, 0, 0.06);
  padding: 2.2rem 2.2rem 2.4rem;
  min-width: 0;
}
.episode-webinar-v3__box-title {
  font-size: 1.55rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #252525;
  margin: 0 0 1.4rem;
}
.episode-webinar-v3__box-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.episode-webinar-v3__box-list li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  font-size: 1.55rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.9);
}
.episode-webinar-v3__arrow {
  width: 2.2rem;
  height: 2.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transform: translateY(0.1rem);
  flex: 0 0 2.2rem;
}
.episode-webinar-v3__arrow-svg {
  display: block;
  width: 100%;
  height: 100%;
}
.episode-webinar-v3__hear {
  padding-top: 0.6rem;
}
.episode-webinar-v3__hear-grid {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(0, 1.1fr);
  gap: 5rem;
  align-items: start;
}
.episode-webinar-v3__hear-left {
  min-width: 0;
}
.episode-webinar-v3__hear-right {
  min-width: 0;
  display: flex;
  justify-content: flex-end;
}
.episode-webinar-v3__hear-block {
  padding: 2.2rem 2.4rem;
  border-radius: 2.4rem;
  background: rgba(255, 255, 255, 0.76);
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
  box-shadow: 0 1.2rem 3.2rem rgba(0, 0, 0, 0.05);
  margin-bottom: 1.8rem;
}
.episode-webinar-v3__hear-block:last-child {
  margin-bottom: 0;
}
.episode-webinar-v3__hear-strong {
  font-size: 1.7rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #252525;
  margin: 0 0 1.2rem;
}
.episode-webinar-v3__hear-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}
.episode-webinar-v3__hear-list li {
  display: grid;
  grid-template-columns: 2.2rem minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  font-size: 1.55rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.92);
}
.episode-webinar-v3__stack {
  width: 100%;
  display: grid;
  gap: 1.6rem;
}
.episode-webinar-v3__stack-item {
  border-radius: 2.6rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.92);
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
  box-shadow: 0 1.6rem 4.2rem rgba(0, 0, 0, 0.08);
}
.episode-webinar-v3__stack-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 1023px) {
  .episode-webinar-v3__intro {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.2rem;
  }
  .episode-webinar-v3__intro-right {
    justify-content: flex-start;
  }
  .episode-webinar-v3__question {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.6rem;
  }
  .episode-webinar-v3__discover {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.4rem;
  }
  .episode-webinar-v3__boxes {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .episode-webinar-v3__hear-grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 3.2rem;
  }
  .episode-webinar-v3__hear-right {
    justify-content: flex-start;
  }
}
@media (max-width: 639px) {
  .episode-webinar-v3__boxes {
    grid-template-columns: minmax(0, 1fr);
  }
  .episode-webinar-v3__title {
    font-size: 2rem;
  }
  .episode-webinar-v3__text {
    font-size: 1.6rem;
  }
  .episode-webinar-v3__guest-item {
    font-size: 1.55rem;
  }
  .episode-webinar-v3__box {
    padding: 2rem 2rem 2.2rem;
  }
  .episode-webinar-v3__discover {
    padding: 2.2rem 2rem;
  }
}

.episode-more-webinars__item {
  display: flex;
}
.episode-more-webinars__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 1.6rem;
  background-color: #000;
}
.episode-more-webinars__thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.podcast-preview-body .episode-webinar-v3 {
  padding-top: 12rem;
  padding-bottom: 12rem;
  display: flex;
  margin: 0 auto;
  align-items: center;
  max-width: 1600px;
}

@media (max-width: 556px) {
  .podcast-preview-body .episode-webinar-v3 {
    flex-direction: column;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.episode-media__track {
  visibility: hidden;
  opacity: 0;
  transition: opacity 140ms ease;
}

.episode-media__track.is-ready {
  visibility: visible;
  opacity: 1;
}

.episode-media__video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
}

.episode-media__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.episode-media__video-wrapper {
  align-self: start;
}

.podcast-preview-body .webinar-banner {
  width: 100%;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
}
.podcast-preview-body .webinar-banner__inner {
  position: relative;
  width: 100%;
  max-width: 100%;
  min-height: 92vh;
  border: 1Srem solid #fa5a5a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("https://ingoodstrategy.com/wp-content/themes/ingoodstrategy/assets/img/podcast/hero.png");
  background-size: cover;
  background-position: top center;
}
.podcast-preview-body .webinar-banner__text {
  position: relative;
  z-index: 1;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(3.2rem, 4vw, 4.4rem);
  font-weight: 600;
  text-transform: uppercase;
  text-align: center;
  padding: 1.8rem 4rem;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.55);
  border: 0.2rem solid #ffffff;
  border-radius: 0;
  border-top-right-radius: 15rem;
  border-bottom-left-radius: 15rem;
}
.podcast-preview-body .webinar-banner__icon {
  position: absolute;
  top: -3.7rem;
  left: -2.6rem;
  display: inline-flex;
  transform: rotate(-136deg);
}
.podcast-preview-body .webinar-banner__icon svg {
  width: 5rem;
  height: auto;
  display: block;
}
.podcast-preview-body .webinar-hero {
  background-color: #252525;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}
.podcast-preview-body .webinar-hero__layout {
  align-items: stretch;
}
.podcast-preview-body .webinar-hero__main {
  max-width: 90rem;
  margin: 0 auto;
  text-align: left;
}
.podcast-preview-body .webinar-hero__eyebrow {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 1.6rem;
}
.podcast-preview-body .webinar-hero__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(4.2rem, 5vw, 5.8rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1.06;
  color: #ffffff;
  margin-bottom: 2.4rem;
}
.podcast-preview-body .webinar-hero__lead {
  font-size: clamp(1.9rem, 2.2vw, 2.3rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 auto;
}
.podcast-preview-body .webinar-hero__meta {
  justify-content: flex-start;
  font-size: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 2.4rem;
}
.podcast-preview-body .webinar-hero__meta-item strong {
  font-weight: 600;
  color: #ffffff;
}
.podcast-preview-body .webinar-hero__meta-dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.4);
}
.podcast-preview-body .webinar-hero__badges {
  justify-content: flex-start;
  margin-top: 3rem;
}
.podcast-preview-body .webinar-hero__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.6rem 1.6rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 0.1rem solid rgba(255, 255, 255, 0.16);
}
.podcast-preview-body .webinar-hero__form-wrapper {
  margin-top: 4.2rem !important;
  border-radius: 2.4rem !important;
  background-color: rgba(0, 0, 0, 0.9) !important;
  border: 0.1rem solid rgba(255, 255, 255, 0.16) !important;
  box-shadow: 0 2rem 4.8rem rgba(0, 0, 0, 0.7) !important;
  padding: 3.2rem 3.4rem 3.6rem !important;
  text-align: left !important;
}
.podcast-preview-body .webinar-hero__form-title {
  font-family: "Unbounded", system-ui, sans-serif !important;
  font-size: 1.8rem !important;
  line-height: 1.7 !important;
  color: #ffffff !important;
  margin-bottom: 2.4rem !important;
}
.podcast-preview-body .webinar-hero__form-title span {
  display: block !important;
  margin-top: 0.6rem !important;
  color: #ffffff !important;
}
.podcast-preview-body .webinar-hero__form {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 1.6rem !important;
}
.podcast-preview-body .webinar-hero__field {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
}
.podcast-preview-body .webinar-hero__label {
  font-family: "Unbounded", system-ui, sans-serif !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.78) !important;
}
.podcast-preview-body .webinar-hero__input {
  width: 100% !important;
  border-radius: 0.9rem !important;
  border: 0.1rem solid rgba(255, 255, 255, 0.6) !important;
  background-color: rgba(0, 0, 0, 0.55) !important;
  padding: 1.2rem 1.6rem !important;
  font-family: "Space Grotesk", system-ui, sans-serif !important;
  font-size: 1.5rem !important;
  color: #ffffff !important;
  outline: none !important;
  transition: border-color 0.18s ease, background-color 0.18s ease, box-shadow 0.18s ease !important;
}
.podcast-preview-body .webinar-hero__input::-moz-placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}
.podcast-preview-body .webinar-hero__input::placeholder {
  color: rgba(255, 255, 255, 0.55) !important;
}
.podcast-preview-body .webinar-hero__input:focus {
  border-color: #0038ff !important;
  background-color: rgba(0, 0, 0, 0.8) !important;
  box-shadow: 0 0 0 0.15rem rgba(0, 56, 255, 0.4) !important;
}
.podcast-preview-body .webinar-hero__submit {
  margin-top: 0.6rem !important;
  width: 100% !important;
  border-radius: 999px !important;
  border: none !important;
  padding: 1.5rem 1.8rem !important;
  font-family: "Unbounded", system-ui, sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  background: #fa5a5a !important;
  cursor: pointer !important;
  box-shadow: 0 1.6rem 3.8rem rgba(0, 0, 0, 0.7) !important;
  transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease !important;
}
.podcast-preview-body .webinar-hero__submit:hover {
  transform: translateY(-0.1rem) !important;
  opacity: 0.94 !important;
  box-shadow: 0 2.1rem 4.4rem rgba(0, 0, 0, 0.85) !important;
}
.podcast-preview-body .webinar-hero__sidebar {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.podcast-preview-body .webinar-hero__sidebar::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2.4rem;
  background: radial-gradient(circle at 0 0, rgba(250, 90, 90, 0.32), transparent 60%), radial-gradient(circle at 100% 100%, rgba(0, 56, 255, 0.3), transparent 55%);
  opacity: 0.12;
  pointer-events: none;
}
.podcast-preview-body .webinar-hero__sidebar > * {
  position: relative;
  z-index: 1;
}
.podcast-preview-body .webinar-hero__photo {
  position: relative;
  flex: 1 1 auto;
  border-radius: 2.4rem;
  overflow: hidden;
}
.podcast-preview-body .webinar-hero__photo-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.podcast-preview-body .webinar-guests {
  position: absolute;
  left: 2.4rem;
  right: 2.4rem;
  bottom: 2.4rem;
  background-color: #252525;
  border-radius: 2.4rem;
  border: 0.1rem solid rgba(37, 37, 37, 0.08);
  padding: 2.4rem 2.2rem 2.6rem;
  box-shadow: 0 2rem 4.8rem rgba(0, 0, 0, 0.7);
  color: #252525;
}
.podcast-preview-body .webinar-guests__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #ffffff;
  margin-bottom: 2.4rem;
}
.podcast-preview-body .webinar-guests__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.podcast-preview-body .webinar-guest {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 1.8rem;
  align-items: flex-start;
  padding: 1.4rem 1.2rem;
  border-radius: 1.8rem;
  background-color: #ffffff;
  border: 0.1rem solid rgba(255, 255, 255, 0.14);
}
.podcast-preview-body .webinar-guest__avatar-wrapper {
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 1.8rem;
  overflow: hidden;
  flex-shrink: 0;
}
.podcast-preview-body .webinar-guest__avatar {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.podcast-preview-body .webinar-guest__content {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.podcast-preview-body .webinar-guest__name {
  font-size: 1.8rem;
  font-weight: 600;
  color: #252525;
}
.podcast-preview-body .webinar-guest__role {
  font-size: 1.3rem;
  color: #252525;
}
.podcast-preview-body .webinar-guest__bio {
  font-size: 1.3rem;
  color: #252525;
  line-height: 1.6;
  margin-top: 0.3rem;
}
.podcast-preview-body .webinar-guest__links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.2rem;
  margin-top: 0.4rem;
}
.podcast-preview-body .webinar-guest__link {
  font-size: 1.2rem;
  color: #0038ff;
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.podcast-preview-body .webinar-guest__link:hover {
  text-decoration: underline;
}
.podcast-preview-body .webinar-guest__logo-wrapper {
  width: 8rem;
  max-width: 9rem;
  justify-self: flex-end;
  align-self: center;
}
.podcast-preview-body .webinar-guest__logo {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}
.podcast-preview-body .episode-more-webinars__title {
  color: #fa5a5a;
  font-size: clamp(3rem, 7vw, 3.8rem);
  font-weight: 600;
  font-family: "Unbounded";
}

@media (max-width: 768px) {
  .podcast-preview-body .webinar-banner {
    min-height: 10vh;
  }
  .podcast-preview-body .webinar-banner__inner {
    min-height: 24rem;
    background-size: contain;
    background-repeat: no-repeat;
  }
  .podcast-preview-body .webinar-banner__text {
    font-size: clamp(2.4rem, 6vw, 3.2rem);
    padding: 1.6rem 3rem;
    display: none;
  }
}
@media (min-width: 1024px) {
  .podcast-preview-body .webinar-hero__form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    -moz-column-gap: 1.6rem !important;
         column-gap: 1.6rem !important;
    row-gap: 1.4rem !important;
  }
  .podcast-preview-body .webinar-hero__field:nth-child(3), .podcast-preview-body .webinar-hero__field:nth-child(4) {
    grid-column: span 1 !important;
  }
  .podcast-preview-body .webinar-hero__submit {
    grid-column: 1/-1 !important;
  }
}
@media (max-width: 1023px) {
  .podcast-preview-body .webinar-hero__main {
    text-align: left;
  }
  .podcast-preview-body .webinar-hero__lead {
    margin-left: 0;
    margin-right: 0;
  }
  .podcast-preview-body .webinar-hero__meta {
    justify-content: flex-start;
  }
  .podcast-preview-body .webinar-hero__badges {
    justify-content: flex-start;
  }
  .podcast-preview-body .webinar-hero__form-wrapper {
    max-width: none !important;
  }
  .podcast-preview-body .webinar-hero__sidebar {
    margin-top: 3.2rem;
  }
  .podcast-preview-body .webinar-hero__photo {
    height: 52rem;
  }
  .podcast-preview-body .webinar-guests {
    position: static;
    margin-top: 2.4rem;
  }
  .podcast-preview-body .webinar-guest {
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-rows: auto auto;
  }
  .podcast-preview-body .webinar-guest__logo-wrapper {
    grid-column: 1/-1;
    justify-self: flex-start;
    margin-top: 0.6rem;
  }
}
@media (max-width: 640px) {
  .podcast-preview-body .webinar-hero__title {
    font-size: clamp(3rem, 7vw, 3.8rem);
  }
  .podcast-preview-body .webinar-hero__lead {
    font-size: 1.6rem;
  }
  .podcast-preview-body .webinar-hero__form-wrapper {
    padding: 2.4rem 2.2rem 2.8rem !important;
  }
  .podcast-preview-body .webinar-hero__input {
    font-size: 1.4rem !important;
  }
  .podcast-preview-body .webinar-hero__submit {
    font-size: 1.4rem !important;
  }
  .podcast-preview-body .webinar-guests {
    padding: 2rem 1.8rem 2.2rem;
  }
}
.podcasty_preview_body .podcast-hero {
  position: relative;
  overflow: hidden;
  background-image: url(https://ingoodstrategy.com/wp-content/themes/ingoodstrategy/assets/img/podcast/hero.png);
  background-size: 100% 100%;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  padding: 6rem 0;
  min-height: 92vh;
}
@media (max-width: 64rem) {
  .podcasty_preview_body .podcast-hero {
    background-size: contain;
    min-height: 36vh;
  }
}

.consulting-hero {
  position: relative;
  overflow: hidden;
  background-color: #000000;
  background-image: url("https://ingoodstrategy.com/wp-content/themes/ingoodstrategy/assets/img/consulting/hero.jpg");
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  color: #ffffff;
  font-family: "Unbounded", system-ui, sans-serif;
  padding: 10rem 0;
  min-height: 92vh;
}
.consulting-hero__inner {
  display: flex;
  align-items: center;
  min-height: 60rem;
  position: relative;
  z-index: 2;
}
.consulting-hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}
.consulting-hero__copy {
  display: flex;
  flex-direction: column;
  width: 70%;
}
.consulting-hero__title {
  font-size: clamp(3.6rem, 5vw, 6.4rem);
  font-weight: 700;
  line-height: 1.06;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.consulting-hero__title-highlight {
  display: block;
  color: #fa5a5a;
}
.consulting-hero__eyebrow {
  font-size: 1.4rem;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
  margin-top: 3rem;
}
.consulting-hero__lead {
  font-size: clamp(2rem, 2.3vw, 2.4rem);
  font-weight: 400;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.96);
  max-width: 54rem;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.consulting-hero__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 2.6rem;
  width: 100%;
  margin-top: 3.2rem;
  position: relative;
  z-index: 2;
}
.consulting-hero__cta {
  position: relative;
  padding: 1.4rem 3rem;
  border-radius: 9999px;
  color: #ffffff;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.consulting-hero__cta::before, .consulting-hero__cta::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: all 0.45s ease;
}
.consulting-hero__cta::before {
  left: -3.2rem;
  top: 50%;
  width: 3.2rem;
  height: 0;
  border-bottom: 0.3rem solid #fa5a5a;
  transform: translateY(-50%);
  transform-origin: left center;
}
.consulting-hero__cta::after {
  right: -3.2rem;
  bottom: 0.2rem;
  width: 3.2rem;
  height: 1.6rem;
  border-bottom: 0.3rem solid #fa5a5a;
  border-right: 0.3rem solid #fa5a5a;
}
.consulting-hero__cta:hover {
  opacity: 0.9;
}
.consulting-hero__cta:hover::before {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 0.4rem solid #fa5a5a;
  border-right: 0.4rem solid #fa5a5a;
  transform: translateY(-50%) rotate(-45deg);
}
.consulting-hero__cta:hover::after {
  width: 4.4rem;
  height: 2.2rem;
}
.consulting-hero__cta--secondary {
  color: rgba(255, 255, 255, 0.92);
}
.consulting-hero__cta-text {
  display: inline-block;
}
.consulting-hero__triangle {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26rem;
  max-width: 40vw;
  z-index: 1;
}
.consulting-hero__triangle svg {
  display: block;
  width: 100%;
  height: auto;
}
.consulting-hero__steps {
  position: absolute;
  left: 42%;
  bottom: 6rem;
  transform: translateX(-50%);
  width: 34rem;
  max-width: 48vw;
  z-index: 1;
  opacity: 0.15;
  pointer-events: none;
}
.consulting-hero__steps svg {
  display: block;
  width: 100%;
  height: auto;
}

@media (min-width: 64rem) {
  .consulting-hero__content {
    width: 80%;
  }
  .consulting-hero__actions {
    width: 100%;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 3.2rem;
  }
  .consulting-hero__steps {
    bottom: 5rem;
    width: 56rem;
  }
}
@media (max-width: 64rem) {
  .consulting-hero {
    padding: 8rem 0;
    background-position: center;
  }
  .consulting-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.55);
    z-index: 1;
  }
  .consulting-hero__steps {
    bottom: 4rem;
    width: 28rem;
  }
  .consulting-hero__triangle {
    width: 18rem;
  }
}
@media (max-width: 40rem) {
  .consulting-hero {
    padding: 7rem 0;
    min-height: 88vh;
    background-position: right;
    background-size: cover;
  }
  .consulting-hero::before {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .consulting-hero__title {
    font-size: clamp(3.2rem, 8vw, 3.8rem);
  }
  .consulting-hero__lead {
    font-size: 1.7rem;
    margin-top: 4.2rem;
    margin-bottom: 4.2rem;
  }
  .consulting-hero__actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.4rem;
    max-width: 100%;
  }
  .consulting-hero__cta {
    font-size: 1rem;
    padding: 1.1rem 2.2rem;
  }
  .consulting-hero__steps {
    bottom: 3.2rem;
    width: 22rem;
  }
  .consulting-hero__triangle {
    width: 14rem;
    display: none;
  }
}
.consulting-what {
  background-color: #edebde;
  padding-top: 12rem;
  padding-bottom: 12rem;
  overflow-x: hidden;
}
.consulting-what__inner {
  display: flex;
  flex-direction: column;
}
.consulting-what__layout {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.consulting-what__head {
  max-width: 80rem;
}
.consulting-what__eyebrow {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #252525;
  margin-bottom: 2.4rem;
}
.consulting-what__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #252525;
}
.consulting-what__title-highlight {
  color: #fa5a5a;
}
.consulting-what__visual-column {
  width: 100%;
}
.consulting-what__visual {
  position: relative;
  width: 100%;
  max-width: 64rem;
  margin-inline: auto;
  aspect-ratio: 1/1;
  border-radius: 0 0 50% 0;
  background-color: #fa5a5a;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consulting-what__content-column {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.consulting-what__cards {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  margin-top: 6rem;
}
.consulting-what__card {
  border: 0.1rem solid rgba(250, 90, 90, 0.75);
  background-color: #edebde;
  padding: 3.6rem 3.2rem;
}
.consulting-what__card-text {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: 600;
  color: #252525;
  text-align: center;
}
.consulting-what__notebook-lines {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.38;
}
.consulting-what__arrow-layer {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  color: #ffffff;
  opacity: 0;
  pointer-events: none;
}
.consulting-what__arrow-layer::before {
  content: "";
  width: 34rem;
  max-width: 90%;
  aspect-ratio: 219/296;
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 219 296'%3E%3Cpath d='M218.734 147.856L70.9523 295.792L0.846441 225.613L78.5066 147.856L0.910565 70.1789L71.0325 0L218.734 147.856Z' fill='black'/%3E%3C/svg%3E");
          mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 219 296'%3E%3Cpath d='M218.734 147.856L70.9523 295.792L0.846441 225.613L78.5066 147.856L0.910565 70.1789L71.0325 0L218.734 147.856Z' fill='black'/%3E%3C/svg%3E");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: currentColor;
}

@media (min-width: 64rem) {
  .consulting-what {
    padding-top: 14rem;
    padding-bottom: 14rem;
  }
  .consulting-what__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 8rem;
  }
  .consulting-what__visual-column {
    flex: 0 0 48%;
  }
  .consulting-what__content-column {
    flex: 0 0 52%;
  }
  .consulting-what__visual {
    max-width: none;
  }
  .consulting-what__card-text {
    font-size: 2rem;
  }
}
@media (min-width: 96rem) {
  .consulting-what__card-text {
    font-size: 4.1rem;
  }
  .consulting-what__title {
    font-size: 5rem;
  }
}
.consulting-questions {
  background-color: #ffffff;
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.consulting-questions__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.consulting-questions__head {
  margin-bottom: 8rem;
}
.consulting-questions__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 5.2rem;
  font-weight: 700;
  color: #252525;
  line-height: 1.1;
}
.consulting-questions__grid {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-bottom: 8rem;
}
.consulting-questions__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 38rem;
  margin-inline: auto;
  flex: 0 0 auto;
}
.consulting-questions__item::before, .consulting-questions__item::after {
  content: "";
  position: absolute;
  bottom: -1.4rem;
  width: 2.4rem;
  height: 2.4rem;
  border-bottom: 0.22rem solid #fa5a5a;
}
.consulting-questions__item::before {
  left: -1.4rem;
  border-left: 0.22rem solid #fa5a5a;
}
.consulting-questions__item::after {
  right: -1.4rem;
  border-right: 0.22rem solid #fa5a5a;
}
.consulting-questions__icon {
  width: 7rem;
  height: 7rem;
  margin-bottom: 2.4rem;
}
.consulting-questions__icon svg {
  width: 100%;
  height: 100%;
  fill: #fa5a5a;
}
.consulting-questions__text {
  position: relative;
  display: inline-block;
  padding: 3rem 3.4rem;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 2rem;
  line-height: 1.4;
  color: #252525;
  font-weight: 600;
  text-align: center;
}
.consulting-questions__text::before, .consulting-questions__text::after {
  content: "";
  position: absolute;
  top: -1.4rem;
  width: 2.4rem;
  height: 2.4rem;
  border-top: 0.22rem solid #fa5a5a;
}
.consulting-questions__text::before {
  left: -1.4rem;
  border-left: 0.22rem solid #fa5a5a;
}
.consulting-questions__text::after {
  right: -1.4rem;
  border-right: 0.22rem solid #fa5a5a;
}
.consulting-questions__cta-wrapper {
  display: flex;
  justify-content: center;
}
.consulting-questions__cta {
  position: relative;
  padding: 1.4rem 3rem;
  border-radius: 9999px;
  color: #252525;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.consulting-questions__cta-text {
  display: inline-block;
}

@media (min-width: 64rem) {
  .consulting-questions__grid {
    flex-direction: row;
    justify-content: space-between;
    gap: 4rem;
  }
  .consulting-questions__item {
    margin-inline: 0;
    max-width: 34rem;
  }
  .consulting-questions__title {
    font-size: 6rem;
  }
  .consulting-questions__text {
    font-size: 2.2rem;
  }
}
@media (max-width: 40rem) {
  .consulting-questions {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .consulting-questions__title {
    font-size: 4rem;
  }
  .consulting-questions__grid {
    gap: 4rem;
  }
  .consulting-questions__text {
    font-size: 1.8rem;
    padding: 2.2rem 2.6rem;
  }
}
.consulting-franchise-quote {
  background-color: #edebde;
  color: #252525;
  padding-top: 8rem;
  padding-bottom: 8rem;
  font-family: "Unbounded", system-ui, sans-serif;
}
.consulting-franchise-quote__inner {
  display: flex;
  flex-direction: column;
}
.consulting-franchise-quote__label {
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fa5a5a;
  margin-bottom: 4rem;
}
.consulting-franchise-quote__content {
  max-width: 140rem;
}
.consulting-franchise-quote__text {
  font-size: clamp(2rem, 2.3vw, 2.6rem);
  line-height: 1.7;
  font-weight: 600;
  color: #252525;
}
.consulting-franchise-quote__text + .consulting-franchise-quote__text {
  margin-top: 3.2rem;
}
.consulting-franchise-quote__highlight {
  color: #fa5a5a;
  font-weight: 700;
}
.consulting-franchise-quote__mark {
  color: #fa5a5a;
  font-weight: 700;
  font-size: clamp(3.4rem, 4vw, 4.6rem);
}
.consulting-franchise-quote__mark--open {
  display: inline-block;
  margin-right: 1.2rem;
  transform: translateY(0.2rem);
}
.consulting-franchise-quote__mark--close {
  display: inline-block;
  margin-left: 0.8rem;
  transform: translateY(0.2rem);
}
.consulting-franchise-quote__author {
  margin-top: 4.4rem;
  font-size: 1.8rem;
  font-weight: 600;
  color: #fa5a5a;
}

@media (min-width: 64rem) {
  .consulting-franchise-quote {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .consulting-franchise-quote__label {
    margin-bottom: 5rem;
  }
  .consulting-franchise-quote__author {
    margin-top: 5rem;
    font-size: 2rem;
  }
}
@media (max-width: 40rem) {
  .consulting-franchise-quote {
    padding-top: 6rem;
    padding-bottom: 6rem;
  }
  .consulting-franchise-quote__label {
    font-size: 1.3rem;
    margin-bottom: 3rem;
  }
  .consulting-franchise-quote__text {
    font-size: 1.8rem;
  }
  .consulting-franchise-quote__author {
    font-size: 1.6rem;
    margin-top: 3.2rem;
  }
}
.consulting-help {
  background-color: #ffffff;
  color: #252525;
  padding: 10rem 0 12rem 0;
  font-family: "Unbounded", system-ui, sans-serif;
}
.consulting-help__inner {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.consulting-help__head {
  max-width: 80rem;
}
.consulting-help__eyebrow {
  font-size: 1.3rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #252525;
  margin-bottom: 2.4rem;
}
.consulting-help__title {
  font-size: clamp(3.4rem, 4.4vw, 4.8rem);
  line-height: 1.18;
  font-weight: 700;
  color: #252525;
}
.consulting-help__layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6rem;
}
.consulting-help__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.consulting-help__list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  margin-top: 5rem;
}
.consulting-help__item {
  display: flex;
  align-items: flex-start;
  gap: 2.6rem;
  max-width: 74rem;
}
.consulting-help__item p {
  font-size: 1.9rem;
  line-height: 1.7;
  color: #252525;
}
.consulting-help__item strong {
  font-weight: 700;
}
.consulting-help__icon {
  flex-shrink: 0;
  margin-top: 0.4rem;
}
.consulting-help__icon svg {
  display: block;
  width: 3.6rem;
  height: auto;
}
.consulting-help__visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  justify-content: flex-end;
}
.consulting-help__visual img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 4rem 0 0;
}
.consulting-help__visual::after {
  content: "";
  position: absolute;
  left: -3.6rem;
  bottom: -3.6rem;
  width: 18rem;
  max-width: 40%;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: contain;
  opacity: 0.7;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='292' height='292' viewBox='0 0 292 292' fill='none'%3E%3Cpath d='M0 177.633L120.968 292V177.633H0Z' fill='%23FA5A5A'/%3E%3Cpath d='M0 177.633L120.968 292V177.633H0Z' fill='%23FA5A5A'/%3E%3Cpath d='M120.968 0H292V292H120.968V0Z' fill='%23FA5A5A'/%3E%3Cpath d='M0 0H121.238V177.633H0V0Z' fill='%23FA5A5A'/%3E%3C/svg%3E");
}

@media (min-width: 64rem) {
  .consulting-help {
    padding: 12rem 0 14rem 0;
  }
  .consulting-help__inner {
    gap: 8rem;
  }
  .consulting-help__layout {
    flex-direction: row;
    align-items: stretch;
    gap: 8rem;
  }
  .consulting-help__content {
    flex: 0 0 55%;
    max-width: 55%;
  }
  .consulting-help__visual {
    flex: 0 0 45%;
    max-width: 45%;
  }
  .consulting-help__title {
    font-size: clamp(3.8rem, 4.6vw, 5.2rem);
  }
  .consulting-help__item p {
    font-size: 2rem;
  }
}
@media (max-width: 48rem) {
  .consulting-help {
    padding: 8rem 0 10rem 0;
  }
  .consulting-help__layout {
    gap: 5rem;
  }
  .consulting-help__title {
    font-size: 3.2rem;
  }
  .consulting-help__item {
    gap: 2rem;
  }
  .consulting-help__item p {
    font-size: 1.7rem;
  }
  .consulting-help__visual img {
    border-radius: 0 2.4rem 0 0;
  }
  .consulting-help__visual::after {
    width: 14rem;
    max-width: 46%;
  }
}
.consulting-benefits {
  background-color: #252525;
  color: #ffffff;
  padding: 10rem 0 12rem 0;
  font-family: "Unbounded", system-ui, sans-serif;
}
.consulting-benefits__inner {
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
.consulting-benefits__head {
  max-width: 90rem;
}
.consulting-benefits__eyebrow {
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2.4rem;
}
.consulting-benefits__title {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fa5a5a;
}
.consulting-benefits__list {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-top: 4rem;
}

.consulting-benefits-card {
  position: relative;
  overflow: hidden;
  padding: 3.6rem 3.2rem 3.8rem;
  border-top: 0.1rem solid rgba(255, 255, 255, 0.08);
  border-bottom: 0.1rem solid rgba(255, 255, 255, 0.08);
  background-color: #252525;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.16) 0.1rem, transparent 0.1rem);
  background-size: 2.4rem 2.4rem;
  background-position: var(--grid-offset-x, 0) var(--grid-offset-y, 0);
  transition: transform 0.3s ease, background-color 0.3s ease;
}
.consulting-benefits-card__inner {
  position: relative;
  z-index: 2;
}
.consulting-benefits-card::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 14rem;
  opacity: 0;
  transform: translateY(20%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 1;
}
.consulting-benefits-card__index {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fa5a5a;
  margin-bottom: 2.4rem;
}
.consulting-benefits-card__title {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  margin-bottom: 2rem;
}
.consulting-benefits-card__text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.95);
  max-width: 46rem;
}
.consulting-benefits-card__text strong {
  display: inline-block;
  margin-top: 0.6rem;
  color: #fa5a5a;
}
.consulting-benefits-card__text + .consulting-benefits-card__text {
  margin-top: 1.4rem;
}
.consulting-benefits-card__arrow {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 7rem;
  height: 7rem;
  opacity: 0;
  transform: translate(40%, 40%);
  transition: opacity 0.35s ease, transform 0.35s ease;
  z-index: 2;
}
.consulting-benefits-card__arrow::before, .consulting-benefits-card__arrow::after {
  content: "";
  position: absolute;
  background-color: #fa5a5a;
}
.consulting-benefits-card__arrow::before {
  right: 0;
  bottom: 0;
  width: 100%;
  height: 40%;
}
.consulting-benefits-card__arrow::after {
  right: 0;
  bottom: 0;
  width: 40%;
  height: 100%;
}
.consulting-benefits-card:hover::before {
  opacity: 1;
  transform: translateY(0);
}
.consulting-benefits-card:hover .consulting-benefits-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.text-coral {
  color: #fa5a5a;
}

.click {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.8rem 2.4rem;
  margin-top: 1.4rem;
  border-radius: 9999px;
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-decoration: none;
  color: #ffffff;
  cursor: pointer;
}
.click::before, .click::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: all 0.45s ease;
}
.click::before {
  left: -3.2rem;
  top: 50%;
  width: 3.2rem;
  height: 0;
  border-bottom: 0.3rem solid #fa5a5a;
  transform: translateY(-50%);
  transform-origin: left center;
}
.click::after {
  right: -3.2rem;
  bottom: 0.2rem;
  width: 3.2rem;
  height: 1.6rem;
  border-bottom: 0.3rem solid #fa5a5a;
  border-right: 0.3rem solid #fa5a5a;
}
.click:hover::before {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 0.4rem solid #fa5a5a;
  border-right: 0.4rem solid #fa5a5a;
  transform: translateY(-50%) rotate(-45deg);
}
.click:hover::after {
  width: 4.4rem;
  height: 2.2rem;
}

.consulting-popup {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 1.6rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.consulting-popup__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.8);
}
.consulting-popup__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 96rem;
  max-height: 90vh;
  background-color: #252525;
  color: #ffffff;
  border-radius: 2.4rem;
  padding: 3.2rem 3.4rem;
  overflow: auto;
}
.consulting-popup__close {
  position: absolute;
  top: 2rem;
  right: 2.4rem;
  background: none;
  border: none;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
}
.consulting-popup__content {
  margin-top: 2.4rem;
  font-size: 1.6rem;
  line-height: 1.7;
}
.consulting-popup__content h3 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 1.6rem;
  color: #fa5a5a;
}
.consulting-popup__content p + p, .consulting-popup__content li + li {
  margin-top: 1rem;
}

.consulting-popup--visible {
  opacity: 1;
  pointer-events: auto;
}

@media (min-width: 48rem) {
  .consulting-benefits__title {
    font-size: 4.2rem;
  }
  .consulting-benefits__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 3.2rem;
  }
  .consulting-benefits-card {
    flex: 0 0 calc(50% - 1.6rem);
  }
}
@media (min-width: 64rem) {
  .consulting-benefits {
    padding-top: 12rem;
    padding-bottom: 14rem;
  }
  .consulting-benefits__title {
    font-size: 4.8rem;
  }
  .consulting-benefits-card {
    padding: 4rem 3.4rem 4.4rem;
  }
}
@media (min-width: 96rem) {
  .consulting-benefits-card {
    flex: 0 0 calc(25% - 2.4rem);
  }
  .consulting-benefits-card__title {
    font-size: 2.2rem;
  }
  .consulting-benefits-card__text {
    font-size: 1.6rem;
  }
}
html.is-popup-open,
body.is-popup-open {
  overflow: hidden;
}

.consulting-popup {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease, visibility 0.25s ease;
  font-family: "Unbounded", system-ui, sans-serif;
}
.consulting-popup--visible {
  opacity: 1;
  visibility: visible;
}

.consulting-popup__overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(0.4rem);
  cursor: pointer;
}

.consulting-popup__shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.consulting-popup__shape {
  position: absolute;
  opacity: 0.22;
}
.consulting-popup__shape svg {
  display: block;
  width: 22rem;
  height: auto;
}

.consulting-popup__dialog {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 120rem;
  max-height: 90vh;
  background-color: #ffffff;
  color: #252525;
  border-radius: 2.4rem;
  overflow: hidden;
  overflow-y: auto;
  box-shadow: 0 3.2rem 7rem rgba(0, 0, 0, 0.65);
  display: flex;
  flex-direction: column;
  scrollbar-width: thin;
  scrollbar-color: rgba(37, 37, 37, 0.22) transparent;
}

.consulting-popup__dialog::-webkit-scrollbar {
  width: 0.8rem;
}

.consulting-popup__dialog::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 2.4rem;
}

.consulting-popup__dialog::-webkit-scrollbar-thumb {
  background: rgba(37, 37, 37, 0.22);
  border-radius: 999px;
  border: 0.2rem solid transparent;
  background-clip: padding-box;
}

.consulting-popup__dialog::-webkit-scrollbar-button {
  display: none;
}

.consulting-popup__close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  width: 4.4rem;
  height: 4.4rem;
  border-radius: 999px;
  background-color: #fa5a5a;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  transition: background-color 0.2s ease, border-color 0.2s ease;
  z-index: 999;
}
.consulting-popup__close::before, .consulting-popup__close::after {
  content: "";
  position: absolute;
  width: 2.2rem;
  height: 0.22rem;
  background-color: currentColor;
  border-radius: 999px;
}
.consulting-popup__close::before {
  transform: rotate(45deg);
}
.consulting-popup__close::after {
  transform: rotate(-45deg);
}
.consulting-popup__close:hover {
  background-color: #252525;
  border-color: #252525;
}

.consulting-popup__header {
  position: relative;
  padding: 7rem 3.2rem;
  min-height: 28rem;
  background-image: url("https://ingoodstrategy.com/wp-content/themes/ingoodstrategy/assets/img/consulting/help.jpg");
  background-size: cover;
  background-position: center;
  text-align: center;
  color: #ffffff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.consulting-popup__header::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
}

.consulting-popup__header-inner {
  position: relative;
  z-index: 1;
  max-width: 80rem;
  margin: 0 auto;
}

.consulting-popup__title {
  font-size: clamp(3.2rem, 4.3vw, 4.4rem);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.consulting-popup__body {
  padding: 4rem 3.6rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}

.consulting-popup__intro {
  font-size: 1.8rem;
  line-height: 1.7;
  color: #252525;
  font-weight: 500;
  max-width: 80rem;
}

.consulting-popup__steps {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}

.consulting-popup__step {
  padding-top: 3.2rem;
  border-top: 0.1rem solid rgba(37, 37, 37, 0.2);
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}

.consulting-popup__step-meta {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.consulting-popup__step-tag {
  font-size: 1.6rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fa5a5a;
  font-weight: 700;
}

.consulting-popup__step-line {
  font-size: 2.8rem;
  line-height: 1.2;
  font-weight: 800;
  color: #252525;
}

.consulting-popup__step-content {
  font-size: 1.7rem;
  line-height: 1.75;
  color: #252525;
  font-weight: 400;
}
.consulting-popup__step-content p + p {
  margin-top: 1.4rem;
}

.text-coral {
  color: #fa5a5a;
}

@media (min-width: 64rem) {
  .consulting-popup__header {
    padding: 8rem 4.4rem;
    min-height: 32rem;
  }
  .consulting-popup__body {
    padding: 4.6rem 4.8rem;
  }
  .consulting-popup__step {
    flex-direction: row;
    gap: 5rem;
  }
  .consulting-popup__step-meta {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .consulting-popup__step-content {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .consulting-popup__step-line {
    font-size: 3.2rem;
  }
}
@media (max-width: 48rem) {
  .consulting-popup {
    padding: 1.6rem;
  }
  .consulting-popup__dialog {
    max-height: 92vh;
  }
  .consulting-popup__header {
    padding: 5rem 2.4rem;
    min-height: 24rem;
  }
  .consulting-popup__body {
    padding: 3.2rem 2.4rem;
  }
  .consulting-popup__title {
    font-size: 2.6rem;
  }
  .consulting-popup__step-line {
    font-size: 2.2rem;
  }
}
.consulting-stats {
  position: relative;
  background-color: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, sans-serif;
  padding: 12rem 0 14rem;
  overflow: hidden;
}
.consulting-stats__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
  position: static;
}
.consulting-stats__corner {
  position: absolute;
  width: 26rem;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
.consulting-stats__corner svg {
  display: block;
  width: 100%;
  height: auto;
  opacity: 0.3;
}
.consulting-stats__corner path {
  fill: #fa5a5a;
}
.consulting-stats__corner--top-left {
  top: -8.4rem;
  left: -5rem;
}
.consulting-stats__corner--top-left svg {
  transform-origin: center;
  transform: rotate(-135deg);
}
.consulting-stats__corner--bottom-right {
  right: -5rem;
  bottom: -8.4rem;
}
.consulting-stats__corner--bottom-right svg {
  transform-origin: center;
  transform: rotate(45deg);
}
.consulting-stats__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  row-gap: 9rem;
  -moz-column-gap: 12rem;
       column-gap: 12rem;
  margin-bottom: 9rem;
  position: relative;
  z-index: 1;
}
.consulting-stats__grid--bottom {
  margin-bottom: 0;
}
.consulting-stats__item {
  flex: 0 1 36rem;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.consulting-stats__label {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2.2rem;
}
.consulting-stats__number-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2.2rem;
}
.consulting-stats__number {
  font-size: 9.6rem;
  font-weight: 800;
  line-height: 1;
  color: #fa5a5a;
}
.consulting-stats__description {
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.8;
  max-width: 38rem;
}
.consulting-stats__cta {
  display: flex;
  justify-content: center;
  margin-top: 9rem;
  position: relative;
  z-index: 1;
}
.consulting-stats__cta-btn {
  position: relative;
  padding: 1.4rem 3rem;
  border-radius: 9999px;
  color: #252525;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.consulting-stats__cta-btn::before, .consulting-stats__cta-btn::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: all 0.45s ease;
}
.consulting-stats__cta-btn::before {
  left: -3.2rem;
  top: 50%;
  width: 3.2rem;
  height: 0;
  border-bottom: 0.3rem solid #fa5a5a;
  transform: translateY(-50%);
  transform-origin: left center;
}
.consulting-stats__cta-btn::after {
  right: -3.2rem;
  bottom: 0.2rem;
  width: 3.2rem;
  height: 1.6rem;
  border-bottom: 0.3rem solid #fa5a5a;
  border-right: 0.3rem solid #fa5a5a;
}
.consulting-stats__cta-btn:hover {
  opacity: 0.9;
}
.consulting-stats__cta-btn:hover::before {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 0.4rem solid #fa5a5a;
  border-right: 0.4rem solid #fa5a5a;
  transform: translateY(-50%) rotate(-45deg);
}
.consulting-stats__cta-btn:hover::after {
  width: 4.4rem;
  height: 2.2rem;
}
@media (max-width: 1199px) {
  .consulting-stats {
    padding: 10rem 0 12rem;
  }
  .consulting-stats__corner {
    width: 22rem;
  }
  .consulting-stats__corner--top-left {
    top: -4rem;
    left: -4rem;
  }
  .consulting-stats__corner--bottom-right {
    right: -4rem;
    bottom: -4rem;
  }
  .consulting-stats__grid {
    -moz-column-gap: 8rem;
         column-gap: 8rem;
    row-gap: 7rem;
    margin-bottom: 7rem;
  }
  .consulting-stats__item {
    flex: 0 1 32rem;
  }
  .consulting-stats__number {
    font-size: 8.2rem;
  }
}
@media (max-width: 768px) {
  .consulting-stats {
    padding: 8rem 0 10rem;
  }
  .consulting-stats__corner {
    width: 18rem;
  }
  .consulting-stats__corner--top-left {
    top: -3rem;
    left: -3rem;
  }
  .consulting-stats__corner--bottom-right {
    right: -3rem;
    bottom: -3rem;
  }
  .consulting-stats__grid {
    -moz-column-gap: 0;
         column-gap: 0;
    row-gap: 5.2rem;
    margin-bottom: 5.6rem;
  }
  .consulting-stats__item {
    flex: 0 1 100%;
    max-width: 100%;
  }
  .consulting-stats__label {
    font-size: 2.1rem;
  }
  .consulting-stats__number {
    font-size: 7.2rem;
  }
  .consulting-stats__description {
    font-size: 1.7rem;
    max-width: 34rem;
  }
  .consulting-stats__cta {
    margin-top: 6.5rem;
  }
}

.consulting-beliefs {
  background-color: #edebde;
  padding-top: 12rem;
  padding-bottom: 12rem;
}
.consulting-beliefs__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}
.consulting-beliefs__layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 6rem;
}
.consulting-beliefs__image-wrapper {
  flex: 0 0 50%;
  display: flex;
  align-items: stretch;
}
.consulting-beliefs__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom center;
     object-position: bottom center;
  display: block;
}
.consulting-beliefs__content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.consulting-beliefs__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.25;
  color: #252525;
  margin-bottom: 5rem;
  max-width: 80rem;
}
.consulting-beliefs__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
}
.consulting-beliefs__item {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.65;
  color: #252525;
  max-width: 70rem;
}
.consulting-beliefs__bullet {
  width: 2.2rem;
  height: auto;
  flex-shrink: 0;
  margin-top: 0.3rem;
}
.consulting-beliefs__bullet svg {
  width: 100%;
  height: auto;
}
.consulting-beliefs__bullet svg path {
  fill: #fa5a5a;
}

@media (max-width: 1199px) {
  .consulting-beliefs {
    padding-top: 10rem;
    padding-bottom: 10rem;
  }
  .consulting-beliefs__layout {
    flex-direction: column;
    gap: 6rem;
  }
  .consulting-beliefs__image-wrapper {
    max-width: 46rem;
    margin: 0 auto;
  }
  .consulting-beliefs__title {
    font-size: 3.2rem;
    max-width: 100%;
  }
  .consulting-beliefs__item {
    font-size: 1.8rem;
    max-width: 100%;
  }
  .consulting-beliefs__bullet {
    width: 2rem;
  }
}
@media (max-width: 768px) {
  .consulting-beliefs {
    padding-top: 8rem;
    padding-bottom: 8rem;
  }
  .consulting-beliefs__inner {
    padding-inline: 0;
  }
  .consulting-beliefs__title {
    font-size: 2.6rem;
    margin-bottom: 3.6rem;
  }
  .consulting-beliefs__list {
    gap: 2.8rem;
  }
  .consulting-beliefs__item {
    font-size: 1.65rem;
    gap: 1.4rem;
  }
  .consulting-beliefs__bullet {
    width: 1.8rem;
  }
}
.consulting-contact {
  position: relative;
  background-image: url("https://ingoodstrategy.com/wp-content/themes/ingoodstrategy/assets/img/consulting/banner.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
  font-family: "Unbounded", system-ui, sans-serif;
  padding: 10rem 0;
}
.consulting-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.45);
  z-index: 0;
}
.consulting-contact__inner {
  position: relative;
  z-index: 1;
  max-width: 160rem;
  margin: 0 auto;
}
.consulting-contact__layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 6rem;
}
.consulting-contact__form-wrapper {
  flex: 0 0 50%;
  display: flex;
  align-items: center;
}
.consulting-contact__form-card {
  width: 100%;
  max-width: 74rem;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 1.8rem;
  padding: 3.6rem 3.8rem 3.4rem;
  color: #252525;
  display: flex;
  flex-direction: column;
}
.consulting-contact__form-title {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 3.4rem;
}
.consulting-contact__form {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.consulting-contact__field {
  display: flex;
  flex-direction: column;
}
.consulting-contact__field--checkbox {
  margin-top: 0.4rem;
}
.consulting-contact__label {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
  color: rgba(37, 37, 37, 0.9);
}
.consulting-contact__input {
  width: 100%;
  border-radius: 0.7rem;
  border: 0.1rem solid rgba(0, 0, 0, 0.08);
  background-color: rgba(255, 255, 255, 0.96);
  padding: 1.2rem 1.4rem;
  font-size: 1.4rem;
  font-family: inherit;
  color: #252525;
  outline: none;
}
.consulting-contact__input::-moz-placeholder {
  color: rgba(37, 37, 37, 0.5);
}
.consulting-contact__input::placeholder {
  color: rgba(37, 37, 37, 0.5);
}
.consulting-contact__checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 0.8rem;
  font-size: 1.1rem;
  color: rgba(37, 37, 37, 0.9);
}
.consulting-contact__checkbox {
  margin-top: 0.2rem;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 0.2rem;
  border: 0.1rem solid rgba(37, 37, 37, 0.4);
}
.consulting-contact__checkbox-text {
  line-height: 1.5;
  max-width: 46rem;
  font-family: "Unbounded", system-ui, sans-serif;
}
.consulting-contact__submit {
  margin-top: 1.2rem;
  width: 100%;
  border-radius: 9999px;
  border: none;
  background-color: #000000;
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 1.4rem 2rem;
  cursor: pointer;
}
.consulting-contact__content {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  max-width: none;
}
.consulting-contact__title {
  font-size: 4.4rem;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 2.6rem;
  color: #ffffff !important;
}
.consulting-contact__text {
  font-size: 1.7rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 2.6rem;
  max-width: 44rem;
  font-family: "Unbounded", system-ui, sans-serif;
}
.consulting-contact__signature {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 4.6rem;
  font-family: "Unbounded", system-ui, sans-serif;
}
.consulting-contact__arrows {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
}
.consulting-contact__arrow {
  width: 30rem;
  height: auto;
  flex-shrink: 0;
}
.consulting-contact__arrow svg {
  display: block;
  width: 100%;
  height: auto;
}
.consulting-contact__arrow + .consulting-contact__arrow {
  margin-left: -24rem;
  margin-top: 5rem;
}

@media (max-width: 1024px) {
  .consulting-contact {
    padding: 8rem 0;
  }
  .consulting-contact__layout {
    flex-direction: column;
    align-items: stretch;
  }
  .consulting-contact__form-wrapper {
    flex: 0 1 auto;
    justify-content: center;
  }
  .consulting-contact__form-card {
    max-width: 100%;
  }
  .consulting-contact__content {
    margin-top: 4rem;
    max-width: 100%;
  }
  .consulting-contact__arrows {
    margin-top: 2rem;
  }
}
@media (max-width: 640px) {
  .consulting-contact {
    padding: 6rem 0;
  }
  .consulting-contact__form-card {
    padding: 2.8rem 2.4rem 2.6rem;
  }
  .consulting-contact__form-title {
    font-size: 2.8rem;
    margin-bottom: 2.6rem;
  }
  .consulting-contact__title {
    font-size: 3.4rem;
  }
  .consulting-contact__text {
    font-size: 1.6rem;
  }
  .consulting-contact__arrow {
    width: 20rem;
  }
  .consulting-contact__arrow + .consulting-contact__arrow {
    margin-left: -10rem;
  }
}
.ecosystem-hero {
  width: 100%;
  min-height: 91vh;
  background-color: #ffffff;
  color: #252525;
  padding: 6rem 0;
  font-family: "Space Grotesk", system-ui, sans-serif;
}
.ecosystem-hero__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}
.ecosystem-hero__layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.ecosystem-hero__content {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  font-family: "Unbounded", system-ui, sans-serif;
}
.ecosystem-hero__title {
  font-size: clamp(3rem, 4vw, 4.6rem);
  line-height: 1.18;
  font-weight: 700;
  color: #000000;
}
.ecosystem-hero__title-highlight {
  color: #fa5a5a;
}
.ecosystem-hero__lead {
  font-size: clamp(1.6rem, 1.5vw, 1.8rem);
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.9);
  max-width: 62rem;
}
.ecosystem-hero__nav {
  margin-top: 2.4rem;
}
.ecosystem-hero__image-inner {
  position: relative;
  width: 100%;
  height: 38rem;
  border-top-left-radius: 30rem;
  overflow: hidden;
}
.ecosystem-hero__image-bg {
  width: 100%;
  height: 100%;
  background-image: url("https://ingoodstrategy.com/wp-content/themes/ingoodstrategy/assets/img/hero/hero.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.ecosystem-hero__triangles {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 14rem;
  height: 14rem;
}
.ecosystem-hero__triangle {
  position: absolute;
  inset: 0;
}
.ecosystem-hero__triangle--white path {
  fill: #ffffff;
}
.ecosystem-hero__triangle--coral {
  transform: rotate(180deg) translateY(100%);
  transform-origin: left bottom;
}
.ecosystem-hero__triangle--coral path {
  fill: #fa5a5a;
}

@media (min-width: 64rem) {
  .ecosystem-hero {
    padding: 0;
  }
  .ecosystem-hero__inner {
    min-height: 100vh;
    display: flex;
    align-items: stretch;
  }
  .ecosystem-hero__layout {
    flex-direction: row-reverse;
    gap: 6rem;
  }
  .ecosystem-hero__image-inner {
    height: 91vh;
  }
  .ecosystem-hero__triangles {
    width: 18rem;
    height: 18rem;
  }
  .ecosystem-hero__content {
    padding-top: 10rem;
    padding-bottom: 6rem;
  }
}
@media (max-width: 48rem) {
  .ecosystem-hero {
    padding: 5rem 0;
  }
  .ecosystem-hero__layout {
    gap: 3.2rem;
  }
  .ecosystem-hero__image-inner {
    height: 46rem;
    border-top-left-radius: 20rem;
  }
  .ecosystem-hero__triangles {
    width: 11rem;
    height: 11rem;
  }
  .ecosystem-hero .structure-hero__nav-link {
    display: block;
    width: 100%;
    text-align: center;
    padding: 1.4rem 2rem;
    font-size: 1.1rem;
  }
}
@media (max-width: 40rem) {
  .ecosystem-hero {
    padding: 4.2rem 0;
  }
  .ecosystem-hero__image-inner {
    height: 52rem;
    border-top-left-radius: 16rem;
  }
  .ecosystem-hero__triangles {
    width: 9rem;
    height: 9rem;
  }
  .ecosystem-hero .ecosystem-hero__content .structure-hero__nav-link:last-child {
    width: 100%;
    font-size: 1rem;
    padding: 1.2rem 1.6rem;
  }
  .ecosystem-hero .ecosystem-hero__content .structure-hero__nav-link:last-child::after {
    display: none;
  }
}
.ecosystem-banner {
  width: 100%;
  background-color: #ffffff;
  color: #252525;
  padding: 8rem 0 10rem;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-banner__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}
.ecosystem-banner__head {
  margin-bottom: 4.8rem;
  text-align: center;
}
.ecosystem-banner__label-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 1.6rem;
}
.ecosystem-banner__label {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.7);
}
.ecosystem-banner__title {
  font-size: 3.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fa5a5a;
  text-align: center;
}
.ecosystem-banner__lead {
  margin-top: 2.4rem;
  font-size: 1.7rem;
  line-height: 1.7;
  font-weight: 400;
  color: #252525;
  text-align: center;
}
.ecosystem-banner__media {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3.6rem;
}
.ecosystem-banner__frame {
  width: 100%;
  display: flex;
  justify-content: center;
}
.ecosystem-banner__frame-inner {
  position: relative;
  width: 100%;
  max-width: 120rem;
  margin: 0 auto;
  border: 0.2rem solid rgba(37, 37, 37, 0.1);
  padding: 1.6rem;
  background-color: #ffffff;
}
.ecosystem-banner__frame-inner::before {
  content: "";
  position: absolute;
  left: 2.4rem;
  right: 2.4rem;
  top: 1.2rem;
  height: 0.2rem;
  background-color: #b54eff;
}
.ecosystem-banner__frame-inner::after {
  content: "";
  position: absolute;
  left: 2.4rem;
  right: 2.4rem;
  bottom: 1.2rem;
  height: 0.2rem;
  background-color: #fa5a5a;
}
.ecosystem-banner__image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.ecosystem-banner__actions {
  width: 100%;
  display: flex;
  justify-content: center;
}
.ecosystem-banner__button {
  margin-top: 0.4rem;
}
.ecosystem-banner__button-text {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 64rem) {
  .ecosystem-banner {
    padding: 8rem 0;
  }
  .ecosystem-banner__inner {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .ecosystem-banner__head {
    margin-bottom: 5.6rem;
  }
  .ecosystem-banner__title {
    font-size: 4.2rem;
  }
  .ecosystem-banner__lead {
    font-size: 1.8rem;
  }
  .ecosystem-banner__frame-inner {
    padding: 2rem;
  }
  .ecosystem-banner__frame-inner::before, .ecosystem-banner__frame-inner::after {
    left: 3.2rem;
    right: 3.2rem;
  }
}
@media (max-width: 48rem) {
  .ecosystem-banner {
    padding: 6rem 0 8rem;
  }
  .ecosystem-banner__title {
    font-size: 3rem;
  }
  .ecosystem-banner__frame-inner {
    padding: 1.2rem;
  }
  .ecosystem-banner__frame-inner::before, .ecosystem-banner__frame-inner::after {
    left: 1.6rem;
    right: 1.6rem;
  }
}
.ecosystem-intro {
  width: 100%;
  background-color: #ffffff;
  color: #252525;
  padding: 8rem 0 9rem;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-intro__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}
.ecosystem-intro__tag {
  display: inline-block;
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.7);
  margin-bottom: 1.6rem;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-intro__title {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fa5a5a;
  margin-bottom: 1.8rem;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-intro__text {
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 400;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-intro__highlight {
  color: #fa5a5a;
  font-weight: 700;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-intro__bottom {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  align-items: flex-start;
}
.ecosystem-intro__bottom-item {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.ecosystem-intro__line {
  display: block;
  width: 16rem;
  height: 0.2rem;
  background-color: rgba(37, 37, 37, 0.16);
}
.ecosystem-intro__bottom-label {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #252525;
}
.ecosystem-intro__bottom-text {
  font-size: 1.6rem;
  line-height: 1.8;
  font-weight: 400;
  color: rgba(37, 37, 37, 0.9);
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-intro__bottom-text p {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (min-width: 64rem) {
  .ecosystem-intro {
    padding: 10rem 0 11rem;
  }
  .ecosystem-intro__title {
    font-size: 4.4rem;
  }
  .ecosystem-intro__text {
    font-size: 1.9rem;
  }
  .ecosystem-intro__bottom {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
  .ecosystem-intro__bottom-item {
    flex: 0 0 auto;
  }
  .ecosystem-intro__bottom-text {
    flex: 1 1 auto;
    font-size: 1.7rem;
  }
}
@media (max-width: 48rem) {
  .ecosystem-intro {
    padding: 6rem 0 7rem;
  }
  .ecosystem-intro__title {
    font-size: 3.2rem;
  }
  .ecosystem-intro__text {
    font-size: 1.7rem;
  }
  .ecosystem-intro__bottom {
    gap: 2rem;
  }
  .ecosystem-intro__line {
    width: 12rem;
  }
}
.ecosystem-moments {
  width: 100%;
  background-color: #ffffff;
  color: #252525;
  padding: 8rem 0 9rem;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-moments__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}
.ecosystem-moments__layout {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  align-items: stretch;
}
.ecosystem-moments__column {
  width: 100%;
}
.ecosystem-moments__image-wrapper {
  width: 100%;
  overflow: hidden;
}
.ecosystem-moments__image {
  display: block;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.ecosystem-moments__text-row {
  margin-top: 2.4rem;
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
}
.ecosystem-moments__icon {
  width: 2.4rem;
  height: 2.4rem;
  flex: 0 0 2.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ecosystem-moments__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ecosystem-moments__icon svg path {
  fill: #fa5a5a;
}
.ecosystem-moments__text {
  font-size: 1.6rem;
  line-height: 1.7;
  font-weight: 400;
  color: #252525;
}
.ecosystem-moments__text strong {
  font-weight: 700;
}

@media (min-width: 64rem) {
  .ecosystem-moments {
    padding: 0rem 0 11rem;
  }
  .ecosystem-moments__layout {
    flex-direction: row;
    align-items: stretch;
    gap: 6rem;
  }
  .ecosystem-moments__column--left {
    flex: 0 0 50%;
    display: flex;
    align-items: flex-end;
  }
  .ecosystem-moments__column--right {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }
  .ecosystem-moments__image-wrapper--top {
    margin-bottom: 2.4rem;
  }
  .ecosystem-moments__text {
    font-size: 1.7rem;
  }
}
@media (max-width: 48rem) {
  .ecosystem-moments {
    padding: 6rem 0 7rem;
  }
  .ecosystem-moments__layout {
    gap: 3rem;
  }
  .ecosystem-moments__text-row {
    margin-top: 2rem;
  }
  .ecosystem-moments__text {
    font-size: 1.5rem;
  }
}
.ecosystem-connect {
  position: relative;
  width: 100%;
  padding: 13rem 0 12rem;
  background-color: #edebde;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-connect__bg-svg {
  position: absolute;
  left: 0;
  top: 0;
  width: 28rem;
  height: 28rem;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
  transform: rotate(90deg);
}
.ecosystem-connect__bg-svg svg {
  width: 100%;
  height: 100%;
  display: block;
}
.ecosystem-connect__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}
.ecosystem-connect__top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 3.6rem;
  margin-bottom: 5.5rem;
}
.ecosystem-connect__headline {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 62rem;
}
.ecosystem-connect__tag {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.7);
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-connect__title {
  font-size: 3.4rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-connect__title-line {
  display: block;
}
.ecosystem-connect__title-line--highlight {
  color: #fa5a5a;
}
.ecosystem-connect__description {
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(37, 37, 37, 0.9);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  max-width: 60rem;
}
.ecosystem-connect__cards {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 3rem;
}
.ecosystem-connect__card {
  position: relative;
  flex: 1 1 auto;
  border: 0.2rem solid #fa5a5a;
  border-radius: 0;
  border-bottom-left-radius: 4.4rem;
  border-top-right-radius: 4.4rem;
  background-color: #edebde;
  padding: 5rem 3.6rem 4.2rem;
}
.ecosystem-connect__card-pin {
  position: absolute;
  left: -0.2rem;
  top: -0.2rem;
  width: 7.2rem;
  height: 7.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.ecosystem-connect__card-pin svg {
  width: 100%;
  height: 100%;
  display: block;
  transform: rotate(225deg);
  transform-origin: center;
}
.ecosystem-connect__card-pin svg path {
  fill: #fa5a5a;
}
.ecosystem-connect__card-body {
  display: flex;
  align-items: flex-end;
  height: 100%;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-connect__card-title {
  font-size: 2rem;
  line-height: 1.4;
  font-weight: 600;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

@media (min-width: 64rem) {
  .ecosystem-connect {
    padding: 14rem 0 13rem;
  }
  .ecosystem-connect__bg-svg {
    width: 30rem;
    height: 30rem;
  }
  .ecosystem-connect__top {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8rem;
    margin-bottom: 6rem;
  }
  .ecosystem-connect__headline {
    flex: 0 0 45%;
    max-width: none;
  }
  .ecosystem-connect__title {
    font-size: 4rem;
  }
  .ecosystem-connect__description {
    flex: 0 0 40%;
    max-width: none;
    font-size: 1.7rem;
  }
  .ecosystem-connect__description p {
    font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  }
  .ecosystem-connect__cards {
    flex-direction: row;
    align-items: stretch;
    gap: 3.2rem;
    margin-top: 1rem;
  }
  .ecosystem-connect__card {
    flex: 1 1 0;
    padding: 5.4rem 4rem 4.6rem;
  }
  .ecosystem-connect__card-pin {
    width: 7.8rem;
    height: 7.8rem;
    left: -4.5rem;
    top: -4.5rem;
  }
  .ecosystem-connect__card-title {
    font-size: 2.1rem;
  }
}
@media (max-width: 48rem) {
  .ecosystem-connect {
    padding: 12rem 0 9rem;
  }
  .ecosystem-connect__bg-svg {
    width: 22rem;
    height: 22rem;
  }
  .ecosystem-connect__title {
    font-size: 3.1rem;
  }
  .ecosystem-connect__description {
    font-size: 1.5rem;
  }
  .ecosystem-connect__cards {
    gap: 2.6rem;
  }
  .ecosystem-connect__card {
    padding: 4.2rem 2.8rem 3.6rem;
  }
  .ecosystem-connect__card-pin {
    width: 6.4rem;
    height: 6.4rem;
    left: -0.2rem;
    top: -0.2rem;
  }
  .ecosystem-connect__card-title {
    font-size: 1.9rem;
  }
}
.ecosystem-map {
  width: 100%;
  padding: 8rem 0 10rem;
  background-color: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-map__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}
.ecosystem-map__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.4rem;
  margin-bottom: 3.6rem;
}
.ecosystem-map__eyebrow {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.7);
}
.ecosystem-map__title {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-map__title-highlight {
  color: #fa5a5a;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-map__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  margin-bottom: 3.4rem;
}
.ecosystem-map__tab {
  padding: 1.1rem 2.6rem;
  border-radius: 999px;
  border: 0.1rem solid rgba(250, 90, 90, 0.35);
  background-color: #ffffff;
  font-size: 1.4rem;
  font-weight: 500;
  cursor: pointer;
  color: rgba(37, 37, 37, 0.9);
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}
.ecosystem-map__tab:hover {
  transform: translateY(-1px);
  box-shadow: 0 0.8rem 1.8rem rgba(37, 37, 37, 0.05);
}
.ecosystem-map__tab.is-active {
  background-color: #fa5a5a;
  color: #ffffff;
  border-color: transparent;
  box-shadow: 0 1.6rem 3.4rem rgba(250, 90, 90, 0.35);
}
.ecosystem-map__panels {
  width: 100%;
}
.ecosystem-map__panel {
  margin-top: 0.8rem;
  border-radius: 4.8rem;
  background-color: #edebde;
  padding: 3.2rem 3.4rem;
  transition: opacity 0.2s ease, transform 0.2s ease;
  opacity: 0;
  transform: translateY(0.8rem);
  pointer-events: none;
}
.ecosystem-map__panel.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.ecosystem-map__panel[hidden] {
  display: none;
}
.ecosystem-map__matrix {
  width: 100%;
}
.ecosystem-map__row {
  display: flex;
  align-items: stretch;
  gap: 2.4rem;
}
.ecosystem-map__label {
  flex: 0 0 18rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #252525;
  opacity: 0.9;
}
.ecosystem-map__cell {
  position: relative;
  flex: 0 0 auto;
  max-width: 32rem;
  min-width: 24rem;
  display: flex;
  align-items: center;
  padding: 2.2rem 2.6rem 2.2rem 3.8rem;
  border-radius: 3.2rem;
  background-color: #ffffff;
  box-shadow: 0 1.6rem 3.4rem rgba(37, 37, 37, 0.06);
  font-size: 1.5rem;
  line-height: 1.6;
  color: rgba(37, 37, 37, 0.96);
}
.ecosystem-map__cell > * {
  z-index: 1;
}
.ecosystem-map__cell::before {
  content: "";
  position: absolute;
  left: 1.7rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: radial-gradient(circle at center, rgba(250, 90, 90, 0.98) 0, rgba(250, 90, 90, 0.98) 45%, rgba(250, 90, 90, 0.12) 46%, rgba(250, 90, 90, 0) 100%);
}
.ecosystem-map__cell em {
  font-style: italic;
}
.ecosystem-map__row > .ecosystem-map__cell:last-child:first-of-type {
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 64rem) {
  .ecosystem-map {
    padding: 9rem 0 12rem;
  }
  .ecosystem-map__title {
    font-size: 4.2rem;
  }
  .ecosystem-map__panel {
    padding: 3.4rem 4rem;
  }
  .ecosystem-map__row {
    gap: 3rem;
  }
  .ecosystem-map__label {
    flex: 0 0 20rem;
    font-size: 1.6rem;
  }
  .ecosystem-map__cell {
    min-height: 11.5rem;
    font-size: 1.6rem;
  }
}
@media (max-width: 63.9375rem) {
  .ecosystem-map {
    padding: 7rem 0 9rem;
  }
  .ecosystem-map__title {
    font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 3.2rem;
  }
  .ecosystem-map__nav {
    gap: 0.9rem;
    margin-bottom: 3rem;
  }
  .ecosystem-map__panel {
    border-radius: 3.2rem;
    padding: 2.6rem 2.4rem;
  }
  .ecosystem-map__row {
    flex-direction: column;
    gap: 2rem;
  }
  .ecosystem-map__label {
    flex: 0 0 auto;
    font-size: 1.4rem;
  }
  .ecosystem-map__cell {
    flex: 1 1 100%;
    max-width: none;
    min-width: 0;
    width: 100%;
  }
  .ecosystem-map__row > .ecosystem-map__cell:last-child:first-of-type {
    margin-left: 0;
    margin-right: 0;
  }
}
.ecosystem-form {
  width: 100% !important;
  padding: 8rem 0 10rem !important;
  background-color: #000000 !important;
  color: #ffffff !important;
  font-family: "Unbounded", system-ui, sans-serif !important;
}
.ecosystem-form__inner {
  width: 100% !important;
  max-width: 160rem !important;
  margin: 0 auto !important;
}
.ecosystem-form__head {
  margin-bottom: 4rem !important;
}
.ecosystem-form__eyebrow {
  font-family: "Unbounded", system-ui, sans-serif !important;
  font-size: 1.3rem !important;
  letter-spacing: 0.18em !important;
  text-transform: uppercase !important;
  color: rgba(255, 255, 255, 0.7) !important;
  margin-bottom: 1.6rem !important;
}
.ecosystem-form__title {
  font-family: "Unbounded", system-ui, sans-serif !important;
  font-size: 3.6rem !important;
  line-height: 1.15 !important;
  font-weight: 700 !important;
  color: #ffffff !important;
}
.ecosystem-form__title-highlight {
  color: #fa5a5a !important;
}
.ecosystem-form__component {
  margin-top: 4.4rem !important;
  background-color: #edebde !important;
  border-radius: 2.4rem !important;
  padding: 4rem 3.6rem 4.8rem !important;
  box-shadow: 0 3rem 8rem rgba(0, 0, 0, 0.45) !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 3.2rem !important;
}
.ecosystem-form__steps {
  display: flex !important;
  flex-wrap: nowrap !important;
  gap: 1.6rem !important;
  overflow-x: auto !important;
  padding-bottom: 0.4rem !important;
  justify-content: center !important;
}
.ecosystem-form__step {
  flex: 0 0 auto !important;
  border-radius: 999px !important;
  border: 0.16rem solid rgba(250, 90, 90, 0.3) !important;
  background-color: #ffffff !important;
  padding: 1.1rem 1.8rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: 1.4rem !important;
  cursor: pointer !important;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.12s ease !important;
  font-family: "Unbounded", system-ui, sans-serif !important;
  font-size: 1.2rem !important;
  text-transform: uppercase !important;
  letter-spacing: 0.14em !important;
  color: rgba(37, 37, 37, 0.8) !important;
  white-space: nowrap !important;
}
.ecosystem-form__step-index {
  font-weight: 600 !important;
  color: #fa5a5a !important;
}
.ecosystem-form__step-label {
  font-weight: 500 !important;
}
.ecosystem-form__step.is-active, .ecosystem-form__step[aria-selected=true] {
  background-color: #fa5a5a !important;
  border-color: #fa5a5a !important;
  color: #ffffff !important;
}
.ecosystem-form__step.is-active .ecosystem-form__step-index, .ecosystem-form__step[aria-selected=true] .ecosystem-form__step-index {
  color: #ffffff !important;
}
.ecosystem-form__form {
  display: block !important;
  color: #252525 !important;
}
.ecosystem-form__fieldset {
  border: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  display: none !important;
  animation: ecosystem-form-fade 0.25s ease !important;
}
.ecosystem-form__fieldset.is-active {
  display: block !important;
}
.ecosystem-form__grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 2.4rem 3.2rem !important;
}
.ecosystem-form__field {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.8rem !important;
}
.ecosystem-form__field--extra-info {
  margin-top: 2.8rem !important;
}
.ecosystem-form__field--pr-other {
  margin-top: 1.6rem !important;
}
.ecosystem-form__field--pr-other .ecosystem-form__input {
  padding-top: 1.6rem !important;
  padding-bottom: 1.6rem !important;
}
.ecosystem-form__label {
  font-family: "Unbounded", system-ui, sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 500 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  color: rgba(37, 37, 37, 0.8) !important;
}
.ecosystem-form__label-note {
  display: inline-block !important;
  margin-left: 0.8rem !important;
  font-size: 1.2rem !important;
  font-weight: 400 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  color: rgba(37, 37, 37, 0.7) !important;
}
.ecosystem-form__input, .ecosystem-form__select, .ecosystem-form__textarea {
  width: 100% !important;
  border-radius: 1.4rem !important;
  border: 0.16rem solid rgba(37, 37, 37, 0.12) !important;
  background-color: #ffffff !important;
  padding: 1.2rem 1.6rem !important;
  font-size: 1.5rem !important;
  line-height: 1.5 !important;
  color: #252525 !important;
  transition: border-color 0.2s ease, background-color 0.2s ease !important;
  font-family: "Unbounded", system-ui, sans-serif !important;
}
.ecosystem-form__input::-moz-placeholder, .ecosystem-form__textarea::-moz-placeholder {
  color: rgba(37, 37, 37, 0.45) !important;
}
.ecosystem-form__input::placeholder, .ecosystem-form__textarea::placeholder {
  color: rgba(37, 37, 37, 0.45) !important;
}
.ecosystem-form__input:focus, .ecosystem-form__select:focus, .ecosystem-form__textarea:focus {
  outline: none !important;
  border-color: #fa5a5a !important;
  background-color: #ffffff !important;
}
.ecosystem-form__select {
  -webkit-appearance: none !important;
     -moz-appearance: none !important;
          appearance: none !important;
  background-image: linear-gradient(45deg, transparent 50%, #fa5a5a 50%), linear-gradient(135deg, #fa5a5a 50%, transparent 50%) !important;
  background-position: calc(100% - 1.7rem) 1.6rem, calc(100% - 1.2rem) 1.6rem !important;
  background-size: 0.7rem 0.7rem, 0.7rem 0.7rem !important;
  background-repeat: no-repeat !important;
  padding-right: 3.6rem !important;
  font-family: "Unbounded", system-ui, sans-serif !important;
}
.ecosystem-form__textarea {
  resize: vertical !important;
  min-height: 9rem !important;
  font-family: "Unbounded", system-ui, sans-serif !important;
}
.ecosystem-form__options {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.2rem !important;
}
.ecosystem-form__options--grid {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 1.2rem 1.6rem !important;
}
.ecosystem-form__options--list {
  display: flex !important;
  flex-direction: column !important;
  gap: 1.2rem !important;
}
.ecosystem-form__option {
  position: relative !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 0.9rem !important;
  cursor: pointer !important;
  font-size: 1.5rem !important;
  line-height: 1.5 !important;
  color: #252525 !important;
  font-family: "Unbounded", system-ui, sans-serif !important;
}
.ecosystem-form__option input {
  position: absolute !important;
  opacity: 0 !important;
  pointer-events: none !important;
}
.ecosystem-form__option span {
  position: relative !important;
  padding-left: 2.6rem !important;
}
.ecosystem-form__option span::before {
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0.2rem !important;
  width: 1.6rem !important;
  height: 1.6rem !important;
  border-radius: 0.6rem !important;
  border: 0.16rem solid rgba(37, 37, 37, 0.25) !important;
  background-color: #ffffff !important;
  transition: border-color 0.2s ease, background-color 0.2s ease !important;
}
.ecosystem-form__option span::after {
  content: "" !important;
  position: absolute !important;
  left: 0.45rem !important;
  top: 0.65rem !important;
  width: 0.7rem !important;
  height: 0.35rem !important;
  border-left: 0.16rem solid #ffffff !important;
  border-bottom: 0.16rem solid #ffffff !important;
  transform: rotate(-45deg) !important;
  opacity: 0 !important;
  transition: opacity 0.2s ease !important;
}
.ecosystem-form__option input:checked + span::before {
  background-color: #fa5a5a !important;
  border-color: #fa5a5a !important;
}
.ecosystem-form__option input:checked + span::after {
  opacity: 1 !important;
}
.ecosystem-form__nav {
  display: flex !important;
  justify-content: flex-end !important;
  gap: 1.6rem !important;
  margin-top: 3rem !important;
}
.ecosystem-form__button {
  position: relative !important;
  border-radius: 999px !important;
  border: none !important;
  cursor: pointer !important;
  padding: 1.2rem 2.8rem !important;
  font-family: "Unbounded", system-ui, sans-serif !important;
  font-size: 1.4rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.8rem !important;
  background-color: #ffffff !important;
  color: #252525 !important;
  transition: background-color 0.2s ease, color 0.2s ease, transform 0.12s ease !important;
}
.ecosystem-form__button--prev {
  background-color: transparent !important;
  color: rgba(37, 37, 37, 0.8) !important;
  border: 0.16rem solid rgba(37, 37, 37, 0.25) !important;
}
.ecosystem-form__button--next {
  background-color: #fa5a5a !important;
  color: #ffffff !important;
}
.ecosystem-form__button--submit {
  background-color: #000000 !important;
  color: #ffffff !important;
  border: 0.16rem solid #000000 !important;
}
.ecosystem-form__button:hover {
  transform: translateY(-0.1rem) !important;
}
.ecosystem-form__button:active {
  transform: translateY(0) !important;
}

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

@keyframes ecosystem-form-fade {
  from {
    opacity: 0;
    transform: translateY(0.4rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (min-width: 64rem) {
  .ecosystem-form {
    padding: 10rem 0 12rem !important;
  }
  .ecosystem-form__title {
    font-size: 4.4rem !important;
  }
  .ecosystem-form__component {
    padding: 4.4rem 4.4rem 5.2rem !important;
  }
  .ecosystem-form__steps {
    gap: 2rem !important;
  }
  .ecosystem-form__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 2.8rem 4rem !important;
  }
  .ecosystem-form__options--grid {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}
@media (max-width: 48rem) {
  .ecosystem-form {
    padding: 7rem 0 9rem !important;
  }
  .ecosystem-form__title {
    font-size: 3.2rem !important;
  }
  .ecosystem-form__component {
    padding: 3.2rem 2.4rem 3.8rem !important;
  }
  .ecosystem-form__grid {
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 2rem !important;
  }
  .ecosystem-form__options--grid {
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .ecosystem-form__nav {
    flex-direction: column-reverse !important;
    align-items: stretch !important;
  }
  .ecosystem-form__button {
    width: 100% !important;
    justify-content: center !important;
  }
}
.ecosystem-idea {
  width: 100%;
  padding: 8rem 0 10rem;
  background-color: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-idea__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}
.ecosystem-idea__eyebrow {
  font-size: 1.3rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.6);
  margin-bottom: 1.6rem;
}
.ecosystem-idea__title {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #fa5a5a;
  margin: 0;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-idea__content {
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  margin-top: 4.2rem;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-idea__text {
  flex: 1 1 auto;
  font-size: 1.6rem;
  line-height: 1.8;
  color: rgba(37, 37, 37, 0.9);
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-idea__text p {
  margin: 0;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-idea__image {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
}
.ecosystem-idea__image img {
  width: auto;
  max-width: 40rem;
  height: auto;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 2.4rem;
  display: block;
}

@media (min-width: 64rem) {
  .ecosystem-idea {
    padding: 10rem 0 12rem;
  }
  .ecosystem-idea__title {
    font-size: 4.4rem;
  }
  .ecosystem-idea__content {
    flex-direction: row;
    align-items: flex-start;
    gap: 4.8rem;
  }
  .ecosystem-idea__text {
    flex: 1 1 58%;
    font-size: 1.7rem;
  }
  .ecosystem-idea__image {
    flex: 0 0 38%;
    display: flex;
    justify-content: flex-start;
  }
  .ecosystem-idea__image img {
    width: 100%;
    height: auto;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media (max-width: 48rem) {
  .ecosystem-idea {
    padding: 7rem 0 9rem;
  }
  .ecosystem-idea__title {
    font-size: 3.2rem;
  }
  .ecosystem-idea__content {
    gap: 3rem;
  }
  .ecosystem-idea__image {
    max-width: 100%;
  }
  .ecosystem-idea__image img {
    width: 100%;
    height: auto;
    max-height: none;
    border-radius: 2.4rem;
  }
}
.ecosystem-forbes {
  width: 100%;
  padding: 8rem 0;
  background-color: #ffffff;
  color: #252525;
  font-family: "Space Grotesk", system-ui, sans-serif;
}
.ecosystem-forbes__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 7rem;
}
.ecosystem-forbes__item {
  display: flex;
  flex-direction: column;
  gap: 3.2rem;
}
.ecosystem-forbes__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 3rem;
}
.ecosystem-forbes__heading {
  font-size: 3rem;
  line-height: 1.25;
  font-weight: 600;
  color: #000000;
  max-width: 80rem;
}
.ecosystem-forbes__heading h2 {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-forbes__logo {
  flex: 0 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
}
.ecosystem-forbes__logo img {
  max-height: 6rem;
  width: auto;
  display: block;
}
.ecosystem-forbes__body {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.45fr);
  align-items: flex-start;
  gap: 4rem;
}
.ecosystem-forbes__body--media-left {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1.45fr);
}
.ecosystem-forbes__media {
  width: 100%;
  border-radius: 3.2rem;
  overflow: hidden;
  background-color: #000;
}
.ecosystem-forbes__media img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.ecosystem-forbes__media--video {
  background-color: #000;
}
.ecosystem-forbes__video-ratio {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}
.ecosystem-forbes__video-ratio iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.ecosystem-forbes__content {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  font-size: 2rem;
  line-height: 1.9;
  color: rgba(37, 37, 37, 0.92);
  width: 100%;
  max-width: 100%;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-forbes__content p {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.ecosystem-forbes__highlight {
  background: #000000;
  color: #ffffff;
  padding: 0.25rem 0.6rem;
  border-radius: 0.6rem;
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

@media (min-width: 96rem) {
  .ecosystem-forbes {
    padding: 9rem 0;
  }
  .ecosystem-forbes__heading {
    font-size: 3.6rem;
  }
  .ecosystem-forbes__content {
    font-size: 2.1rem;
    line-height: 1.95;
  }
}
@media (max-width: 64rem) {
  .ecosystem-forbes {
    padding: 6rem 0;
  }
  .ecosystem-forbes__inner {
    gap: 5.5rem;
  }
  .ecosystem-forbes__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.6rem;
  }
  .ecosystem-forbes__heading {
    font-size: 2.6rem;
  }
  .ecosystem-forbes__logo img {
    max-height: 4.6rem;
  }
  .ecosystem-forbes__body {
    grid-template-columns: minmax(0, 1fr);
    gap: 2.8rem;
  }
  .ecosystem-forbes__media {
    border-radius: 2.4rem;
  }
}
.survey-hero {
  position: relative;
  min-height: 92vh;
  background-color: #000000;
  color: #ffffff;
  font-family: "Unbounded" !important;
  overflow: hidden;
}
.survey-hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: -35rem;
  width: 100vw;
  height: 100%;
  background-image: url("https://ingoodstrategy.com/wp-content/themes/ingoodstrategy/assets/img/badania/cover.png");
  background-repeat: no-repeat;
  background-position: right center;
  background-size: cover;
  pointer-events: none;
}
.survey-hero__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 92vh;
  padding: 4rem 0 3.2rem;
}
.survey-hero__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.08em;
}
.survey-hero__name {
  white-space: nowrap;
}
.survey-hero__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 6rem;
  margin-top: 5rem;
}
.survey-hero__content {
  max-width: 58rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.survey-hero__arrows {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-bottom: -0.6rem;
}
.survey-hero__arrow {
  display: block;
  width: 2.2rem;
  height: auto;
}
.survey-hero__eyebrow {
  font-size: 1.4rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.survey-hero__title {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 6rem;
  line-height: 1.02;
  font-weight: 800;
  color: #ffffff;
}
.survey-hero__title-line {
  display: block;
}
.survey-hero__tagline {
  display: inline-block;
  margin-top: 1.4rem;
  font-size: 5rem;
  line-height: 1.3;
  font-weight: 700;
}
.survey-hero__date {
  margin-top: 3.4rem;
  font-size: 2rem;
  font-weight: 500;
}
.survey-hero__cta {
  margin-top: 2rem;
  align-self: flex-start;
  color: #ffffff;
}
.survey-hero .structure-hero__nav-link--report {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1.6rem 2.6rem;
  border-radius: 0px;
  border: 1px solid #fa5a5a !important;
  background: #000000;
  color: #ffffff;
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  box-shadow: none;
}
.survey-hero__brands {
  margin-top: 4rem;
  background-color: #fa5a5a;
}
.survey-hero__brands-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
}
.survey-hero__brand-img {
  display: block;
  max-height: 12.8rem;
  width: auto;
}

@media (min-width: 80rem) {
  .survey-hero__title {
    font-size: 7rem;
  }
  .survey-hero__tagline {
    font-size: 4.2rem;
  }
  .survey-hero__date {
    font-size: 2.2rem;
  }
}
@media (max-width: 63.9375rem) {
  .survey-hero {
    min-height: auto;
  }
  .survey-hero::after {
    width: 100vw;
    opacity: 0.25;
    background-position: center;
  }
  .survey-hero__inner {
    min-height: auto;
    padding: 3rem 0 2.4rem;
  }
  .survey-hero__top {
    font-size: 1.2rem;
  }
  .survey-hero__body {
    flex-direction: column;
    align-items: flex-start;
    gap: 3.2rem;
    margin-top: 4rem;
  }
  .survey-hero__content {
    max-width: none;
  }
  .survey-hero__title {
    font-size: 4.2rem;
  }
  .survey-hero__tagline {
    font-size: 1.8rem;
    padding: 1.2rem 2rem;
  }
  .survey-hero__date {
    margin-top: 2.4rem;
    font-size: 1.8rem;
  }
  .survey-hero__cta {
    margin-top: 1.8rem;
    width: 100%;
    color: #ffffff;
  }
  .survey-hero .structure-hero__nav-link--report {
    width: 100%;
    font-size: 1.45rem;
    padding: 1.4rem 2.2rem;
  }
  .survey-hero__brands-inner {
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.4rem;
    padding: 2.2rem 0;
  }
  .survey-hero__brand-img {
    max-height: 4rem;
  }
}
.structure-hero__nav-link--report::before,
.structure-hero__nav-link--report::after {
  content: none;
  display: none;
}

.survey-intro {
  width: 100%;
  padding: 7rem 0 8rem;
  background-color: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.survey-intro__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}
.survey-intro__head {
  margin-bottom: 4.4rem;
}
.survey-intro__eyebrow {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.7);
  margin-bottom: 1.6rem;
}
.survey-intro__title {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
}
.survey-intro__flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4.8rem;
}
.survey-intro__col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.survey-intro__lead {
  font-size: 1.9rem;
  line-height: 1.7;
  font-weight: 600;
  color: #000000;
}
.survey-intro__text {
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(37, 37, 37, 0.95);
}
.survey-intro__text--strong {
  font-weight: 400;
  color: rgba(37, 37, 37, 0.95);
  padding-left: 2rem;
  border-left: 0.3rem solid #fa5a5a;
}
.survey-intro__logos {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin-top: 2rem;
}
.survey-intro__logo {
  height: 4rem;
  width: auto;
}
.survey-intro__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  padding-left: 3.2rem;
}
.survey-intro__list-item {
  position: relative;
  font-size: 1.8rem;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(37, 37, 37, 0.95);
  padding-left: 2rem;
}
.survey-intro__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background-color: #fa5a5a;
}

@media (min-width: 96rem) {
  .survey-intro {
    padding: 8rem 0 9rem;
  }
  .survey-intro__title {
    font-size: 4.2rem;
  }
  .survey-intro__lead {
    font-size: 2rem;
  }
  .survey-intro__text {
    font-size: 1.9rem;
  }
}
@media (max-width: 64rem) {
  .survey-intro {
    padding: 5.6rem 0 6.4rem;
  }
  .survey-intro__head {
    margin-bottom: 3.2rem;
  }
  .survey-intro__title {
    font-size: 3.1rem;
  }
  .survey-intro__flex {
    flex-direction: column;
    gap: 3.6rem;
  }
  .survey-intro__text--strong {
    padding-left: 1.6rem;
  }
  .survey-intro__list {
    padding-left: 2.6rem;
  }
}
.survey-pyramid {
  width: 100%;
  padding: 8rem 0 9rem;
  background-color: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}
.survey-pyramid__inner {
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 8rem;
}
.survey-pyramid__top {
  flex: 0 0 30%;
  display: flex;
  justify-content: flex-start;
}
.survey-pyramid__title-box {
  max-width: 48rem;
}
.survey-pyramid__title-eyebrow {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fa5a5a;
  margin-bottom: 1.4rem;
}
.survey-pyramid__title-main {
  font-size: 2.4rem;
  line-height: 1.15;
  font-weight: 800;
  color: #252525;
}
.survey-pyramid__canvas {
  flex: 1 1 70%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 4rem;
  position: relative;
}
.survey-pyramid__stack {
  position: relative;
  width: 48rem;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0;
  clip-path: polygon(50% 0, 100% 100%, 0% 100%);
  padding-top: 0;
}
.survey-pyramid__tier {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 7.6rem;
  color: #ffffff;
  text-transform: uppercase;
  transform-origin: center bottom;
}
.survey-pyramid__tier-body {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.survey-pyramid__tier-content {
  text-align: center;
}
.survey-pyramid__tier-title {
  font-size: 1.8rem;
  line-height: 1.4;
  font-weight: 700;
}
.survey-pyramid__tier-subtitle {
  margin-top: 0.4rem;
  font-size: 1.4rem;
  font-weight: 500;
}
.survey-pyramid__badge {
  position: absolute;
  left: -3.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 3.8rem;
  height: 3.8rem;
  border-radius: 9999px;
  background-color: #252525;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  z-index: 2;
}
.survey-pyramid__tier--heart {
  background-color: #e95043;
}
.survey-pyramid__heart {
  display: block;
  font-size: 3.2rem;
  color: #ffffff;
}
.survey-pyramid__tier--1 {
  background-color: #ff7060;
}
.survey-pyramid__tier--2 {
  background-color: #f1a79e;
}
.survey-pyramid__tier--3 {
  background-color: #000000;
}
.survey-pyramid__tier--4 {
  background-color: #017bcb;
}
.survey-pyramid__label-block {
  position: absolute;
  top: 0%;
  left: 60%;
  transform: translateX(5rem);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  margin: 1rem;
  max-width: 32rem;
  text-align: left;
}
.survey-pyramid__label-line {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: 0.8rem;
}
.survey-pyramid__label-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 9999px;
  background-color: #fa5a5a;
}
.survey-pyramid__label-stroke {
  width: 9.4rem;
  height: 0.2rem;
  background-color: #fa5a5a;
  flex-shrink: 0;
  transform-origin: left center;
}
.survey-pyramid__label-text {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 700;
  text-transform: uppercase;
  color: #252525;
  display: block;
}

@media (min-width: 80rem) {
  .survey-pyramid {
    padding: 9rem 0 10rem;
  }
  .survey-pyramid__title-main {
    font-size: 3.3rem;
  }
  .survey-pyramid__stack {
    width: 86rem;
    padding-top: 0;
  }
  .survey-pyramid__tier {
    height: 9rem;
  }
  .survey-pyramid__tier-title {
    font-size: 2rem;
  }
}
@media (max-width: 63.9375rem) {
  .survey-pyramid {
    padding: 6.4rem 0 7.2rem;
  }
  .survey-pyramid__inner {
    padding: 0 2rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 4rem;
  }
  .survey-pyramid__top {
    width: 100%;
  }
  .survey-pyramid__title-main {
    font-size: 3.6rem;
  }
  .survey-pyramid__canvas {
    width: 100%;
    flex: 0 0 auto;
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .survey-pyramid__stack {
    width: 100%;
    max-width: 34rem;
    padding-top: 0;
  }
  .survey-pyramid__badge {
    left: -3.2rem;
  }
  .survey-pyramid__label-block {
    position: static;
    transform: none;
    align-items: center;
    text-align: center;
    flex-direction: column;
    gap: 1.2rem;
  }
}
.survey-milestones {
  width: 100%;
  padding: 8rem 0 9rem;
  background-color: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.survey-milestones__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.survey-milestones__head {
  max-width: 110rem;
}
.survey-milestones__title {
  font-size: 3.6rem;
  line-height: 1.2;
  font-weight: 700;
  color: #000000;
}
.survey-milestones__list {
  display: flex;
  flex-direction: column;
  gap: 3.8rem;
}
.survey-milestones__item {
  display: grid;
  grid-template-columns: minmax(0, 0.22fr) minmax(0, 1fr);
  -moz-column-gap: 3.6rem;
       column-gap: 3.6rem;
  row-gap: 1.4rem;
  align-items: flex-start;
}
.survey-milestones__time {
  font-size: 2.2rem;
  font-weight: 700;
  color: #000000;
  white-space: nowrap;
}
.survey-milestones__year {
  font-size: 2.4rem;
  font-weight: 700;
}
.survey-milestones__quarter {
  font-size: 2.2rem;
  font-weight: 700;
}
.survey-milestones__body {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.survey-milestones__step-title {
  font-size: 2.1rem;
  line-height: 1.35;
  font-weight: 700;
  color: #000000;
}
.survey-milestones__step-title--accent {
  color: #fa5a5a;
}
.survey-milestones__text {
  font-size: 1.7rem;
  line-height: 1.7;
  font-weight: 400;
  color: rgba(37, 37, 37, 0.9);
  max-width: 96rem;
}

@media (min-width: 96rem) {
  .survey-milestones {
    padding: 9rem 0 10rem;
  }
  .survey-milestones__title {
    font-size: 4.2rem;
  }
  .survey-milestones__text {
    font-size: 1.8rem;
  }
}
@media (max-width: 64rem) {
  .survey-milestones {
    padding: 6.4rem 0 7.2rem;
  }
  .survey-milestones__title {
    font-size: 2.8rem;
  }
  .survey-milestones__item {
    grid-template-columns: minmax(0, auto);
  }
  .survey-milestones__time {
    font-size: 2rem;
  }
}
.survey-companies {
  min-height: 100vh;
  background: linear-gradient(180deg, rgba(250, 90, 90, 0.98) 0%, rgba(250, 90, 90, 0.95) 50%, rgba(250, 90, 90, 0.92) 75%, rgba(237, 235, 222, 0.25) 100%);
  color: #ffffff;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 6.5rem 0 5.5rem;
}
.survey-companies__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
  min-height: calc(100vh - 12rem);
  display: flex;
  flex-direction: column;
}
.survey-companies__head {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2.6rem;
}
.survey-companies__logos {
  display: flex;
  align-items: center;
  gap: 3rem;
}
.survey-companies__logo-img {
  display: block;
  height: 3.4rem;
  width: auto;
}
.survey-companies__title-row {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 3.2rem;
}
.survey-companies__title {
  font-size: 5.6rem;
  line-height: 1.08;
  font-weight: 800;
  color: #ffffff;
}
.survey-companies__content {
  display: flex;
  flex-direction: column;
  gap: 4.4rem;
  flex: 1 1 auto;
}
.survey-companies__block-row {
  display: flex;
  width: 100%;
}
.survey-companies__block-row--left {
  justify-content: flex-start;
}
.survey-companies__block-row--right {
  justify-content: flex-end;
}
.survey-companies__block, .survey-companies__map-block {
  flex: 0 0 50%;
  max-width: 50%;
}
.survey-companies__block {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.survey-companies__block-label {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.8rem;
  background-color: #000000;
  color: #ffffff;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
}
.survey-companies__panel {
  display: flex;
  align-items: stretch;
  background-color: transparent;
}
.survey-companies__panel-left {
  flex: 0 0 26rem;
  background-color: #7f95ea;
  padding: 1.4rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.survey-companies__panel-label {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 600;
  color: #ffffff;
}
.survey-companies__panel-right {
  flex: 1 1 auto;
  padding: 1.4rem 0 1.4rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.9rem;
}
.survey-companies__panel-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}
.survey-companies__panel-bar {
  flex: 0 0 9.5rem;
  height: 1.1rem;
  border: 0.12rem solid #ffffff;
  background-color: transparent;
  position: relative;
}
.survey-companies__panel-bar::after {
  content: "";
  position: absolute;
  left: 0.18rem;
  right: 0.18rem;
  top: 0.18rem;
  bottom: 0.18rem;
  background-color: #ffffff;
}
.survey-companies__panel-value {
  flex: 0 0 auto;
  min-width: 3.6rem;
  text-align: right;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}
.survey-companies__panel--sectors {
  margin-top: 0.2rem;
}
.survey-companies__map-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
}
.survey-companies__map-label {
  display: inline-flex;
  align-items: center;
  padding: 0.9rem 1.8rem;
  background-color: #000000;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: #ffffff;
}
.survey-companies__map-shell {
  width: 100%;
  max-width: 52rem;
}
.survey-companies__map-img {
  display: block;
  width: 100%;
  height: auto;
}
.survey-companies__footer-note {
  margin-top: 3.6rem;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.3rem;
  color: rgba(255, 255, 255, 0.8);
}
@media (min-width: 80rem) {
  .survey-companies {
    padding: 7.5rem 0 6.5rem;
  }
  .survey-companies__inner {
    min-height: calc(100vh - 14rem);
  }
  .survey-companies__logo-img {
    height: 3.8rem;
  }
  .survey-companies__title {
    font-size: 6rem;
  }
  .survey-companies__panel-left {
    flex-basis: 28rem;
  }
  .survey-companies__map-shell {
    max-width: 56rem;
  }
}
@media (max-width: 63.9375rem) {
  .survey-companies {
    padding: 5.8rem 0 5rem;
  }
  .survey-companies__inner {
    min-height: calc(100vh - 11rem);
  }
  .survey-companies__head {
    margin-bottom: 2.4rem;
  }
  .survey-companies__logos {
    gap: 2.2rem;
    flex-wrap: wrap;
  }
  .survey-companies__logo-img {
    height: 3rem;
  }
  .survey-companies__title-row {
    margin-bottom: 3rem;
  }
  .survey-companies__title {
    font-size: 4.4rem;
  }
  .survey-companies__content {
    gap: 4rem;
  }
  .survey-companies__block-row {
    justify-content: flex-start;
  }
  .survey-companies__block, .survey-companies__map-block {
    flex: 1 1 auto;
    max-width: 100%;
  }
  .survey-companies__panel-left {
    flex-basis: 24rem;
  }
  .survey-companies__map-shell {
    max-width: 40rem;
    align-self: flex-start;
  }
  .survey-companies__footer-note {
    margin-top: 3.2rem;
  }
}

.survey-app {
  background-color: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  padding: 8rem 0 9rem;
}
.survey-app__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}
.survey-app__layout {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 6rem;
}
.survey-app__media {
  flex: 0 0 40%;
  display: flex;
  align-items: stretch;
  justify-content: center;
}
.survey-app__phone {
  width: 100%;
  height: 100%;
  max-width: none;
  border-radius: 3.6rem;
  overflow: hidden;
  background-color: #edebde;
}
.survey-app__phone-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.survey-app__content {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 3.4rem;
}
.survey-app__title {
  font-size: 3.8rem;
  line-height: 1.15;
  font-weight: 800;
  color: #000000;
}
.survey-app__text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.9);
}
.survey-app__downloads {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.survey-app__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2.4rem;
  padding: 1.8rem 2.4rem;
  border-radius: 1.6rem;
  border: 0.1rem solid rgba(37, 37, 37, 0.12);
  background-color: #ffffff;
}
.survey-app__card-copy {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.survey-app__card-title {
  font-size: 2.1rem;
  font-weight: 700;
  color: #000000;
}
.survey-app__card-subtitle {
  font-size: 1.4rem;
  line-height: 1.5;
  color: rgba(37, 37, 37, 0.9);
}
.survey-app__card-qr {
  flex: 0 0 auto;
  width: 8.6rem;
  height: 8.6rem;
  border-radius: 0.8rem;
  overflow: hidden;
  border: 0.1rem solid rgba(37, 37, 37, 0.2);
  background-color: #ffffff;
}
.survey-app__card-qr-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.survey-app__stores {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.6rem;
}
.survey-app__store-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.survey-app__store-img {
  display: block;
  height: 4.4rem;
  width: auto;
}
.survey-app__bg-title {
  display: none;
}
@media (min-width: 80rem) {
  .survey-app {
    padding: 9rem 0 10rem;
  }
  .survey-app__title {
    font-size: 4.4rem;
  }
  .survey-app__text {
    font-size: 1.7rem;
  }
}
@media (max-width: 63.9375rem) {
  .survey-app {
    padding: 6.5rem 0 7rem;
  }
  .survey-app__layout {
    flex-direction: column;
    gap: 4rem;
  }
  .survey-app__media {
    height: auto;
  }
  .survey-app__phone {
    max-width: 32rem;
    height: auto;
  }
  .survey-app__phone-img {
    height: auto;
  }
  .survey-app__title {
    font-size: 3.2rem;
  }
  .survey-app__text {
    max-width: none;
  }
}

.details-section {
  width: 100%;
  padding: 8rem 0;
  font-family: "Unbounded", system-ui, sans-serif;
}
.details-section__inner {
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  justify-content: space-between;
  gap: 6rem;
  align-items: stretch;
}
.details-section__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.details-section__col--media {
  max-width: 64rem;
  position: relative;
}
.details-section__heading {
  font-size: 4.4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  color: #252525;
}
.details-section__block {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.details-section__title {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fa5a5a;
}
.details-section__text {
  font-size: 1.8rem;
  line-height: 1.65;
  color: #252525;
  max-width: 60rem;
}
.details-section__media {
  width: 100%;
  height: 100%;
  min-height: 34rem;
  background-image: url("../img/badania/about.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}
.details-section__media-svg {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 12rem;
  height: auto;
}
.details-section__media-svg svg {
  width: 100%;
  height: auto;
  display: block;
  fill: #ffffff;
}

@media (max-width: 90rem) {
  .details-section__inner {
    flex-direction: column;
    padding: 0 3rem;
  }
  .details-section__col--media {
    max-width: none;
  }
  .details-section__media {
    min-height: 30rem;
  }
  .details-section__media-svg {
    width: 9rem;
  }
}
@media (max-width: 60rem) {
  .details-section {
    padding: 6rem 0;
  }
  .details-section__inner {
    padding: 0 2rem;
    gap: 3.6rem;
  }
  .details-section__heading {
    font-size: 3.6rem;
  }
  .details-section__title {
    font-size: 2.2rem;
  }
  .details-section__text {
    font-size: 1.7rem;
  }
  .details-section__media {
    min-height: 24rem;
  }
  .details-section__media-svg {
    width: 7rem;
  }
}
.result-banner {
  width: 100%;
  background-color: #ffffff;
  padding: 10rem 0;
  font-family: "Unbounded", system-ui, sans-serif;
}
.result-banner__inner {
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 4rem;
  display: flex;
  flex-direction: column;
  gap: 3.6rem;
  align-items: center;
  text-align: center;
}
.result-banner__heading {
  font-size: 4rem;
  font-weight: 800;
  color: #97cbc6;
}
.result-banner__text {
  max-width: 110rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.result-banner__lead {
  font-size: 2rem;
  font-weight: 700;
  color: #252525;
  line-height: 1.6;
}
.result-banner__paragraph {
  font-size: 1.8rem;
  color: #252525;
  line-height: 1.65;
}
.result-banner__cta {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
}

@media (max-width: 63.9375rem) {
  .result-banner {
    padding: 7rem 0;
  }
  .result-banner__heading {
    font-size: 3.2rem;
  }
  .result-banner__lead, .result-banner__paragraph {
    font-size: 1.7rem;
  }
}
.mission {
  width: 100%;
  background-color: #000000;
  padding: 8rem 0;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Unbounded", system-ui, sans-serif;
}
.mission__inner {
  max-width: 160rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 3.6rem;
}
.mission__heading {
  font-size: 3.4rem;
  font-weight: 800;
  color: #fa5a5a;
}
.mission__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2.4rem;
}
.mission__text {
  font-size: 1.8rem;
  line-height: 1.6;
  color: #ffffff;
  font-weight: 400;
}
.mission .text-coral {
  color: #fa5a5a;
  font-weight: 700;
}

@media (max-width: 63.9375rem) {
  .mission {
    padding: 6rem 0;
  }
  .mission__heading {
    font-size: 2.8rem;
  }
  .mission__text {
    font-size: 1.7rem;
  }
}
.survey-partners {
  width: 100%;
  padding: 7rem 0 8rem;
  background-color: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  border-bottom: 0.1rem solid #97cbc6;
}
.survey-partners__inner {
  max-width: 160rem;
  margin: 0 auto;
  display: flex;
  gap: 6rem;
}
.survey-partners__col {
  display: flex;
  flex-direction: column;
}
.survey-partners__col--left {
  flex: 0 0 30%;
  justify-content: center;
}
.survey-partners__col--right {
  flex: 0 0 70%;
}
.survey-partners__badge {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.survey-partners__arrows {
  width: 6.4rem;
}
.survey-partners__arrows-svg {
  width: 100%;
  fill: #fa5a5a;
}
.survey-partners__title-main {
  font-size: 3.2rem;
  font-weight: 800;
}
.survey-partners__subtitle {
  font-size: 1.8rem;
  font-weight: 700;
}
.survey-partners__rows {
  display: flex;
  flex-direction: column;
  gap: 4.2rem;
}
.survey-partners__row {
  display: flex;
  justify-content: space-between;
  gap: 3.2rem;
}
.survey-partners__logo {
  flex: 0 0 calc(25% - 2.4rem);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8.4rem;
}
.survey-partners__logo-img {
  max-width: 100%;
  max-height: 8.4rem;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (max-width: 63.9375rem) {
  .survey-partners {
    padding: 5.6rem 0 6.4rem;
  }
  .survey-partners__inner {
    flex-direction: column;
    gap: 4.4rem;
  }
  .survey-partners__row {
    flex-wrap: wrap;
  }
  .survey-partners__logo {
    flex: 0 0 48%;
  }
}
.survey-gallery {
  --padY: 2.2rem;
  --cols: 3;
  height: 85vh;
  max-height: 85vh;
  padding: var(--padY) 0;
  background: #ffffff;
  overflow: hidden;
  font-family: "Unbounded", system-ui, sans-serif;
}
.survey-gallery__head {
  width: 100%;
  max-width: 160rem;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  padding: 0 2rem;
  padding-bottom: 3.4rem;
}
.survey-gallery__title {
  font-size: 4.2rem;
  line-height: 1.1;
  font-weight: 800;
  color: #252525;
  text-align: center;
}
.survey-gallery__viewport {
  position: relative;
  height: calc(85vh - var(--padY) * 2 - 8.4rem);
  width: 100%;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.survey-gallery__viewport::before, .survey-gallery__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 14rem;
  z-index: 4;
  pointer-events: none;
}
.survey-gallery__viewport::before {
  left: 0;
  background: linear-gradient(to right, white, rgba(255, 255, 255, 0));
}
.survey-gallery__viewport::after {
  right: 0;
  background: linear-gradient(to left, white, rgba(255, 255, 255, 0));
}
.survey-gallery__track {
  display: flex;
  height: 100%;
  will-change: transform;
}
.survey-gallery__slide {
  flex: 0 0 calc(100% / var(--cols));
  height: 100%;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.survey-gallery__slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 2.4rem;
  filter: grayscale(1) brightness(0.9);
  opacity: 0.55;
  transform: translateZ(0);
  transition: filter 0.18s ease, opacity 0.18s ease, transform 0.18s ease;
}
.survey-gallery__slide.is-active img {
  filter: none;
  opacity: 1;
  transform: scale(1.02);
}
.survey-gallery__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 6;
  width: 5.2rem;
  height: 5.2rem;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  font-size: 3rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0.6rem 2rem rgba(0, 0, 0, 0.08);
}
.survey-gallery__nav[disabled] {
  opacity: 0.35;
  cursor: default;
}
.survey-gallery__nav--prev {
  left: 2rem;
}
.survey-gallery__nav--next {
  right: 2rem;
}
.survey-gallery__jump {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 6;
  border: 0;
  border-radius: 999px;
  padding: 1.1rem 1.6rem;
  background: rgba(37, 37, 37, 0.9);
  color: #ffffff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease;
}
.survey-gallery__jump.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

@media (max-width: 63.9375rem) {
  .survey-gallery {
    --padY: 1.6rem;
    --cols: 1;
  }
  .survey-gallery__head {
    padding-bottom: 1.6rem;
  }
  .survey-gallery__title {
    font-size: 3.2rem;
  }
  .survey-gallery__viewport {
    height: calc(85vh - var(--padY) * 2 - 7.2rem);
  }
  .survey-gallery__viewport::before, .survey-gallery__viewport::after {
    width: 7.2rem;
  }
  .survey-gallery__slide {
    padding: 0 1.2rem;
  }
  .survey-gallery__nav {
    width: 4.4rem;
    height: 4.4rem;
    font-size: 2.6rem;
  }
  .survey-gallery__nav--prev {
    left: 1.2rem;
  }
  .survey-gallery__nav--next {
    right: 1.2rem;
  }
  .survey-gallery__jump {
    right: 1.2rem;
    bottom: 1.2rem;
    font-size: 1rem;
    padding: 1rem 1.4rem;
  }
}
.survey-opinions {
  --opinions-collapsed: 22rem;
  padding: 9rem 0 10rem;
  background: #ffffff;
}
.survey-opinions__head {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 5.6rem;
}
.survey-opinions__eyebrow {
  font-family: "Unbounded", sans-serif;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.4rem;
  opacity: 0.8;
}
.survey-opinions__title {
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: clamp(3.2rem, 2.6vw, 4.8rem);
  line-height: 1.05;
}
.survey-opinions__list {
  display: flex;
  flex-wrap: wrap;
  gap: 6rem;
  align-items: flex-start;
}
.survey-opinions__item {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  flex: 0 0 calc((100% - 12rem) / 3);
  min-width: 30rem;
}
.survey-opinions__person {
  width: 100%;
  position: relative;
  background: #ffffff;
  border: 0.2rem solid #fa5a5a;
  overflow: hidden;
}
.survey-opinions__person-photo {
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.survey-opinions__person-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.survey-opinions__person-captions {
  position: absolute;
  right: 1.4rem;
  bottom: 1.4rem;
  left: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: flex-end;
}
.survey-opinions__person-name {
  display: inline-flex;
  align-self: flex-end;
  text-align: right;
  font-family: "Unbounded", sans-serif;
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1.05;
  color: #ffffff;
  background: #252525;
  padding: 0.9rem 1.2rem;
}
.survey-opinions__person-role {
  display: inline-flex;
  align-self: flex-end;
  text-align: right;
  font-family: "Unbounded", sans-serif;
  font-weight: 700;
  font-size: 1.45rem;
  line-height: 1.2;
  color: #ffffff;
  background: #252525;
  padding: 0.7rem 1.1rem;
  opacity: 0.95;
}
.survey-opinions__text-wrap {
  position: relative;
  width: 100%;
}
.survey-opinions__text {
  font-family: "Unbounded", sans-serif;
  font-weight: 450;
  font-size: 1.7rem;
  line-height: 1.65;
  color: #252525;
  opacity: 0.9;
  overflow: hidden;
  height: var(--opinions-collapsed);
}
.survey-opinions__fade {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 9rem;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
  background: linear-gradient(to top, white, rgba(255, 255, 255, 0));
}
.survey-opinions__toggle {
  align-self: center;
}
.survey-opinions__item.is-collapsed .survey-opinions__fade {
  opacity: 1;
}
.survey-opinions__item.is-expanded .survey-opinions__text {
  overflow: visible;
}
@media (max-width: 1024px) {
  .survey-opinions {
    padding: 7rem 0 8rem;
  }
  .survey-opinions__list {
    gap: 4.2rem;
  }
  .survey-opinions__item {
    flex: 0 0 calc((100% - 4.2rem) / 2);
    min-width: 0;
  }
}
@media (max-width: 640px) {
  .survey-opinions {
    padding: 6rem 0 7rem;
    --opinions-collapsed: 26rem;
  }
  .survey-opinions__head {
    margin-bottom: 3.6rem;
  }
  .survey-opinions__list {
    gap: 3.2rem;
  }
  .survey-opinions__item {
    flex: 0 0 100%;
  }
  .survey-opinions__person-name {
    font-size: 2rem;
  }
  .survey-opinions__person-role {
    font-size: 1.4rem;
  }
  .survey-opinions__text {
    font-size: 1.65rem;
  }
}

.survey-people {
  padding: 7.2rem 0 8.6rem;
  background: #ffffff;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: #252525;
  position: relative;
  overflow: hidden;
}
.survey-people__inner {
  position: relative;
}
.survey-people__head {
  display: flex;
  flex-direction: column;
  margin-bottom: 2.6rem;
}
.survey-people__title {
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 0.98;
  font-size: 4.2rem;
}
.survey-people__intro {
  font-weight: 600;
  font-size: 1.9rem;
  line-height: 1.35;
  margin-bottom: 2.6rem;
}
.survey-people__initiators {
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
  margin-bottom: 5.2rem;
}
.survey-people__row {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 3.6rem;
}
.survey-people__card {
  flex: 0 0 24rem;
  width: 24rem;
  border: 0.2rem solid #fa5a5a;
  background: #ffffff;
  position: relative;
}
.survey-people__photo {
  width: 100%;
  aspect-ratio: 1/1;
  background: #fa5a5a;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
.survey-people__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.survey-people__tag {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  display: inline-flex;
  background: #252525;
  color: #ffffff;
  font-weight: 900;
  font-size: 2.1rem;
  line-height: 1.02;
  padding: 0.85rem 1.1rem;
}
.survey-people__list {
  flex: 1 1 auto;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.55;
}
.survey-people__list li {
  position: relative;
  padding-left: 2.2rem;
}
.survey-people__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: #fa5a5a;
}
.survey-people__note {
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.55;
  max-width: 120rem;
  margin-bottom: 5.2rem;
}
.survey-people__note-strong {
  font-weight: 900;
}
.survey-people__team-title {
  font-weight: 600;
  font-size: 1.95rem;
  line-height: 1.35;
  margin-bottom: 2.2rem;
}
.survey-people__team {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5rem;
}
.survey-people__team-item {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 52rem;
}
.survey-people__team-tag {
  display: inline-flex;
  align-self: flex-start;
  background: #252525;
  color: #ffffff;
  font-weight: 900;
  font-size: 2.1rem;
  line-height: 1.05;
  padding: 0.85rem 1.1rem;
}
.survey-people__team-desc {
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.55;
  max-width: 46rem;
}
.survey-people__decor {
  position: absolute;
  right: -2.6rem;
  bottom: -2.6rem;
  width: 30rem;
  height: 30rem;
  opacity: 1;
  pointer-events: none;
}
.survey-people__decor svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: #fa5a5a;
}
@media (max-width: 63.9375rem) {
  .survey-people {
    padding: 6.2rem 0 7.2rem;
  }
  .survey-people__head {
    margin-bottom: 2.2rem;
  }
  .survey-people__intro {
    margin-bottom: 2.2rem;
  }
  .survey-people__row {
    flex-direction: column;
    align-items: flex-start;
    gap: 2.2rem;
  }
  .survey-people__card {
    flex: 0 0 auto;
    width: 28rem;
  }
  .survey-people__team {
    flex-direction: column;
    gap: 3.2rem;
  }
  .survey-people__team-item {
    max-width: 100%;
  }
  .survey-people__team-desc {
    max-width: 100%;
  }
  .survey-people__decor {
    width: 18rem;
    height: 18rem;
    right: -2rem;
    bottom: -2rem;
  }
}
@media (max-width: 40rem) {
  .survey-people__title {
    font-size: clamp(3.6rem, 9.2vw, 4.6rem);
    line-height: 1.02;
  }
  .survey-people__tag {
    left: 1.2rem;
    bottom: 1.2rem;
    font-size: 2rem;
  }
  .survey-people__team-tag {
    font-size: 2rem;
  }
}

.survey-why {
  padding: 7rem 0 8rem;
  background: #ffffff;
  font-family: "Unbounded", sans-serif;
  color: #252525;
}
.survey-why__inner {
  width: 100%;
}
.survey-why__head {
  margin-bottom: 3.2rem;
}
.survey-why__title {
  font-weight: 900;
  font-size: clamp(3rem, 3vw, 4.2rem);
  line-height: 1.05;
}
.survey-why__grid {
  display: flex;
  gap: 4rem;
  align-items: stretch;
}
.survey-why__col {
  flex: 0 0 50%;
  max-width: 50%;
}
.survey-why__col--left {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.survey-why__text {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 600;
}
.survey-why__text p {
  margin: 0;
}
.survey-why__list-title {
  font-weight: 800;
  font-size: 1.6rem;
}
.survey-why__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.survey-why__list li {
  position: relative;
  padding-left: 2rem;
  font-size: 1.55rem;
  font-weight: 600;
}
.survey-why__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #fa5a5a;
}
.survey-why__col--right {
  display: flex;
}
.survey-why__right-inner {
  display: flex;
  gap: 2.4rem;
  align-items: stretch;
  width: 100%;
}
.survey-why__photo {
  flex: 0 0 50%;
  position: relative;
  background: #fa5a5a;
  border: 0.2rem solid #fa5a5a;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.survey-why__photo img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center top;
     object-position: center top;
}
.survey-why__photo-caption {
  position: absolute;
  left: 1.2rem;
  bottom: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.survey-why__photo-name {
  background: rgba(37, 37, 37, 0.95);
  color: #ffffff;
  font-weight: 900;
  font-size: 1.7rem;
  padding: 0.8rem 1.1rem;
}
.survey-why__photo-role {
  background: rgba(37, 37, 37, 0.95);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  padding: 0.7rem 1rem;
}
.survey-why__quote {
  flex: 0 0 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.4rem;
  font-size: 1.5rem;
  line-height: 1.65;
  font-weight: 600;
}
.survey-why__quote p {
  margin: 0;
}
@media (max-width: 64rem) {
  .survey-why__grid {
    flex-direction: column;
  }
  .survey-why__col {
    max-width: 100%;
    flex: 0 0 auto;
  }
  .survey-why__right-inner {
    flex-direction: column;
  }
  .survey-why__photo {
    aspect-ratio: 1/1;
  }
}

.survey-intro {
  width: 100%;
  padding: 7rem 0 8rem;
  background-color: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, sans-serif;
}
.survey-intro__inner {
  max-width: 160rem;
  margin: 0 auto;
}
.survey-intro__flex {
  display: flex;
  align-items: stretch;
  gap: clamp(4rem, 5vw, 9rem);
  width: 100%;
}
.survey-intro__col {
  flex: 0 0 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.survey-intro__col--text {
  gap: 2rem;
}
.survey-intro__col--pyramid {
  background: #97cbc6;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-top: 2rem;
  padding: 10px;
}
.survey-intro__pyramid-inner {
  width: 100%;
  max-width: 52rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3.2rem;
  text-align: center;
}
.survey-intro__head {
  margin-bottom: 3.2rem;
}
.survey-intro__eyebrow {
  font-size: 1.3rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.7);
  margin-bottom: 1.6rem;
}
.survey-intro__title {
  font-size: 3.4rem;
  font-weight: 700;
  line-height: 1.15;
}
.survey-intro__lead {
  font-size: 1.9rem;
  line-height: 1.7;
  font-weight: 600;
}
.survey-intro__text {
  font-size: 1.8rem;
  line-height: 1.7;
}
.survey-intro__text--strong {
  padding-left: 2rem;
  border-left: 0.3rem solid #fa5a5a;
}
.survey-intro__list {
  padding-left: 3.2rem;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
.survey-intro__list-item {
  position: relative;
  padding-left: 2rem;
  font-size: 1.8rem;
}
.survey-intro__list-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.9rem;
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: #fa5a5a;
}

.survey-intro--with-pyramid .survey-pyramid--inline {
  width: 100%;
  background: transparent;
}

@media (max-width: 64rem) {
  .survey-intro {
    padding: 5.6rem 0 6.4rem;
  }
  .survey-intro__flex {
    flex-direction: column;
  }
  .survey-intro__col {
    flex: 1 1 auto;
    width: 100%;
  }
  .survey-intro__col--pyramid {
    padding: 4rem 2.4rem;
  }
}
.survey-editorial {
  --collapsed: 64rem;
  padding: 7.2rem 0 8.6rem;
  background: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.survey-editorial__inner {
  width: 100%;
}
.survey-editorial__grid {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6rem;
}
.survey-editorial__col {
  min-width: 0;
}
.survey-editorial__col--left {
  flex: 0 0 60%;
}
.survey-editorial__col--right {
  flex: 0 0 40%;
}
.survey-editorial__content {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
  position: relative;
  overflow: hidden;
  max-height: var(--collapsed);
}
.survey-editorial__content::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 16rem;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.35s ease;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.12) 22%, rgba(255, 255, 255, 0.45) 52%, rgba(255, 255, 255, 0.8) 78%, white 100%);
}
.survey-editorial__inner.is-open .survey-editorial__content {
  max-height: none;
  overflow: visible;
}
.survey-editorial__inner.is-open .survey-editorial__content::after {
  opacity: 0;
}
.survey-editorial__p {
  font-size: 1.75rem;
  line-height: 1.7;
  font-weight: 450;
  color: rgba(37, 37, 37, 0.92);
}
.survey-editorial__p--lead {
  font-size: 2rem;
  line-height: 1.55;
  font-weight: 800;
  margin-bottom: 0.2rem;
}
.survey-editorial__p--strong {
  font-weight: 800;
  color: #252525;
}
.survey-editorial__p--coral {
  color: #fa5a5a;
}
.survey-editorial__strong {
  font-weight: 800;
  color: #252525;
}
.survey-editorial__coral-strong {
  font-weight: 800;
  color: #fa5a5a;
}
.survey-editorial__em {
  font-style: italic;
  font-weight: 600;
}
.survey-editorial__toggle {
  position: relative;
  margin: 2.6rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 3rem;
  border-radius: 9999px;
  color: #252525;
  background: transparent;
  border: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  text-decoration: none;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.survey-editorial__toggle::before, .survey-editorial__toggle::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: all 0.45s ease;
}
.survey-editorial__toggle::before {
  left: -3.2rem;
  top: 50%;
  width: 3.2rem;
  height: 0;
  border-bottom: 0.3rem solid #fa5a5a;
  transform: translateY(-50%);
  transform-origin: left center;
}
.survey-editorial__toggle::after {
  right: -3.2rem;
  bottom: 0.2rem;
  width: 3.2rem;
  height: 1.6rem;
  border-bottom: 0.3rem solid #fa5a5a;
  border-right: 0.3rem solid #fa5a5a;
}
.survey-editorial__toggle:hover {
  opacity: 0.9;
}
.survey-editorial__toggle:hover::before {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 0.4rem solid #fa5a5a;
  border-right: 0.4rem solid #fa5a5a;
  transform: translateY(-50%) rotate(-45deg);
}
.survey-editorial__toggle:hover::after {
  width: 4.4rem;
  height: 0.1rem;
  border-bottom: 0.4rem solid #fa5a5a;
  border-right: 0 solid transparent;
  transform: translateY(-0.2rem);
}
.survey-editorial__sticky {
  position: sticky;
  top: 2.4rem;
  align-self: flex-start;
}
.survey-editorial__author {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.survey-editorial__author-left {
  flex: 0 0 auto;
}
.survey-editorial__author-card {
  width: 100%;
  border: 0.2rem solid #fa5a5a;
  background: #ffffff;
}
.survey-editorial__author-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1;
  background: #fa5a5a;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.survey-editorial__author-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center bottom;
     object-position: center bottom;
}
.survey-editorial__author-name {
  position: absolute;
  left: 1.4rem;
  bottom: 1.4rem;
  display: inline-flex;
  flex-direction: column;
  gap: 0.2rem;
  background: #252525;
  color: #ffffff;
  font-weight: 900;
  line-height: 1.02;
  padding: 0.85rem 1.1rem;
  max-width: calc(100% - 2.8rem);
}
.survey-editorial__name-line {
  display: block;
  font-size: 2.1rem;
}
.survey-editorial__author-right {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.survey-editorial__author-sign {
  font-weight: 900;
  font-size: 2rem;
  line-height: 1.2;
  color: #252525;
}
.survey-editorial__author-bio {
  font-size: 1.55rem;
  line-height: 1.6;
  font-weight: 600;
  color: rgba(37, 37, 37, 0.9);
  word-break: break-word;
  overflow-wrap: anywhere;
}
@media (max-width: 63.9375rem) {
  .survey-editorial {
    --collapsed: 62rem;
    padding: 6.2rem 0 7.2rem;
  }
  .survey-editorial__grid {
    flex-direction: column;
    gap: 4rem;
  }
  .survey-editorial__col--left, .survey-editorial__col--right {
    flex: 0 0 auto;
    width: 100%;
  }
  .survey-editorial__sticky {
    position: static;
    top: auto;
  }
  .survey-editorial__p {
    font-size: 1.65rem;
  }
  .survey-editorial__p--lead {
    font-size: 1.9rem;
  }
  .survey-editorial__name-line {
    font-size: 2rem;
  }
  .survey-editorial__author-sign {
    font-size: 1.9rem;
  }
  .survey-editorial__author-bio {
    font-size: 1.5rem;
  }
  .survey-editorial__toggle {
    padding: 1.3rem 2.6rem;
  }
}
@media (max-width: 40rem) {
  .survey-editorial__p {
    font-size: 1.6rem;
  }
  .survey-editorial__p--lead {
    font-size: 1.85rem;
  }
}

.survey-download {
  padding: 7.2rem 0 8.6rem;
  background: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.survey-download__inner {
  width: 100%;
}
.survey-download__head {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  margin-bottom: 3.4rem;
}
.survey-download__eyebrow {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.7);
}
.survey-download__title {
  font-size: clamp(3.1rem, 2.6vw, 4.2rem);
  line-height: 1.1;
  font-weight: 900;
  color: #000000;
}
.survey-download__lead {
  font-size: 1.7rem;
  line-height: 1.65;
  font-weight: 550;
  color: rgba(37, 37, 37, 0.92);
  max-width: 88rem;
}
.survey-download__form {
  width: 100%;
  border: 0.2rem solid rgba(37, 37, 37, 0.08);
  border-radius: 2.4rem;
  padding: 3.2rem;
  background: #ffffff;
}
.survey-download__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.4rem;
}
.survey-download__field {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.survey-download__field--full {
  grid-column: 1/-1;
}
.survey-download__label {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.85);
}
.survey-download__optional {
  font-weight: 600;
  color: rgba(37, 37, 37, 0.6);
}
.survey-download__input {
  width: 100%;
  border: 0.2rem solid rgba(37, 37, 37, 0.12);
  border-radius: 1.6rem;
  padding: 1.45rem 1.6rem;
  font-size: 1.6rem;
  line-height: 1.3;
  font-weight: 550;
  color: #252525;
  background: #ffffff;
  outline: none;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.survey-download__input:focus {
  border-color: rgba(250, 90, 90, 0.9);
  box-shadow: 0 0 0 0.4rem rgba(250, 90, 90, 0.18);
}
.survey-download__input:invalid {
  box-shadow: none;
}
.survey-download__actions {
  margin-top: 2.4rem;
  padding: 0 4rem 0 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.survey-download__note {
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 550;
  color: rgba(37, 37, 37, 0.7);
  max-width: 72rem;
}
.survey-download__checkbox {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}
.survey-download__checkbox-input {
  width: 1.9rem;
  height: 1.9rem;
  accent-color: #fa5a5a;
}
.survey-download__privacy-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  font-weight: 650;
}
.survey-download__submit {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 3rem;
  border-radius: 9999px;
  color: #252525;
  background: transparent;
  border: 0;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.survey-download__submit::before, .survey-download__submit::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: all 0.45s ease;
}
.survey-download__submit::before {
  left: -3.2rem;
  top: 50%;
  width: 3.2rem;
  height: 0;
  border-bottom: 0.3rem solid #fa5a5a;
  transform: translateY(-50%);
  transform-origin: left center;
}
.survey-download__submit::after {
  right: -3.2rem;
  bottom: 0.2rem;
  width: 3.2rem;
  height: 1.6rem;
  border-bottom: 0.3rem solid #fa5a5a;
  border-right: 0.3rem solid #fa5a5a;
}
.survey-download__submit:hover {
  opacity: 0.9;
}
.survey-download__submit:hover::before {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 0.4rem solid #fa5a5a;
  border-right: 0.4rem solid #fa5a5a;
  transform: translateY(-50%) rotate(-45deg);
}
.survey-download__submit:hover::after {
  width: 4.4rem;
  height: 0.1rem;
  border-bottom: 0.4rem solid #fa5a5a;
  border-right: 0 solid transparent;
  transform: translateY(-0.2rem);
}
.survey-download__submit.is-loading {
  opacity: 0.55;
  pointer-events: none;
}
.survey-download__form.is-submitted .survey-download__input:invalid {
  border-color: #e53935;
  box-shadow: 0 0 0 0.4rem rgba(229, 57, 53, 0.18);
}
.survey-download__form.is-submitted .survey-download__checkbox-input:invalid {
  outline: 0.3rem solid rgba(229, 57, 53, 0.65);
  outline-offset: 0.25rem;
}
.survey-download__modal {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2.4rem;
}
.survey-download__modal.is-open {
  display: flex;
}
.survey-download__modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(37, 37, 37, 0.62);
}
.survey-download__modal-card {
  position: relative;
  width: 100%;
  max-width: 62rem;
  border-radius: 2.4rem;
  background: #ffffff;
  border: 0.2rem solid rgba(37, 37, 37, 0.08);
  padding: 3.2rem 3.2rem 3rem;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
}
.survey-download__modal-x {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;
  width: 4.2rem;
  height: 4.2rem;
  border-radius: 50%;
  border: 0;
  background: rgba(37, 37, 37, 0.06);
  color: #252525;
  font-size: 2.6rem;
  line-height: 1;
  cursor: pointer;
}
.survey-download__modal-eyebrow {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.7);
  margin-bottom: 1.2rem;
}
.survey-download__modal-title {
  font-size: 3.2rem;
  line-height: 1.1;
  font-weight: 900;
  color: #252525;
  margin-bottom: 1.2rem;
}
.survey-download__modal-text {
  font-size: 1.6rem;
  line-height: 1.6;
  font-weight: 550;
  color: rgba(37, 37, 37, 0.9);
  margin-bottom: 2.2rem;
}
.survey-download__modal-btn {
  align-self: flex-start;
}
.survey-download__modal-btn::before, .survey-download__modal-btn::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: all 0.45s ease;
}
.survey-download__modal-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  padding: 1.4rem 3rem;
  border-radius: 9999px;
  color: #252525;
  background: transparent;
  border: 0;
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.survey-download__modal-btn::before {
  left: -3.2rem;
  top: 50%;
  width: 3.2rem;
  height: 0;
  border-bottom: 0.3rem solid #fa5a5a;
  transform: translateY(-50%);
  transform-origin: left center;
}
.survey-download__modal-btn::after {
  right: -3.2rem;
  bottom: 0.2rem;
  width: 3.2rem;
  height: 1.6rem;
  border-bottom: 0.3rem solid #fa5a5a;
  border-right: 0.3rem solid #fa5a5a;
}
.survey-download__modal-btn:hover {
  opacity: 0.9;
}
.survey-download__modal-btn:hover::before {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 0.4rem solid #fa5a5a;
  border-right: 0.4rem solid #fa5a5a;
  transform: translateY(-50%) rotate(-45deg);
}
.survey-download__modal-btn:hover::after {
  width: 4.4rem;
  height: 0.1rem;
  border-bottom: 0.4rem solid #fa5a5a;
  border-right: 0 solid transparent;
  transform: translateY(-0.2rem);
}
@media (max-width: 63.9375rem) {
  .survey-download {
    padding: 6.2rem 0 7.2rem;
  }
  .survey-download__form {
    padding: 2.4rem;
  }
  .survey-download__grid {
    grid-template-columns: 1fr;
  }
  .survey-download__actions {
    align-items: flex-start;
  }
  .survey-download__modal-card {
    padding: 2.6rem 2.4rem 2.4rem;
  }
  .survey-download__modal-title {
    font-size: 2.8rem;
  }
}

html.is-locked {
  overflow: hidden;
}

.education-hero {
  width: 100%;
  height: 160vh;
  background-image: url("https://ingoodstrategy.com/wp-content/themes/ingoodstrategy/assets/img/education/edukacja.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% auto;
}

@media (min-width: 1920px) {
  .education-hero {
    height: 162vh;
    background-size: 90% 100%;
  }
}
@media (max-width: 1920px) {
  .education-hero {
    height: 162vh;
    background-size: 90% auto;
  }
}
@media (max-width: 1024px) {
  .education-hero {
    height: 80vh;
    background-size: 90% auto;
  }
}
@media (max-width: 768px) {
  .education-hero {
    height: 100svh;
    background-size: 100% auto;
  }
}
@media (max-width: 480px) {
  .education-hero {
    height: 50vh;
  }
}
.education-hero-pyramid {
  min-height: 91vh;
  display: flex;
  align-items: center;
  background-color: #ffffff;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow: hidden;
}
.education-hero-pyramid__header {
  max-width: 96rem;
}
.education-hero-pyramid__title {
  font-size: 4.4rem;
  line-height: 1.1;
  font-weight: 800;
  color: #252525;
}
.education-hero-pyramid__accent {
  color: #fa5a5a;
}
.education-hero-pyramid__subtitle {
  margin-top: 1.2rem;
  font-size: 1.6rem;
  line-height: 1.6;
  color: rgba(37, 37, 37, 0.85);
}

.education-pyramid {
  width: 100%;
  max-width: 86rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  clip-path: polygon(50% 0%, 100% 100%, 0% 100%);
}

.education-pyramid__tier {
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  white-space: normal;
  padding: 2.2rem 3.2rem;
  align-items: center;
}

.education-pyramid__tier--tall {
  min-height: 18.4rem;
  padding-top: 3.8rem;
  padding-bottom: 3.8rem;
  align-items: flex-end;
}

.education-pyramid__tier--medium {
  min-height: 14.8rem;
  padding-top: 3rem;
  padding-bottom: 3rem;
}

.education-pyramid__tier-text {
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.4;
  color: #000000;
  max-width: 42rem;
  margin: 0 auto;
}

.education-pyramid__tier-text--white {
  color: #ffffff;
}

.education-pyramid__tier--black {
  background-color: #000000;
}

.education-pyramid__tier--gray {
  background-color: #b3b3b3;
}

.education-pyramid__tier--red {
  background-color: #fa5a5a;
}

.education-pyramid__tier--dark {
  background-color: #000000;
  padding: 2.6rem 3.2rem;
}

.education-pyramid__separator {
  width: 100%;
  border-top: 0.2rem dotted rgba(0, 0, 0, 0.35);
}

@media (max-width: 63.9375rem) {
  .education-hero-pyramid {
    min-height: auto;
    padding: 6rem 0 7rem;
  }
  .education-pyramid {
    max-width: 34rem;
  }
  .education-pyramid__tier {
    padding: 1.8rem 1.8rem;
  }
  .education-pyramid__tier--tall {
    min-height: 14.6rem;
    padding-top: 3.2rem;
    padding-bottom: 3.2rem;
    align-items: flex-end;
  }
  .education-pyramid__tier--medium {
    min-height: 12.4rem;
    padding-top: 2.6rem;
    padding-bottom: 2.6rem;
  }
  .education-pyramid__tier-text {
    font-size: 1.2rem;
    max-width: 28rem;
  }
}
.education-section {
  padding: 8rem 0 !important;
  background-color: #ffffff !important;
  color: #252525 !important;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}
.education-section__layout {
  display: flex !important;
  flex-direction: column !important;
  gap: 4rem !important;
}
.education-section__content {
  display: flex !important;
  flex-direction: column !important;
  gap: 2.8rem !important;
  max-width: 72rem !important;
}
.education-section__tag {
  font-size: 1.2rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: rgba(37, 37, 37, 0.6) !important;
}
.education-section__title {
  font-size: 4rem !important;
  font-weight: 700 !important;
  line-height: 1.15 !important;
}
.education-section__lead {
  font-size: 1.7rem !important;
  line-height: 1.7 !important;
  color: rgba(37, 37, 37, 0.9) !important;
}
.education-section__list {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 1.6rem 0 !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 1.2rem !important;
}
.education-section__list-item {
  position: relative !important;
  padding-left: 3.2rem !important;
  font-size: 1.7rem !important;
  line-height: 1.6 !important;
  color: rgba(37, 37, 37, 0.9) !important;
}
.education-section__list-item::before {
  content: "→" !important;
  position: absolute !important;
  left: 0 !important;
  top: 0 !important;
  font-size: 1.8rem !important;
  font-weight: 700 !important;
  color: #b54eff !important;
  line-height: 1.6 !important;
}
.education-section__cta {
  align-self: flex-start !important;
  margin-top: 1.6rem !important;
  border-radius: 999px !important;
  padding: 1.4rem 3.2rem !important;
  font-size: 1.4rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  text-decoration: none !important;
  color: #ffffff !important;
  background-color: #252525 !important;
  box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.25) !important;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease !important;
}
.education-section__cta:hover {
  background-color: rgb(21.7, 21.7, 21.7) !important;
  transform: translateY(-0.08rem) !important;
  box-shadow: 0 2.2rem 4.4rem rgba(0, 0, 0, 0.3) !important;
}
.education-section__form-wrapper {
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}
.education-section__form {
  border-radius: 2.4rem !important;
  background-color: rgba(237, 235, 222, 0.96) !important;
  border: 0.1rem solid rgba(37, 37, 37, 0.08) !important;
  padding: 3.2rem 3.4rem 3.6rem !important;
  box-shadow: 0 2rem 4.4rem rgba(0, 0, 0, 0.12) !important;
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 1.8rem !important;
  margin-top: auto !important;
}
.education-section__field {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
}
.education-section__field--wide {
  grid-column: 1/-1 !important;
}
.education-section__label {
  font-size: 1.2rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(37, 37, 37, 0.8) !important;
}
.education-section__input, .education-section__textarea {
  border-radius: 0.9rem !important;
  border: 0.1rem solid rgba(37, 37, 37, 0.28) !important;
  padding: 1.2rem 1.5rem !important;
  font-size: 1.5rem !important;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  color: #252525 !important;
  background-color: #ffffff !important;
  outline: none !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease !important;
}
.education-section__input:focus, .education-section__textarea:focus {
  border-color: #b54eff !important;
  box-shadow: 0 0 0 0.16rem rgba(181, 78, 255, 0.22) !important;
}
.education-section__textarea {
  min-height: 12rem !important;
  resize: vertical !important;
}
.education-section__checkbox {
  display: flex !important;
  align-items: flex-start !important;
  gap: 1.2rem !important;
}
.education-section__checkbox-input {
  width: 1.7rem !important;
  height: 1.7rem !important;
  margin-top: 0.3rem !important;
  flex-shrink: 0 !important;
}
.education-section__checkbox-label {
  font-size: 1.3rem !important;
  line-height: 1.6 !important;
  color: rgba(37, 37, 37, 0.85) !important;
}
.education-section__submit {
  margin-top: 1rem !important;
  align-self: flex-start !important;
  border-radius: 999px !important;
  border: none !important;
  padding: 1.4rem 3.2rem !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  background-color: #252525 !important;
  cursor: pointer !important;
  box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.25) !important;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease !important;
}
.education-section__submit:hover {
  background-color: rgb(21.7, 21.7, 21.7) !important;
  transform: translateY(-0.08rem) !important;
  box-shadow: 0 2.2rem 4.4rem rgba(0, 0, 0, 0.3) !important;
}

@media (min-width: 64rem) {
  .education-section {
    padding: 10rem 0 !important;
  }
  .education-section__layout {
    flex-direction: row !important;
    gap: 6rem !important;
    align-items: stretch !important;
  }
  .education-section__content {
    flex: 0 0 52% !important;
  }
  .education-section__form-wrapper {
    flex: 0 0 48% !important;
    justify-content: flex-end !important;
  }
  .education-section__form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}
@media (min-width: 96rem) {
  .education-section__title {
    font-size: 4.6rem !important;
  }
  .education-section__lead {
    font-size: 1.8rem !important;
  }
}
@media (max-width: 48rem) {
  .education-section {
    padding: 6rem 0 !important;
  }
  .education-section__layout {
    gap: 3.2rem !important;
  }
  .education-section__form {
    padding: 2.6rem 2.4rem 3rem !important;
  }
  .education-section__list-item {
    font-size: 1.6rem !important;
    padding-left: 2.8rem !important;
  }
}
.education-kozminski {
  padding: 8rem 0;
  background-color: rgba(237, 235, 222, 0.5);
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.education-kozminski__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.education-kozminski__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.2;
  max-width: 96rem;
}
.education-kozminski__lead {
  font-size: 1.7rem;
  line-height: 1.7;
  max-width: 88rem;
  color: rgba(37, 37, 37, 0.9);
}
.education-kozminski__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.2rem;
}
.education-kozminski__block {
  background-color: #ffffff;
  border-radius: 2.4rem;
  padding: 3.2rem;
  box-shadow: 0 2rem 4.4rem rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.education-kozminski__block p {
  font-size: 1.6rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.9);
}
.education-kozminski__subtitle {
  font-size: 2rem;
  font-weight: 700;
}
.education-kozminski__cta {
  align-self: flex-start;
  margin-top: 1.6rem;
  border-radius: 999px;
  padding: 1.5rem 3.4rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  color: #ffffff;
  background-color: #252525;
  box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.25);
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.education-kozminski__cta:hover {
  background-color: rgb(21.7, 21.7, 21.7);
  transform: translateY(-0.08rem);
  box-shadow: 0 2.2rem 4.4rem rgba(0, 0, 0, 0.3);
}

@media (min-width: 64rem) {
  .education-kozminski {
    padding: 10rem 0;
  }
  .education-kozminski__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 4rem;
  }
  .education-kozminski__title {
    font-size: 4.2rem;
  }
}
@media (max-width: 48rem) {
  .education-kozminski {
    padding: 6rem 0;
  }
  .education-kozminski__title {
    font-size: 3rem;
  }
  .education-kozminski__block {
    padding: 2.6rem;
  }
}
.education-target {
  padding: 8rem 0;
  background-color: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.education-target__title {
  text-align: center;
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 6rem;
}
.education-target__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 6rem 4rem;
}
.education-target__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.6rem;
  max-width: 38rem;
  margin: 0 auto;
}
.education-target__icon {
  width: 7.5rem;
  height: auto;
  margin-bottom: 0.8rem;
}
.education-target__item-title {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}
.education-target__item-text {
  font-size: 1.5rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.85);
}

@media (min-width: 48rem) {
  .education-target__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 64rem) {
  .education-target {
    padding: 10rem 0;
  }
  .education-target__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 96rem) {
  .education-target__title {
    font-size: 4.6rem;
  }
  .education-target__item-title {
    font-size: 2.4rem;
  }
  .education-target__item-text {
    font-size: 1.6rem;
  }
}
.education-certificate {
  padding: 8rem 0;
  background-color: #ffffff;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
.education-certificate__title {
  font-size: 4rem;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 2rem;
}
.education-certificate__subtitle {
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 5rem;
}
.education-certificate__layout {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
.education-certificate__image {
  flex-shrink: 0;
  max-width: 32rem;
}
.education-certificate__image-img {
  width: 100%;
  height: auto;
  display: block;
}
.education-certificate__content {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  font-size: 1.7rem;
  line-height: 1.75;
  color: rgba(37, 37, 37, 0.9);
}

@media (min-width: 64rem) {
  .education-certificate {
    padding: 10rem 0;
  }
  .education-certificate__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 6rem;
  }
  .education-certificate__image {
    max-width: 36rem;
  }
}
@media (min-width: 96rem) {
  .education-certificate__title {
    font-size: 4.6rem;
  }
  .education-certificate__subtitle {
    font-size: 2.6rem;
  }
  .education-certificate__content {
    font-size: 1.8rem;
  }
}
@media (max-width: 48rem) {
  .education-certificate {
    padding: 6rem 0;
  }
  .education-certificate__subtitle {
    margin-bottom: 3.6rem;
  }
}
.contact-section {
  width: 100%;
  padding: 8rem 0;
  background-color: #ffffff;
  color: #252525;
}
.contact-section__inner {
  width: 100%;
  max-width: 160rem;
  margin: 0 auto;
}
.contact-section__layout {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4rem;
}
.contact-section__content {
  flex: 1 1 auto;
  max-width: 72rem;
  display: flex;
  flex-direction: column;
  gap: 2.8rem;
}
.contact-section__tag {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.2rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.6);
}
.contact-section__title {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 4rem;
  line-height: 1.15;
  font-weight: 700;
  color: #252525;
}
.contact-section__lead {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.7rem;
  line-height: 1.7;
  color: rgba(37, 37, 37, 0.9);
  max-width: 64rem;
}
.contact-section__block {
  margin-top: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact-section__subtitle {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(37, 37, 37, 0.8);
}
.contact-section__link {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.5rem;
  color: #252525;
  text-decoration: none;
}
.contact-section__link:hover {
  color: #b54eff;
}
.contact-section__social {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 0.6rem;
}
.contact-section__social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 999px;
  border: 0.1rem solid rgba(37, 37, 37, 0.26);
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1.6rem;
  color: #252525;
  text-decoration: none;
  transition: background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease;
}
.contact-section__social-link:hover {
  background-color: #252525;
  color: #ffffff;
  border-color: #252525;
  transform: translateY(-0.08rem);
}
.contact-section__social-link--outlined {
  background-color: transparent;
}
.contact-section__form {
  margin-top: 3.2rem !important;
  border-radius: 2.4rem !important;
  background-color: rgba(237, 235, 222, 0.96) !important;
  border: 0.1rem solid rgba(37, 37, 37, 0.08) !important;
  padding: 3.2rem 3.4rem 3.6rem !important;
  box-shadow: 0 2rem 4.4rem rgba(0, 0, 0, 0.12) !important;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  gap: 1.8rem !important;
}
.contact-section__field {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
}
.contact-section__field--wide {
  grid-column: 1/-1 !important;
}
.contact-section__label {
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(37, 37, 37, 0.8) !important;
}
.contact-section__input, .contact-section__textarea {
  width: 100% !important;
  border-radius: 0.9rem !important;
  border: 0.1rem solid rgba(37, 37, 37, 0.28) !important;
  background-color: #ffffff !important;
  padding: 1.2rem 1.5rem !important;
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 1.5rem !important;
  color: #252525 !important;
  outline: none !important;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease !important;
}
.contact-section__input::-moz-placeholder, .contact-section__textarea::-moz-placeholder {
  color: rgba(37, 37, 37, 0.5) !important;
}
.contact-section__input::placeholder, .contact-section__textarea::placeholder {
  color: rgba(37, 37, 37, 0.5) !important;
}
.contact-section__input:focus, .contact-section__textarea:focus {
  border-color: #b54eff !important;
  box-shadow: 0 0 0 0.16rem rgba(181, 78, 255, 0.22) !important;
  background-color: #ffffff !important;
}
.contact-section__textarea {
  min-height: 12rem !important;
  resize: vertical !important;
}
.contact-section__checkbox {
  display: flex !important;
  align-items: flex-start !important;
  gap: 1.2rem !important;
}
.contact-section__checkbox-input {
  width: 1.7rem !important;
  height: 1.7rem !important;
  margin-top: 0.3rem !important;
  flex-shrink: 0 !important;
}
.contact-section__checkbox-label {
  font-family: "Space Grotesk", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 1.3rem !important;
  line-height: 1.6 !important;
  color: rgba(37, 37, 37, 0.85) !important;
}
.contact-section__submit {
  margin-top: 1rem !important;
  align-self: flex-start !important;
  border: none !important;
  border-radius: 999px !important;
  padding: 1.4rem 3.2rem !important;
  font-family: "Unbounded", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
  font-size: 1.5rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: #ffffff !important;
  background-color: #252525 !important;
  cursor: pointer !important;
  transition: background-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease !important;
  box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.25) !important;
}
.contact-section__submit:hover {
  background-color: rgb(21.7, 21.7, 21.7) !important;
  transform: translateY(-0.08rem) !important;
  opacity: 0.96 !important;
  box-shadow: 0 2.2rem 4.4rem rgba(0, 0, 0, 0.3) !important;
}
.contact-section__image {
  flex: 1 1 auto;
  display: flex;
  align-items: stretch;
}
.contact-section__image-img {
  width: 100%;
  height: 100%;
  border-radius: 3.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  display: block;
}

@media (min-width: 64rem) {
  .contact-section {
    padding: 10rem 0;
  }
  .contact-section__layout {
    flex-direction: row;
    align-items: stretch;
    gap: 6rem;
  }
  .contact-section__content {
    flex: 0 0 52%;
    max-width: 52%;
  }
  .contact-section__image {
    flex: 0 0 48%;
    max-width: 48%;
  }
  .contact-section__form {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
  .contact-section__form .contact-section__field--wide {
    grid-column: 1/-1 !important;
  }
}
@media (min-width: 96rem) {
  .contact-section__title {
    font-size: 4.6rem;
  }
  .contact-section__lead {
    font-size: 1.8rem;
  }
}
@media (max-width: 48rem) {
  .contact-section {
    padding: 6rem 0;
  }
  .contact-section__layout {
    gap: 3.2rem;
  }
  .contact-section__form {
    padding: 2.6rem 2.4rem 3rem !important;
  }
}
.newsletter {
  background-color: #edebde;
  padding: 8rem 0;
  display: flex;
  justify-content: center;
}
.newsletter .newsletter__inner {
  max-width: 160rem;
  width: 100%;
  padding: 0 2rem;
  text-align: center;
  margin: 0 auto;
}
.newsletter .newsletter__label {
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: #252525;
  margin-bottom: 1.6rem;
}
.newsletter .newsletter__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-size: clamp(3.4rem, 4vw, 4.8rem);
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #252525;
}
.newsletter .newsletter__form {
  position: relative;
  margin: 4rem auto 0;
  max-width: 80rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
}
.newsletter .newsletter__form::before, .newsletter .newsletter__form::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transition: all 0.45s ease;
}
.newsletter .newsletter__form::before {
  left: 0;
  top: 50%;
  width: 3.2rem;
  height: 0;
  border-bottom: 0.3rem solid #fa5a5a;
  transform: translateY(-50%);
  transform-origin: left center;
}
.newsletter .newsletter__form:hover::before {
  width: 1.2rem;
  height: 1.2rem;
  border-bottom: 0.4rem solid #fa5a5a;
  border-right: 0.4rem solid #fa5a5a;
  background-color: transparent;
  transform: translateY(-50%) rotate(-45deg);
  transform-origin: left center;
  left: 0;
}
.newsletter .newsletter__form::after {
  right: 0;
  bottom: 0.2rem;
  width: 3.2rem;
  height: 1.6rem;
  border-bottom: 0.3rem solid #fa5a5a;
  border-right: 0.3rem solid #fa5a5a;
}
.newsletter .newsletter__form:hover::after {
  right: 0;
  left: auto;
  width: 100%;
  height: 100%;
  border-bottom-width: 0.3rem;
  border-right-width: 0.3em;
  transform-origin: right bottom;
}
.newsletter .newsletter__input {
  min-width: 28rem;
  width: 45rem;
  max-width: 100%;
  padding: 1.4rem 2rem;
  border-radius: 9999px;
  border: 0.2rem solid #edebde;
  background-color: #ffffff;
  font-size: 1.4rem;
  color: #252525;
  outline: none;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.newsletter .newsletter__input::-moz-placeholder {
  color: rgba(37, 37, 37, 0.1);
}
.newsletter .newsletter__input::placeholder {
  color: rgba(37, 37, 37, 0.1);
}
.newsletter .newsletter__input:focus {
  border-color: #fa5a5a;
  box-shadow: 0 0 0 1px rgba(250, 90, 90, 0.5);
}
.newsletter .newsletter__button {
  padding: 1.4rem 3rem;
  border-radius: 9999px;
  background-color: #252525;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}
.newsletter .newsletter__button:hover {
  opacity: 0.9;
}
@media (max-width: 768px) {
  .newsletter {
    padding: 6rem 0;
  }
  .newsletter .newsletter__form {
    flex-direction: column;
    gap: 1.6rem;
  }
  .newsletter .newsletter__form::before, .newsletter .newsletter__form::after {
    display: none;
  }
  .newsletter .newsletter__input {
    width: 100%;
  }
  .newsletter .newsletter__button {
    width: 100%;
    max-width: 28rem;
    margin: 0 auto;
  }
}

.footer {
  background-color: #000000;
  color: #ffffff;
}
.footer .footer__inner {
  max-width: 160rem;
  margin: 0 auto;
}
.footer .footer__title {
  font-family: "Unbounded", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -0.04em;
  font-size: clamp(3.6rem, 6vw, 8rem);
  text-align: center;
}
.footer .footer-link {
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.2s ease, transform 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 1.6rem;
  font-size: clamp(1.6rem, 1.7vw, 2.1rem);
}
.footer .footer-link img {
  display: block;
  transform: rotate(40deg);
  flex-shrink: 0;
}
.footer .footer-link:hover {
  opacity: 0.8;
  transform: translateX(0.2rem);
}
.footer .footer__legal-link {
  letter-spacing: 0.08em;
  text-decoration: none;
  color: #ffffff;
  transition: opacity 0.2s ease;
  font-size: clamp(1.4rem, 1.5vw, 1.8rem);
}
.footer .footer__legal-link:hover {
  opacity: 0.8;
}
.footer .footer__legal-wrapper {
  border-top: 0.1rem solid #ffffff;
  padding-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.6rem 3.2rem;
}
.footer a[href^=tel],
.footer a[href^=mailto] {
  word-break: break-all;
}

@media (max-width: 1024px) {
  .footer .footer__inner {
    text-align: left;
  }
  .footer .footer__title {
    font-size: clamp(3.4rem, 7vw, 5.6rem);
    margin-bottom: 3rem;
  }
  .footer .footer-link {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .footer .footer__inner {
    text-align: left;
  }
  .footer .footer__title {
    font-size: clamp(2.8rem, 9vw, 4rem);
    line-height: 1.05;
  }
  .footer .footer-link {
    font-size: 1.6rem;
    gap: 1.2rem;
  }
  .footer .footer__legal-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.2rem;
    margin-top: 3rem;
  }
  .footer .footer__legal-link {
    font-size: 1.4rem;
  }
}
.expo-form-section {
  padding: 8rem 0 !important;
  color: #252525 !important;
}
.expo-form-section__inner {
  max-width: 64rem !important;
  margin: 0 auto !important;
  display: flex !important;
  flex-direction: column !important;
  gap: 2.4rem !important;
}
.expo-form-section__tag {
  font-family: "Unbounded" !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.16em !important;
  text-transform: uppercase !important;
  color: rgba(37, 37, 37, 0.6) !important;
}
.expo-form-section__title {
  font-family: "Unbounded" !important;
  font-size: 4rem !important;
  font-weight: 700 !important;
}
.expo-form-section__lead {
  font-family: "Unbounded" !important;
  font-size: 1.7rem !important;
  line-height: 1.6 !important;
}

.expo-form {
  margin-top: 2rem !important;
  background: rgba(237, 235, 222, 0.96) !important;
  border-radius: 2.4rem !important;
  padding: 3.2rem !important;
  display: grid !important;
  grid-template-columns: repeat(2, 1fr) !important;
  gap: 1.6rem !important;
  box-shadow: 0 2rem 4rem rgba(0, 0, 0, 0.12) !important;
}
.expo-form__field {
  display: flex !important;
  flex-direction: column !important;
  gap: 0.6rem !important;
  position: relative !important;
}
.expo-form__field--full {
  grid-column: 1/-1 !important;
}
.expo-form__label {
  font-family: "Unbounded" !important;
  font-size: 1.2rem !important;
  letter-spacing: 0.14em !important;
  text-transform: uppercase !important;
  color: rgba(37, 37, 37, 0.75) !important;
  transition: color 0.2s ease !important;
}
.expo-form__input {
  width: 100% !important;
  background: transparent !important;
  border: 0.2rem solid rgba(37, 37, 37, 0.35) !important;
  border-radius: 1.6rem !important;
  padding: 1.2rem 1rem !important;
  font-family: "Montserrat" !important;
  font-size: 1.6rem !important;
  color: #252525 !important;
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  box-shadow: none !important;
  outline: none !important;
  transition: border-color 0.2s ease !important;
}
.expo-form__select {
  padding-right: 4.2rem !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9l6 6 6-6' stroke='%23171717' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") !important;
  background-repeat: no-repeat !important;
  background-position: right 1.4rem center !important;
  background-size: 1.8rem 1.8rem !important;
}
.expo-form__input::-moz-placeholder {
  color: rgba(37, 37, 37, 0.4) !important;
}
.expo-form__input::placeholder {
  color: rgba(37, 37, 37, 0.4) !important;
}
.expo-form__input:focus {
  border-bottom-color: #252525 !important;
}
.expo-form__input.is-active {
  border-bottom-color: #b54eff !important;
}
.expo-form__field.is-active .expo-form__label {
  color: #b54eff !important;
}
.expo-form__checkbox {
  grid-column: 1/-1 !important;
  display: flex !important;
  align-items: flex-start !important;
  gap: 1.2rem !important;
  font-size: 1.3rem !important;
}
.expo-form__checkbox input {
  margin-top: 0.2rem !important;
}
.expo-form__submit {
  grid-column: 1/-1 !important;
  margin-top: 2rem !important;
  border-radius: 999px !important;
  padding: 1.6rem 3.2rem !important;
  font-family: "Unbounded" !important;
  font-size: 1.5rem !important;
  letter-spacing: 0.16em !important;
  background: #252525 !important;
  color: #ffffff !important;
  border: none !important;
  cursor: pointer !important;
  box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.25) !important;
}

.expo-consent {
  font-family: "Unbounded", Arial, sans-serif;
}

.expo-popup {
  position: fixed !important;
  inset: 0 !important;
  display: none !important;
  align-items: center !important;
  justify-content: center !important;
  z-index: 999 !important;
}
.expo-popup[data-open=true] {
  display: flex !important;
}
.expo-popup__overlay {
  position: absolute !important;
  inset: 0 !important;
  background: rgba(0, 0, 0, 0.6) !important;
}
.expo-popup__box {
  position: relative !important;
  background: #ffffff !important;
  border-radius: 2.4rem !important;
  padding: 3rem !important;
  max-width: 42rem !important;
  width: 100% !important;
  text-align: center !important;
}
.expo-popup__title {
  font-family: "Unbounded" !important;
  font-size: 2.4rem !important;
  margin-bottom: 1rem !important;
}
.expo-popup__text {
  font-size: 1.6rem !important;
  margin-bottom: 2rem !important;
}
.expo-popup__button {
  border-radius: 999px !important;
  padding: 1.2rem 3rem !important;
  font-family: "Unbounded" !important;
  background: #252525 !important;
  color: #ffffff !important;
  border: none !important;
  cursor: pointer !important;
}

@media (max-width: 48rem) {
  .expo-form {
    grid-template-columns: 1fr !important;
  }
}
.expo-form-section--scalingup {
  padding: clamp(4.6rem, 5vw, 6.8rem) 0;
  color: #252525;
  font-family: "Unbounded", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}
.expo-form-section--scalingup .expo-form-layout {
  max-width: 192rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(1.6rem, 2vw, 2.6rem);
  align-items: stretch;
  min-height: clamp(58rem, 48vw, 78rem);
}
@media (max-width: 64rem) {
  .expo-form-section--scalingup .expo-form-layout {
    grid-template-columns: 1fr;
    grid-template-areas: "media" "content";
    min-height: unset;
  }
}
.expo-form-section--scalingup .expo-form-content {
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media (max-width: 64rem) {
  .expo-form-section--scalingup .expo-form-content {
    grid-area: content;
  }
}
.expo-form-section--scalingup .expo-form-media {
  min-width: 0;
  height: 100%;
  border-radius: 2.8rem;
  overflow: hidden;
  background: transparent;
  box-shadow: 0 2.4rem 5.2rem rgba(0, 0, 0, 0.16);
  display: flex;
}
@media (max-width: 64rem) {
  .expo-form-section--scalingup .expo-form-media {
    grid-area: media;
    height: auto;
    aspect-ratio: 16/10;
    border-radius: 2.2rem;
  }
}
.expo-form-section--scalingup .expo-form-media__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
  flex: 1 1 auto;
  background: transparent;
}
.expo-form-section--scalingup .expo-form-section__tag {
  font-size: 1.1rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.62);
}
.expo-form-section--scalingup .expo-form-section__title {
  margin-top: 1rem;
  font-weight: 850;
  line-height: 1.08;
  letter-spacing: -0.02em;
  font-size: clamp(2.7rem, 2.2vw, 4.1rem);
  max-width: 40ch;
}
@media (max-width: 64rem) {
  .expo-form-section--scalingup .expo-form-section__title {
    font-size: clamp(2.3rem, 5vw, 3.2rem);
    max-width: 34ch;
  }
}
.expo-form-section--scalingup .expo-form-section__lead {
  margin-top: 1.1rem;
  font-size: clamp(1.45rem, 0.95vw, 1.7rem);
  line-height: 1.6;
  color: rgba(37, 37, 37, 0.82);
  max-width: 72ch;
}

.expo-form--scalingup {
  margin-top: 1.8rem;
  flex: 1 1 auto;
  min-height: 0;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  padding: clamp(1.9rem, 1.7vw, 2.6rem);
  background: rgba(237, 235, 222, 0.96);
  border-radius: 2.8rem;
  border: 0.1rem solid rgba(37, 37, 37, 0.1);
  box-shadow: 0 2.4rem 5.2rem rgba(0, 0, 0, 0.12);
}
@media (max-width: 48rem) {
  .expo-form--scalingup {
    grid-template-columns: 1fr;
    padding: 2.1rem;
    border-radius: 2.4rem;
  }
}
.expo-form--scalingup .expo-form__field {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.expo-form--scalingup .expo-form__field--full {
  grid-column: 1/-1;
}
.expo-form--scalingup .expo-form__label {
  font-size: 1.02rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(37, 37, 37, 0.76);
}
.expo-form--scalingup .expo-form__input {
  width: 100%;
  background: transparent;
  border: 0.15rem solid rgba(37, 37, 37, 0.3);
  border-radius: 1.6rem;
  padding: 1.05rem 1.1rem;
  font-family: inherit;
  font-size: 1.55rem;
  color: rgba(37, 37, 37, 0.95);
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.expo-form--scalingup .expo-form__input:focus {
  border-color: rgba(37, 37, 37, 0.85);
  box-shadow: 0 0 0 0.5rem rgba(181, 78, 255, 0.12);
}
.expo-form--scalingup .expo-form__textarea {
  resize: none;
  min-height: 12.5rem;
}
@media (max-width: 48rem) {
  .expo-form--scalingup .expo-form__textarea {
    min-height: 14.5rem;
  }
}
.expo-form--scalingup .expo-form__fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
}
.expo-form--scalingup .expo-form__choices {
  margin-top: 0.6rem;
  display: grid;
  gap: 0.9rem;
  padding: 1.2rem;
  border-radius: 1.8rem;
  border: 0.15rem solid rgba(37, 37, 37, 0.22);
  background: transparent;
}
.expo-form--scalingup .expo-form__choice {
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 1rem;
  align-items: start;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1.4rem;
  line-height: 1.35;
  color: rgba(37, 37, 37, 0.94);
}
.expo-form--scalingup .expo-form__choice-input {
  margin-top: 0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  accent-color: #252525;
}
.expo-form--scalingup .expo-form__choice-text {
  font-family: inherit;
}
.expo-form--scalingup .expo-form__any {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 1px;
  height: 1px;
  left: -9999px;
}
.expo-form--scalingup .expo-form__checkbox {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: 1.7rem 1fr;
  gap: 1rem;
  align-items: start;
  margin-top: 0.1rem;
  font-size: 1.15rem;
  line-height: 1.45;
  color: rgba(37, 37, 37, 0.86);
}
.expo-form--scalingup .expo-form__checkbox input {
  margin-top: 0.35rem;
  width: 1.5rem;
  height: 1.5rem;
  accent-color: #252525;
}
.expo-form--scalingup .expo-form__checkbox a {
  color: #252525;
  text-decoration: underline;
  text-underline-offset: 0.25em;
}
.expo-form--scalingup .expo-form__error {
  margin-top: 0.65rem;
  font-size: 1.2rem;
  line-height: 1.35;
  color: #c1121f;
}
.expo-form--scalingup .expo-form__submit {
  grid-column: 1/-1;
  margin-top: 1.1rem;
  border-radius: 999px;
  padding: 1.45rem 2.8rem;
  font-family: inherit;
  font-size: 1.35rem;
  letter-spacing: 0.18em;
  background: #252525;
  color: #ffffff;
  border: none;
  cursor: pointer;
  box-shadow: 0 1.6rem 3.6rem rgba(0, 0, 0, 0.25);
  transition: transform 0.12s ease, box-shadow 0.12s ease, filter 0.12s ease;
}
.expo-form--scalingup .expo-form__submit:hover {
  filter: brightness(1.06);
}
.expo-form--scalingup .expo-form__submit:active {
  transform: translateY(1px);
  box-shadow: 0 1.2rem 2.8rem rgba(0, 0, 0, 0.22);
}/*# sourceMappingURL=main.css.map */