/* Social Research page — Figma node 4398:5 */

/* Hero */
.page-hero {
  position: relative;
  overflow: hidden;
}

.page-hero__wrap {
  padding-top: 40px;
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

.page-hero__bg {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(-1 * var(--header-h) - 13px);
  height: 778px;
  background: var(--bg-light);
  border-radius: 0 0 60px 60px;
  z-index: 0;
}

.hero__grid {
  display: grid;
  grid-template-columns: 572px 1fr;
  gap: 48px;
  align-items: start;
}

.hero__title {
  font-size: 40px;
  font-weight: 700;
  line-height: normal;
  color: var(--navy);
  margin-bottom: 18px;
  padding-top: 40px;
}

.hero__title-accent { color: var(--nav-active); }

.hero__desc {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: var(--navy);
  max-width: 572px;
  margin-bottom: 42px;
}

.hero__visual {
  position: relative;
  width: 659px;
  height: 512px;
  justify-self: end;
  padding-top: 50px;
}

.hero__collage {
  position: relative;
  z-index: 1;
  display: block;
  width: 659px;
  height: 512px;
  max-width: none;
  object-fit: contain;
  transform: translateY(-90px);
}

/* What is Social Research? */
.what-is {
  padding-top: 0;
  padding-bottom: 116px;
}

.what-is__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 61px;
  color: var(--text);
  margin-bottom: 11px;
}

.what-is__desc {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  color: var(--text);
  max-width: 978px;
  margin-bottom: 45px;
}

.what-is__grid {
  display: grid;
  grid-template-columns: repeat(4, 284px);
  gap: 21px;
  justify-content: start;
}

.what-card {
  position: relative;
  width: 284px;
  height: 302px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-card);
  overflow: hidden;
  cursor: pointer;
}

.what-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.what-card__img--data {
  width: 180.98%;
  height: 106.2%;
  left: -64.79%;
  top: 0.12%;
  max-width: none;
}

.what-card__overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--radius-card);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54.561%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.what-card__overlay--audience {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54.988%, rgba(0, 0, 0, 0.8) 100%);
}

.what-card__overlay--brand {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54.716%, rgba(0, 0, 0, 0.8) 100%);
}

.what-card__overlay--data {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 52.188%, rgba(0, 0, 0, 0.8) 82.011%);
}

.what-card__body {
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 16px;
  color: var(--white);
  z-index: 1;
  transform: translateY(calc(100% + 16px));
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.35s ease;
}

.what-card:hover .what-card__overlay,
.what-card:focus-within .what-card__overlay {
  opacity: 1;
}

.what-card:hover .what-card__body,
.what-card:focus-within .what-card__body {
  transform: translateY(0);
  opacity: 1;
}

.what-card__body h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 5px;
}

.what-card__body p {
  font-size: 11px;
  font-weight: 400;
  line-height: normal;
  max-width: 262px;
}

/* Why Social Research Matters */
.why-matters {
  padding-bottom: 127px;
}

.why-matters__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 61px;
  color: var(--text);
  margin-bottom: 20px;
}

.why-matters__desc {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  color: var(--text);
  max-width: 1081px;
  margin-bottom: 41px;
}

.why-matters__list {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.why-matters__item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 124px;
  align-items: start;
  min-height: 82px;
  --process-progress: 0;
  transform: translateY(calc((1 - var(--process-progress)) * 18px));
  will-change: transform;
}

.why-matters__num {
  font-size: 60px;
  font-weight: 800;
  line-height: normal;
  color: color-mix(in srgb, var(--navy) calc(var(--process-progress) * 100%), #b8b9c9);
  padding-left: 29px;
  opacity: 0.9;
}

.why-matters__content h3 {
  font-size: 35px;
  font-weight: 600;
  line-height: normal;
  color: color-mix(in srgb, var(--text) calc(var(--process-progress) * 100%), #b8b9c9);
  margin-bottom: 5px;
  margin-top: 4px;
}

.why-matters__content p {
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
  color: color-mix(in srgb, var(--text) calc(var(--process-progress) * 100%), #c5c6d4);
  max-width: 824px;
}

/* Industries */
.industries { padding-bottom: 116px; }

.industries__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 0.9518;
  color: var(--navy);
  max-width: 997px;
  margin-bottom: 16px;
}

.industries__desc {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  color: var(--text);
  max-width: 878px;
  margin-bottom: 51px;
}

.industries__grid {
  display: grid;
  grid-template-columns: 281px 281px 281px 281px;
  column-gap: 25px;
  row-gap: 20px;
  max-width: 1199px;
}

.industry-card {
  position: relative;
  width: 281px;
  height: 334px;
  border-radius: var(--radius-card);
  overflow: hidden;
}

.industry-card--row2 { width: 277px; height: 329px; }
.industry-card--bfsi,
.industry-card--education { border-radius: 22px; }
.industry-card--media,
.industry-card--fmcg { border-radius: 18px; }

.industry-card > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.industry-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 20.147%, rgba(0, 0, 0, 0.8) 100%);
  pointer-events: none;
}

.industry-card__overlay--bfsi {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44.844%, rgba(0, 0, 0, 0.9) 100%);
}

.industry-card__overlay--education {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.industry-card__overlay--electronics {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%);
}

.industry-card__overlay--travel {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 31.653%, rgba(0, 0, 0, 0.9) 100%);
}

.industry-card__overlay--healthcare {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 36.737%, rgba(0, 0, 0, 0.9) 100%);
}

.industry-card__overlay--media {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 44.634%, rgba(0, 0, 0, 0.9) 100%);
}

.industry-card__overlay--fmcg {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.9) 100%);
}

.industry-card__body {
  position: absolute;
  left: 21px;
  right: 21px;
  bottom: 20px;
  color: var(--white);
  z-index: 1;
}

.industry-card__body h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: normal;
  margin-bottom: 6px;
}

.industry-card--media .industry-card__body h3,
.industry-card--fmcg .industry-card__body h3 { font-size: 22px; }

.industry-card__body p {
  font-size: 10px;
  font-weight: 400;
  line-height: normal;
}

.industries__grid .industry-card:nth-child(n+5) { width: 277px; }

@media (max-width: 1320px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__visual {
    justify-self: center;
    width: 100%;
    max-width: 659px;
    height: auto;
  }
  .hero__collage {
    width: 100%;
    max-width: 659px;
    height: auto;
    transform: none;
  }
  .what-is__grid {
    grid-template-columns: repeat(2, 284px);
    justify-content: center;
  }
  .industries__grid {
    grid-template-columns: repeat(2, minmax(260px, 281px));
    justify-content: center;
  }
}

@media (max-width: 992px) {
  .why-matters__item { grid-template-columns: 60px 1fr; gap: 24px; }
  .why-matters__num { font-size: 48px; padding-left: 0; }
}

@media (max-width: 640px) {
  .hero__title { font-size: 32px; }
  .what-is__title,
  .why-matters__title,
  .industries__title { font-size: 32px; line-height: 1.15; }
  .what-is__grid { grid-template-columns: 1fr; }
  .what-card { width: 100%; }
  .industries__grid { grid-template-columns: 1fr; }
  .industries__grid .industry-card,
  .industries__grid .industry-card:nth-child(n+5) { width: 100%; }
}
