.hero {
  position: relative;
  min-height: min(720px, calc(100vh - var(--header-height) - 124px));
  overflow: hidden;
  background: var(--color-primary);
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.hero.is-dragging {
  cursor: grabbing;
}

.hero__slides,
.hero__slide {
  position: absolute;
  inset: 0;
}

.hero__slides {
  overflow: hidden;
  border-radius: var(--radius-large) var(--radius-large) 0 0;
}

.hero__slide {
  opacity: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: opacity 650ms ease;
}

.hero__slide.is-active {
  opacity: 1;
}

.hero__inner {
  position: relative;
  z-index: 2;
  min-height: min(720px, calc(100vh - var(--header-height) - 124px));
  display: flex;
  align-items: center;
}

.hero__copy {
  width: min(47%, 610px);
  padding-block: 54px 80px;
  color: var(--color-primary);
}

.hero__copy h1 {
  margin-bottom: 48px;
  font-size: var(--title-size-display);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero__copy p {
  max-width: 560px;
  margin-bottom: 58px;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.6;
}

.hero__arrow {
  position: absolute;
  z-index: 3;
  top: 50%;
  width: 56px;
  height: 88px;
  padding: 0;
  border: 0;
  color: var(--color-primary-strong);
  background: transparent;
  transform: translateY(-50%);
  cursor: pointer;
}

.hero__arrow--prev {
  left: clamp(10px, 2.2vw, 42px);
}

.hero__arrow--next {
  right: clamp(10px, 2.2vw, 42px);
}

.hero__arrow span {
  width: 28px;
  height: 28px;
  display: block;
  margin: auto;
  border-top: 2px solid currentcolor;
  border-left: 2px solid currentcolor;
}

.hero__arrow--prev span {
  transform: rotate(-45deg);
}

.hero__arrow--next span {
  transform: rotate(135deg);
}

.hero__dots {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 24px;
  left: 0;
  display: flex;
  justify-content: center;
  gap: 38px;
}

.hero__dots button {
  width: clamp(58px, 7vw, 112px);
  height: 3px;
  padding: 0;
  border: 0;
  background: rgb(255 255 255 / 84%);
  cursor: pointer;
}

.hero__dots button.is-active {
  background: var(--color-primary-strong);
}

.hero-tagline {
  min-height: 112px;
  margin-top: 10px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-primary-strong);
  border-radius: 0 0 var(--radius-large) var(--radius-large);
}

.hero-tagline p {
  margin: 0;
  font-family: var(--font-title);
  font-size: var(--title-size-card);
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.why-section {
  min-height: auto;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  overflow: hidden;
}

.section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: var(--section-title-gap);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  color: var(--color-primary);
  font-family: var(--font-title);
  font-size: var(--title-size-section);
  font-weight: 800;
  line-height: 1;
}

.section-heading img {
  width: auto;
  max-width: calc(100% - 112px);
  height: 0.72em;
  display: block;
  object-fit: contain;
}

.section-heading--brand > span {
  height: 1em;
  display: flex;
  align-items: center;
}

.why-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.why-card {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.why-card__copy {
  width: 54%;
  min-height: 300px;
  padding: 66px 44px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.why-card h3 {
  margin-bottom: 34px;
  font-size: var(--title-size-card);
  line-height: 1.08;
}

.why-card p {
  max-width: 340px;
  margin-bottom: 0;
  color: var(--color-text-soft);
  font-size: 0.94rem;
  line-height: 1.5;
}

.products-section {
  padding-top: var(--section-space-compact);
  padding-bottom: 0;
}

.product-showcase {
  padding-block: clamp(70px, 7vw, 110px);
  background: var(--color-primary-strong);
  border-radius: var(--radius-large);
}

.category-list {
  width: min(1120px, 92%);
  margin-inline: auto;
  display: grid;
  gap: 40px;
}

.category-card {
  position: relative;
  aspect-ratio: 1500 / 360;
  overflow: hidden;
  background: #f2f2f2;
  border-radius: var(--radius-medium);
  box-shadow: var(--shadow-card);
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.category-card__product {
  position: absolute;
  top: 0;
  left: 0;
  width: 32.9%;
  height: 100%;
  object-fit: contain;
  background: var(--color-white);
}

.category-card__map {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 32.9%;
  width: 67.1%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  user-select: none;
}

.category-card__swatches {
  position: absolute;
  z-index: 2;
  top: 76.2%;
  left: 42%;
  width: 32.65%;
  height: auto;
  pointer-events: none;
  user-select: none;
}

.category-card__copy {
  position: absolute;
  z-index: 3;
  top: 27%;
  left: 42%;
}

.category-card__copy h3 {
  margin-bottom: 12px;
  font-size: var(--title-size-feature);
  line-height: 1.05;
}

.category-card__copy p {
  color: #656565;
  font-size: clamp(1rem, 1.5vw, 1.45rem);
}

.category-card .button {
  position: absolute;
  z-index: 4;
  right: 7%;
  bottom: 19%;
}

.product-grid {
  padding-block: clamp(84px, 6vw, 112px);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 110px 48px;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.product-card > a {
  width: 100%;
  min-width: 0;
}

.carousel-controls {
  display: none;
}

.product-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  isolation: isolate;
  background: #f3f3f3;
}

.product-card__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: contain;
  mix-blend-mode: multiply;
  background: transparent;
  transform-origin: center;
  transition: transform var(--transition);
}

.product-card:hover .product-card__image img,
.product-card:focus-within .product-card__image img {
  transform: scale(1.045);
}

.product-card h3 {
  width: 100%;
  margin-top: 24px;
  margin-bottom: 0;
  font-size: var(--title-size-item);
  line-height: 1.35;
}

.belief-section {
  min-height: 940px;
  padding-block: clamp(30px, 3vw, 48px) clamp(64px, 6vw, 92px);
  overflow: hidden;
}

.belief-section__rail {
  right: max(calc((100vw - var(--container)) / 2), 0px);
  bottom: 0;
  width: 198px;
  height: 100%;
  max-height: 1183px;
  object-fit: fill;
}

.belief-section__logo {
  position: relative;
  z-index: 1;
  width: min(796px, 53%);
  margin-bottom: clamp(124px, 10vw, 150px);
}

.belief-layout {
  position: relative;
  z-index: 1;
  display: block;
  min-height: 639px;
}

.belief-copy {
  position: relative;
  z-index: 2;
  width: min(760px, 60%);
  padding-top: 6px;
}

.belief-copy h2 {
  margin-bottom: 34px;
  color: var(--color-primary);
  font-size: clamp(3.75rem, 5vw, 4.75rem);
  line-height: 0.98;
}

.belief-copy h3 {
  margin-bottom: clamp(68px, 5.4vw, 78px);
  color: var(--color-primary);
  font-size: clamp(2.25rem, 3.45vw, 3.15rem);
  line-height: 1.13;
}

.belief-copy p {
  max-width: 650px;
  margin-bottom: 20px;
  color: var(--color-text-soft);
  font-size: clamp(1.12rem, 1.75vw, 1.55rem);
  line-height: 1.46;
}

.belief-layout__portrait {
  position: absolute;
  z-index: 1;
  top: 0;
  right: clamp(36px, 4.5vw, 72px);
  width: min(870px, 68vw);
  max-width: none;
}

.partners-section {
  min-height: auto;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space-compact);
}

.partners-section .section-title {
  margin-bottom: var(--section-title-gap);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 50px 42px;
}

.partners-grid > img {
  width: 100%;
  aspect-ratio: 346 / 234;
  object-fit: contain;
}

.partners-grid__more {
  min-height: 175px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 26px;
}

.partners-grid__more span {
  width: 18px;
  height: 18px;
  display: block;
  background: var(--color-primary-strong);
  border-radius: 50%;
}

.world-section {
  position: relative;
  padding-block: var(--section-space-compact);
  overflow: hidden;
  color: var(--color-white);
  background: var(--color-primary-strong);
  border-radius: var(--radius-large);
}

.world-section__rail {
  top: 0;
  right: max(calc((100vw - var(--container)) / 2), 0px);
  height: 100%;
  opacity: 0.52;
}

.world-section .container {
  position: relative;
  z-index: 1;
}

.world-section .section-title {
  margin-bottom: var(--section-title-gap);
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.world-grid img {
  width: 100%;
  aspect-ratio: 517 / 389;
  object-fit: cover;
}

.compliance-section {
  padding-block: var(--section-space-compact);
}

.compliance-section h2 {
  margin-bottom: var(--content-group-gap);
  color: var(--color-primary);
  font-size: var(--title-size-subsection);
  font-weight: 400;
  line-height: 1.32;
  text-align: center;
}

.compliance-grid {
  padding-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 70px;
  border-top: 1px solid var(--color-line);
}

.compliance-grid img {
  width: min(160px, 85%);
  aspect-ratio: 1;
  justify-self: center;
  object-fit: contain;
}

.process-section {
  padding-block: var(--section-space-compact);
}

.process-intro {
  display: grid;
  grid-template-columns: 0.36fr 1fr;
  align-items: center;
  gap: 58px;
}

.process-intro__copy {
  color: var(--color-primary);
}

.eyebrow {
  margin-bottom: 8px;
  font-family: var(--font-title);
  font-size: var(--title-size-label);
  font-weight: 700;
}

.process-intro__copy h2 {
  margin-bottom: 24px;
  font-size: var(--title-size-section);
  line-height: 1.02;
}

.process-intro__copy > p:last-child {
  max-width: 300px;
  color: var(--color-primary);
  font-size: 1rem;
}

.process-intro > img {
  width: 100%;
  aspect-ratio: 1108 / 295;
  object-fit: cover;
  border-radius: 14px;
}

.process-grid {
  margin: 28px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 8px;
  list-style: none;
}

.process-grid li {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.process-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.process-grid span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 38px;
  padding: 8px 6px;
  color: var(--color-white);
  background: var(--color-primary-strong);
  font-size: clamp(0.6rem, 0.75vw, 0.78rem);
  line-height: 1.1;
  text-align: center;
}

.process-grid b {
  margin-right: 3px;
  font-size: 1rem;
}

.process-certificates {
  width: 100%;
  margin: 60px auto 0;
}

.insights-section {
  min-height: auto;
  padding-top: var(--section-space-compact);
  padding-bottom: var(--section-space-compact);
  overflow: hidden;
}

.insights-section__rail {
  right: max(calc((100vw - var(--container)) / 2), 0px);
  bottom: 0;
  height: 840px;
}

.insights-section .container {
  position: relative;
  z-index: 1;
}

.insights-section .section-title {
  margin-bottom: var(--section-title-gap);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-line);
}

.insights-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 70px;
}

.insight-card {
  position: relative;
  height: 100%;
  display: grid;
  grid-template-rows: auto 92px 1fr;
  color: inherit;
  text-decoration: none;
  background: var(--color-white);
  box-shadow: 0 18px 28px rgb(49 67 73 / 14%);
  transform: none;
  transition:
    transform var(--transition),
    box-shadow var(--transition);
}

.insight-card--featured {
  transform: none;
}

.category-card:hover,
.category-card:focus-within,
.insight-card:hover,
.insight-card:focus-within {
  z-index: 5;
  transform: scale(1.025);
  box-shadow: 0 24px 40px rgb(47 70 79 / 24%);
}

@media (prefers-reduced-motion: reduce) {
  .category-card:hover,
  .category-card:focus-within,
  .insight-card:hover,
  .insight-card:focus-within,
  .product-card:hover img,
  .product-card:focus-within img {
    transform: none;
  }
}

.insight-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
}

