/* Data Collection page — Figma node 4357:186 */

/* 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: 547px;
  margin-bottom: 42px;
}

.hero__visual {
  position: relative;
  width: 659px;
  height: 510px;
  justify-self: end;
  padding-top: 36px;
}

.hero__collage {
  position: relative;
  z-index: 1;
  display: block;
  width: 659px;
  height: 510px;
  max-width: none;
  object-fit: contain;
  transform: translateY(-90px);
}

/* What is Data Collection? */
.what-is {
  padding-top: 0;
  padding-bottom: 100px;
}

.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--secondary {
  width: 170.21%;
  height: 99.88%;
  left: -49.39%;
  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) 63.043%, rgba(0, 0, 0, 0.8) 82.318%);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.what-card__overlay--interviews {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54.988%, rgba(0, 0, 0, 0.8) 85.278%);
}

.what-card__overlay--observational {
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 54.716%, rgba(0, 0, 0, 0.8) 100%);
}

.what-card__overlay--secondary {
  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: 233px;
}

/* A Structured Approach to Quality Data */
.quality-approach {
  position: relative;
  padding: 53px 0 119px;
  margin-bottom: 76px;
}

.quality-approach__bg {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
  width: 1722px;
  max-width: calc(100vw - 40px);
  height: 646px;
  background: var(--bg-light);
  z-index: 0;
}

.quality-approach__inner {
  position: relative;
  z-index: 1;
}

.quality-approach__title {
  font-size: 45px;
  font-weight: 700;
  line-height: 61px;
  color: var(--text);
  margin-bottom: 17px;
}

.quality-approach__desc {
  font-size: 22px;
  font-weight: 500;
  line-height: normal;
  color: var(--text);
  max-width: 954px;
  margin-bottom: 80px;
}

.quality-approach__grid {
  display: grid;
  grid-template-columns: 284px 285px 285px 284px;
  column-gap: 21px;
  align-items: start;
  max-width: 1199px;
}

.approach-card {
  position: relative;
  min-height: 271px;
  padding: 22px 23px 24px;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: var(--radius-card);
  --approach-progress: 0;
  opacity: var(--approach-progress);
  transform: translateY(calc((1 - var(--approach-progress)) * 56px));
  will-change: transform, opacity;
}

.approach-card--objectives { margin-top: 0; }
.approach-card--collection { margin-top: -42px; }
.approach-card--methodology { margin-top: 56px; }
.approach-card--insight { margin-top: 14px; }

.approach-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 44px;
  margin-bottom: 27px;
  background: #fafafa;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: var(--radius-value-icon);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
}

.approach-card__icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  opacity: 0.6;
}

.approach-card__icon--methodology img {
  width: 35px;
  height: 34px;
}

.approach-card h3 {
  font-size: 30px;
  font-weight: 700;
  line-height: normal;
  color: var(--orange-header);
  margin-bottom: 9px;
}

.approach-card p {
  font-size: 17px;
  font-weight: 400;
  line-height: normal;
  color: var(--text);
  max-width: 235px;
}

/* 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 (prefers-reduced-motion: reduce) {
  .approach-card {
    --approach-progress: 1;
    opacity: 1;
    transform: none;
  }
}

@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;
  }
  .quality-approach__grid {
    grid-template-columns: repeat(2, minmax(260px, 285px));
    justify-content: center;
  }
  .approach-card--objectives,
  .approach-card--collection,
  .approach-card--methodology,
  .approach-card--insight {
    margin-top: 0;
  }
  .industries__grid {
    grid-template-columns: repeat(2, minmax(260px, 281px));
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .hero__title { font-size: 32px; }
  .what-is__title,
  .quality-approach__title,
  .industries__title { font-size: 32px; line-height: 1.15; }
  .what-is__grid { grid-template-columns: 1fr; }
  .what-card { width: 100%; }
  .quality-approach__grid { grid-template-columns: 1fr; }
  .industries__grid { grid-template-columns: 1fr; }
  .industries__grid .industry-card,
  .industries__grid .industry-card:nth-child(n+5) { width: 100%; }
}
