/* Styles specific to document-translation page */

/* ----------------- Product Hero ----------------- */
.product-hero {
  padding: 6rem 30px 4rem;
  /* deep blue to indigo gradient similar to reference layout */
  background-image: linear-gradient(45deg, var(--black), var(--primary-2));
  color: var(--white);
  min-height: 50vh;
  display: flex;
  align-items: stretch;
}

.product-hero .container {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

/* reuse grid alignment defined in .hero-inner */
.product-hero .hero-inner {
  grid-row-gap: 20px;
  grid-column-gap: 20px;
}

.product-hero-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  text-align: center;
  gap: 3rem;
  max-width: 940px;
  margin: 0 auto;
}

.product-hero h1 {
  font-size: clamp(2rem, 4vw + 1rem, 3.2rem);
  margin-bottom: 1rem;
  line-height: 3.5rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

.product-hero p {
  color: var(--20-purple);
  font-size: 1.25rem;
  margin-bottom: 2rem;
}

.product-hero .placeholder {
  background: rgba(255, 255, 255, 0.15);
  height: 280px;
  border-radius: 8px;
}

.btn-book-demo {
  background-color: var(--primary-2);
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  color: #fff;
  text-align: center;
  border-radius: 30px;
  padding: 0.75rem 1.25rem;
  font-family: Helveticaneue, sans-serif;
  font-size: 1rem;
  font-style: normal;

  &:hover {
    background-color: var(--white);
    box-shadow: 0 0 16px 0 var(--primary-2);
    color: var(--primary-2);
    transform: scale(1.025);
  }
}

.btn-download-product-sheet {
  background-color: var(--20-purple);
  cursor: pointer;
  font-weight: 700;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  color: #000;
  text-align: center;
  border-radius: 30px;
  padding: 0.75rem 1.25rem;
  font-family: Helveticaneue, sans-serif;
  font-size: 1rem;
  font-style: normal;

  &:hover {
    background-color: var(--40-purple);
    box-shadow: 0 0 16px 0 var(--40-purple);
    color: var(--black);
    transform: scale(1.025);
  }
}

.btn-container {
  display: flex;
  justify-content: center;
  gap: 10px;
}

/* Sticky tab navigation under header */
.tab-nav {
  position: sticky;
  top: 4.5rem; /* header height */
  z-index: 90;
  background: var(--20-purple);
  line-height: 3rem;
  /* height: 3rem; */
  padding-left: 30px;
  padding-right: 30px;
  transition: all 0.2s;
}

.tab-nav-inner {
  display: flex;
  font-size: 16px;
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.tab-nav a {
  text-decoration: none;
  transition: all 0.2s;
  padding: 0.75rem 1.25rem;
  line-height: 1rem;
  font-weight: 700;
  color: var(--dark-gray);
  border-bottom: 2px solid var(--20-purple);
}

.tab-nav a:hover {
  outline: 0;
  color: var(--black);
  border-bottom: 2px solid var(--black);
}

.tab-nav a.active {
  outline: 0;
  color: var(--black);
  border-bottom: 2px solid var(--primary-color);
}

/* Placeholder background image override for this page */
#MSDI .section-image {
  background: url('../assets/knowdge-mgt/multi-source-data-integration.png')
    center/cover no-repeat;
}
#PIS .section-image {
  background: url('../assets/knowdge-mgt/precise-intelligent-search.png')
    center/cover no-repeat;
}
#ACS .section-image {
  background: url('../assets/knowdge-mgt/access-control-security.png')
    center/cover no-repeat;
}
#legalGlossary .section-image {
  background: url('../assets/translation/legal-glossary.png') center/cover
    no-repeat;
}

#secondaryTranslation .section-image {
  background: url('../assets/translation/secondary-fine-translation.png')
    center/cover no-repeat;
}

#structuralConsistency .section-image {
  background: url('../assets/translation/keep-structural-consistency.png')
    center/cover no-repeat;
}
#proofreading .section-image {
  background: url('../assets/translation/proofreading-by-sentence.png')
    center/cover no-repeat;
}
#LG .section-image {
  background: url('../assets/dd/rich-legal-data.png') center/cover no-repeat;
}
#SCJSearch .section-image {
  background: url('../assets/dd/') center/cover no-repeat;
}

/* Intake feature section */
.feature-section {
  padding: 140px 30px;
}

.light-bg:nth-child(odd) {
  background: var(--white);
}

.light-bg:nth-child(even) {
  background: var(--10-purple);
}

.intake-inner {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  align-items: center;
  gap: 3rem;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}
.intake-inner .text h2 {
  font-weight: 700;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.intake-inner p {
  color: var(--dark-gray);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.8rem;
}

.tick-list {
  list-style: none;
  margin-top: 20px;
  display: grid;
  gap: 0.75rem;
  font-size: 1rem;
  line-height: 1.5;
}
.tick-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 12px;
}

.tick-list li::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 24px;
  background-image: url('../assets/purple-check.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-right: 20px;
  vertical-align: middle;
  flex: 0 0 auto;
}