.insight-card__image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}

.insight-card--featured .insight-card__image {
  aspect-ratio: 1;
}

.insight-card h3 {
  height: 92px;
  margin: 0;
  padding: 16px 14px;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: var(--color-primary-strong);
  font-size: var(--title-size-item);
  line-height: 1.2;
  text-align: center;
}

.insight-card h3 span,
.insight-card p span {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}

.insight-card h3 span {
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.insight-card p {
  min-height: 132px;
  margin: 0;
  padding: 18px 18px 22px;
  color: #8a8a8a;
  font-size: 0.86rem;
  line-height: 1.5;
}

.insight-card p span {
  -webkit-line-clamp: 6;
  line-clamp: 6;
}

@media (max-width: 1100px) {
  .hero {
    min-height: min(650px, calc(100vh - var(--header-height) - 124px));
  }

  .hero__inner {
    min-height: min(650px, calc(100vh - var(--header-height) - 124px));
  }

  .hero__copy {
    width: 55%;
  }

  .why-section {
    min-height: auto;
    background-position: right 24px top 32px;
    background-size: auto 560px;
  }

  .why-grid {
    grid-template-columns: 1fr;
  }

  .category-list {
    width: 100%;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .process-intro {
    grid-template-columns: 1fr;
  }

  .process-intro__copy > p:last-child {
    max-width: 620px;
  }

  .process-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .insights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insight-card--featured {
    transform: none;
  }

}

@media (max-width: 768px) {
  .hero {
    min-height: 720px;
  }

  .hero__slide {
    background-position: 72% center;
  }

  .hero__slide::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(250 247 243 / 68%);
  }

  .hero__inner {
    min-height: 720px;
    align-items: flex-end;
  }

  .hero__copy {
    width: 88%;
    padding-bottom: 90px;
    color: #789cab;
  }

  .hero__copy h1 {
    margin-bottom: 24px;
    font-size: var(--title-size-display);
  }

  .hero__copy p {
    margin-bottom: 32px;
  }

  .hero__arrow {
    display: none;
  }

  .hero-tagline {
    min-height: 146px;
    border-radius: 0 0 30px 30px;
  }

  .section-heading {
    margin-bottom: var(--section-title-gap);
    flex-direction: column;
  }

  .why-card {
    min-height: 300px;
  }

  .why-card__copy {
    width: 62%;
    padding: 48px 26px;
  }

  .category-list {
    gap: 34px;
  }

  .category-card {
    min-height: 330px;
    aspect-ratio: auto;
  }

  .category-card__product {
    width: 38%;
    object-position: left center;
  }

  .category-card__map {
    left: 38%;
    width: 62%;
    height: 100%;
    object-fit: fill;
    object-position: center;
  }

  .category-card__copy {
    top: 26%;
    left: 38%;
  }

  .category-card__swatches {
    left: 38%;
  }

  .category-card .button {
    right: 5%;
    bottom: 15%;
  }

  .product-grid {
    padding-top: var(--section-space-compact);
    padding-bottom: var(--section-space);
    gap: 72px 24px;
  }

  .belief-section__logo {
    width: min(78%, 520px);
    margin-bottom: var(--content-group-gap);
  }

  .belief-section {
    min-height: auto;
    padding-block: var(--section-space-compact);
  }

  .belief-section__rail {
    width: auto;
    height: 760px;
  }

  .belief-layout {
    display: grid;
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .belief-copy {
    width: 100%;
    padding-top: 0;
  }

  .belief-copy h2 {
    font-size: var(--title-size-section);
    line-height: 1;
  }

  .belief-copy h3 {
    margin-bottom: 42px;
    font-size: var(--title-size-subsection);
    line-height: 1.14;
  }

  .belief-copy p {
    max-width: 760px;
    font-size: 1.08rem;
    line-height: 1.5;
  }

  .belief-layout__portrait {
    position: static;
    width: min(100%, 870px);
    max-width: none;
    justify-self: center;
  }

  .partners-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
  }

  .world-section {
    border-radius: 30px;
  }

  .world-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .compliance-section h2 br {
    display: none;
  }

  .compliance-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .insights-grid {
    gap: 28px;
  }

}

@media (max-width: 540px) {
  :root {
    --section-space: 56px;
    --section-space-compact: 44px;
    --section-title-gap: 32px;
    --content-group-gap: 28px;
  }

  .products-section {
    padding-top: 40px;
    padding-bottom: 24px;
  }

  .why-section {
    padding-bottom: 36px;
    background-position: right -36px top 24px;
    background-size: auto 460px;
  }

  .section-heading {
    gap: 14px;
  }

  .hero__slide {
    background-position: 72% center;
  }

  .hero__copy {
    width: 100%;
  }

  .hero__copy p {
    font-size: 0.95rem;
  }

  .hero__dots {
    gap: 12px;
  }

  .hero__dots button {
    width: 52px;
  }

  .why-card {
    min-height: 0;
    background-position: right center;
  }

  .why-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(246 247 247 / 36%);
  }

  .why-card__copy {
    position: relative;
    z-index: 1;
    width: 72%;
    min-height: 0;
    padding: 28px 22px;
  }

  .why-card h3 {
    margin-bottom: 18px;
    font-size: 1.05rem;
  }

  .why-card p {
    font-size: 0.82rem;
    line-height: 1.42;
  }

  .category-card {
    min-height: 0;
    aspect-ratio: 2 / 1;
    border-radius: 18px;
  }

  .category-card__product {
    width: 36%;
    padding: 14px 8px;
    object-fit: contain;
    object-position: center;
    transform: none;
  }

  .category-card__map {
    left: 36%;
    width: 64%;
    object-fit: cover;
    object-position: center;
  }

  .category-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgb(255 255 255 / 18%);
  }

  .category-card__copy {
    top: 12%;
    right: 14px;
    left: 41%;
  }

  .category-card__swatches {
    top: 57%;
    left: 41%;
    width: 43%;
  }

  .category-card__copy h3 {
    margin-bottom: 6px;
    font-size: 1.22rem;
    line-height: 1.12;
  }

  .category-card__copy p {
    margin-bottom: 0;
    font-size: 0.82rem;
    line-height: 1.35;
  }

  .category-card .button {
    right: 14px;
    bottom: 8px;
    padding: 8px 12px;
    font-size: 0.72rem;
  }

  .product-carousel {
    padding-top: var(--section-space-compact);
    padding-bottom: 0;
    overflow: hidden;
  }

  .product-grid {
    width: 100%;
    padding: 0;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .product-grid::-webkit-scrollbar,
  .insights-grid::-webkit-scrollbar {
    display: none;
  }

  .product-grid .product-card {
    flex: 0 0 calc((100% - 12px) / 2);
    scroll-snap-align: start;
  }

  .product-card h3 {
    min-height: 38px;
    margin-top: 12px;
    font-size: 0.78rem;
    line-height: 1.35;
    text-align: center;
  }

  .carousel-controls {
    margin-top: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
  }

  .carousel-control {
    width: 42px;
    height: 42px;
    padding: 0;
    display: grid;
    place-items: center;
    color: var(--color-text);
    background: var(--color-primary-pale);
    border: 1px solid var(--color-line);
    border-radius: 50%;
    cursor: pointer;
    transition:
      color var(--transition),
      background-color var(--transition),
      border-color var(--transition),
      opacity var(--transition),
      transform var(--transition);
  }

  .carousel-control .lucide {
    width: 20px;
    height: 20px;
    display: block;
    pointer-events: none;
  }

  .carousel-control:hover:not(:disabled) {
    background: var(--color-primary-strong);
    border-color: var(--color-primary-strong);
  }

  .carousel-control:active {
    transform: scale(0.94);
  }

  .carousel-control:disabled {
    color: var(--color-text-soft);
    background: var(--color-surface);
    border-color: transparent;
    opacity: 0.75;
    cursor: default;
  }

  .carousel-status {
    min-width: 48px;
    margin: 0;
    color: var(--color-text-soft);
    font-size: 0.76rem;
    text-align: center;
  }

  .partners-grid__more {
    min-height: 74px;
    display: flex;
    gap: 12px;
  }

  .partners-grid__more span {
    width: 12px;
    height: 12px;
  }

  .partners-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px 12px;
  }

  .partners-grid > :nth-child(n + 10) {
    display: none;
  }

  .partners-section {
    padding-bottom: 32px;
  }

  .world-section {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .compliance-section h2 {
    margin-bottom: 24px;
    font-size: 1.1rem;
  }

  .compliance-grid {
    padding-top: 24px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 10px;
  }

  .compliance-grid img {
    width: 82%;
  }

  .compliance-section {
    padding-bottom: 28px;
  }

  .process-section {
    padding-top: 28px;
  }

  .world-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .belief-section {
    padding-block: 28px;
  }

  .belief-section__logo {
    width: min(70%, 280px);
    margin-bottom: 18px;
  }

  .belief-layout {
    gap: 18px;
  }

  .belief-copy h2 {
    margin-bottom: 12px;
  }

  .belief-copy h3 {
    margin-bottom: 20px;
  }

  .belief-copy p:last-child {
    margin-bottom: 0;
  }

  .belief-layout__portrait {
    width: 100%;
    max-width: none;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .process-grid > li:last-child {
    grid-column: 1 / -1;
  }

  .process-grid > li:last-child img {
    aspect-ratio: 2 / 1;
  }

  .process-grid span {
    font-size: 0.86rem;
  }

  .insights-grid {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: inline mandatory;
    scrollbar-width: none;
  }

  .insight-card {
    flex: 0 0 calc((100% - 12px) / 2);
    scroll-snap-align: start;
    grid-template-rows: auto 86px 1fr;
  }

  .insight-card h3 {
    height: 86px;
    padding: 12px 9px;
    font-size: 0.72rem;
    line-height: 1.18;
  }

  .insight-card p {
    min-height: 150px;
    padding: 14px 12px 18px;
    font-size: 0.72rem;
    line-height: 1.45;
  }

  .insight-card:hover,
  .insight-card:focus-within {
    transform: none;
  }

}
