/* Fallbacks for global.scss variables */
.max-container {
  padding: 0;
  max-width: 100%;
}

/* ==========================================================================
   EDIT MODE (banner layout only - edit button styles are in edit-profile-popup.css)
   ========================================================================== */
.techdBanner--emerging-tech.edit-mode-active {
  padding-top: 150px;
}

/* ==========================================================================
   HEADER
   ========================================================================== */
.header .header__inner,
.header--fixed .header__inner {
  background-color: var(--primary, #0f3732);
}

.ip-banner {
  display: none;
}

/* ==========================================================================
   REVIEWS AJAX LOADING
   ========================================================================== */
.tech-reviews-loading {
  text-align: center;
  padding: 20px;
}

.tech-reviews-loading-text {
  color: var(--font-color-light, #fff);
}

.techdEmtechReviews__grid .tech-reviews-loading {
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */
.img-container {
  position: relative;
  display: block;
}

.img-container canvas {
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--secondary, #06bda6);
}

.img-container img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-container.no-bg canvas {
  background-color: transparent;
}

.img-container.no-bg img {
  -o-object-fit: contain;
  object-fit: contain;
}

.techdScreenshots__popup-prev.slick-hidden,
.techdScreenshots__popup-next.slick-hidden,
.techdScreenshots__popup-prev-mobile.slick-hidden,
.techdScreenshots__popup-next-mobile.slick-hidden,
.techdReviews__popup-prev.slick-hidden,
.techdReviews__popup-next.slick-hidden,
.techdReviews__popup-prev-mobile.slick-hidden,
.techdReviews__popup-next-mobile.slick-hidden {
  display: none !important;
}

.bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-img.fixed {
  background-attachment: scroll;
}

.mobile .bg-img.fixed,
.safari-true .bg-img.fixed {
  background-attachment: scroll !important;
}

.section-title {
  color: var(--font-color-title, #050505);
  font-size: var(--font-size-title, clamp(35px, 3.25vw, 52px));
  font-weight: 500;
  line-height: 1.2;
  text-align: center;
  font-family: var(--font-family-title, 'Outfit', sans-serif);
}

.section-title.wht {
  color: var(--font-color-light, #fff);
}

.title-accent {
  display: flex;
  justify-content: flex-start;
  margin-top: 15px;
  justify-content: center;
}

.title-accent.wht {
  filter: brightness(0) invert(1);
}

/* GLOBAL BUTTON - copied from global.scss */
.global-btn {
  display: block;
  background-color: var(--secondary, #06bda6);
  border-radius: 18px;
  border-bottom-right-radius: 0;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.5),
    inset 0 -1px 5px rgba(0, 0, 0, 0.5);
  font-weight: 600;
  font-size: 14px;
  padding: 12px 23px;
  color: var(--font-color-light, #fff);
  text-transform: uppercase;
  text-align: center;
  width: 165px;
}

.global-btn:hover,
.global-btn:focus {
  background-color: var(--accent, #16bda6);
  color: var(--font-color-light, #fff);
}

.global-btn.secondary {
  background-color: rgba(22, 189, 166, 0.1);
}

.global-btn.secondary:hover,
.global-btn.secondary:focus {
  background-color: var(--secondary, #06bda6);
  color: var(--font-color-light, #fff);
}

.global-btn.outline {
  background-color: transparent;
  outline: 1px solid var(--secondary, #06bda6);
  color: var(--font-color-title, #050505);
  box-shadow: none;
}

.global-btn.outline:hover,
.global-btn.outline:focus {
  background-color: var(--secondary, #06bda6);
  color: var(--font-color-light, #fff);
  outline: none;
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.5),
    inset 0 -1px 5px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   BANNER
   ========================================================================== */
.techdBanner--emerging-tech {
  padding: 160px 15px 60px;
  background: #fff;
  min-height: 575px;
}

.techdBanner--emerging-tech .techdBanner__inner {
  position: relative;
  width: 100%;
  max-width: 600px;
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.techdBanner--emerging-tech .techdBanner__branding,
.techdBanner--emerging-tech .techdBanner__emtech-illustration {
  width: 100%;
}

.techdBanner--emerging-tech .techdBanner__branding {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.techdBanner--emerging-tech .techdBanner__logo {
  margin-top: 10px;
  max-width: 350px;
}

.techdBanner--emerging-tech .techdBanner__founded {
  margin: 0;
  margin-top: 16px;
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--font-color-title, #050505);
  text-align: center;
}

.techdBanner--emerging-tech .techdBanner__welcome-badge .img-container {
  max-width: 140px;
}

.techdBanner--emerging-tech .techdBanner__emtech-illustration .img-container {
  max-width: 220px;
  margin-left: auto;
  margin-right: auto;
}

.techdBanner--emerging-tech-bg {
  position: relative;
  background: transparent;
  min-height: 800px;
  display: flex;
  flex-direction: column;
}

.techdBanner--emerging-tech-bg .techdBanner__inner {
  margin: 0 auto;
  margin-top: auto;
}

.techdBanner--emerging-tech-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--primary, #0f3732), transparent);
  z-index: -1;
}

.techdBanner--emerging-tech-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1;
}

.techdBanner--emerging-tech-bg .techdBanner__bg--screenshots {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -2;
  display: flex;
  width: 100%;
  height: 100%;
}

.techdBanner--emerging-tech-bg .techdBanner__bg--screenshots .techdBanner__bg-panel {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.techdBanner--emerging-tech-bg .techdBanner__bg--screenshots .techdBanner__bg-panel:nth-child(n+2) {
  display: none;
}

.techdBanner--emerging-tech-bg .techdBanner__bg--screenshots .techdBanner__bg-panel .bg-img {
  background-color: var(--primary, #0f3732);
}

.techdBanner--emerging-tech-bg .techdBanner__logo img {
  filter: brightness(0) invert(1);
}

.techdBanner--emerging-tech-bg .techdBanner__logo--no-filter img {
  filter: none;
}

.techdBanner--emerging-tech-bg .techdBanner__founded {
  color: var(--font-color-light, #fff);
}

/* ==========================================================================
   QUICK TAKE
   ========================================================================== */
.techdQuickTake--emtech {
  position: relative;
  padding: 60px 15px 60px;
}

.techdQuickTake--emtech .bg-img {
  background-color: var(--primary, #0f3732);
  height: 100%;
}

.techdQuickTake--emtech .techdQuickTake__inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
  justify-content: center;
}

.techdQuickTake--emtech .techdQuickTake__inner--center {
  text-align: center;
}

.techdQuickTake--emtech .techdQuickTake__inner--center .section-title {
  text-align: center;
}

.techdQuickTake--emtech .techdQuickTake__text {
  text-align: center;
}

.techdQuickTake--emtech .techdQuickTake__inner--center .techdQuickTake__text {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.techdQuickTake--emtech .techdQuickTake__video {
  width: 100%;
}

.techdQuickTake--emtech .techdQuickTake__video .poster {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #464646;
}

.techdQuickTake--emtech .techdQuickTake__video .poster .play-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--font-color-light, #fff);
  width: 65px;
  height: 65px;
  border: 3px solid var(--font-color-light, #fff);
  border-radius: 50%;
  transition: var(--default-transition, .3s cubic-bezier(.4, 0, .2, 1));
  pointer-events: none;
  background: transparent;
}

.techdQuickTake--emtech .techdQuickTake__video .poster .play-btn i {
  position: relative;
  left: 3px;
  font-size: 24px;
}

.techdQuickTake--emtech .techdQuickTake__video .poster:hover .play-btn {
  background-color: var(--secondary, #06bda6);
  border-color: var(--secondary, #06bda6);
}

.techdQuickTake--emtech .techdQuickTake__text-content {
  color: var(--font-color-light, #fff);
  font-size: 15px;
  line-height: 1.73;
  margin-top: 5px;
  letter-spacing: .02em;
}

/* ==========================================================================
   PRODUCT SCREENSHOTS
   ========================================================================== */
.techdScreenshots--emtech {
  position: relative;
  background: #fff;
  padding: 60px 15px;
}

.techdScreenshots--emtech .techdScreenshots__inner {
  max-width: 400px;
  width: 100%;
  margin: 0 auto;
}

.techdScreenshots--emtech .section-title {
  font-size: clamp(35px, 3.0625vw, 49px);
  text-align: center;
}

.techdScreenshots--emtech .title-accent {
  margin-top: 22px;
}

.techdScreenshots--emtech .title-accent.center .img-container {
  display: block;
  margin: 0 auto;
}

.techdScreenshots__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 50px;
}

.techdScreenshots__item {
  display: block;
  text-decoration: none;
  width: 100%;
}

.techdScreenshots--emtech .techdScreenshots__grid .img-container {
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 5px 22px rgba(0, 0, 0, 0.08);
}

.techdScreenshots__popup {
  padding: 40px 30px;
  position: relative;
  padding-bottom: 60px;
}

.techdScreenshots__popup-slider {
  max-width: 1200px;
  margin: 0 auto;
}

.techdScreenshots__popup-slider:not(.slick-initialized)>.techdScreenshots__popup-slide:nth-child(n+2) {
  display: none;
}

.techdScreenshots__popup-slider .slick-track {
  display: flex;
  align-items: center;
}

.techdScreenshots__popup-slide {
  width: 100%;
}

.techdScreenshots__popup-slide .img-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 31px;
  overflow: hidden;
}

.techdScreenshots__popup-slide img {
  max-width: 100%;
  height: auto;
}

.techdScreenshots__popup-prev,
.techdScreenshots__popup-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--font-color-light, #fff);
  font-size: 16px;
  transition: var(--default-transition, .3s cubic-bezier(.4, 0, .2, 1));
  -webkit-text-stroke: 1px var(--font-color-light, #fff);
  display: none !important;
  align-items: center;
}

.techdScreenshots__popup-prev {
  left: -15px;
}

.techdScreenshots__popup-next {
  right: -15px;
}

.techdScreenshots__popup-prev:hover,
.techdScreenshots__popup-next:hover {
  color: var(--secondary, #06bda6);
  -webkit-text-stroke: 1px var(--secondary, #06bda6);
}

.techdScreenshots__popup-counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.techdScreenshots__popup-counter-wrapper .techdScreenshots__popup-prev-mobile,
.techdScreenshots__popup-counter-wrapper .techdScreenshots__popup-next-mobile {
  display: flex;
}

.techdScreenshots__popup-counter-wrapper .techdScreenshots__popup-counter {
  margin-top: 0;
}

.techdScreenshots__popup-prev-mobile,
.techdScreenshots__popup-next-mobile {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--font-color-light, #fff);
  font-size: 16px;
  transition: var(--default-transition, .3s cubic-bezier(.4, 0, .2, 1));
  -webkit-text-stroke: 1px var(--font-color-light, #fff);
  display: none;
  align-items: center;
}

.techdScreenshots__popup-prev-mobile:hover,
.techdScreenshots__popup-next-mobile:hover {
  color: var(--secondary, #06bda6);
  -webkit-text-stroke: 1px var(--secondary, #06bda6);
}

.techdScreenshots__popup-counter {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--font-color-light, #fff);
}

.techdScreenshots__popup {
  padding-left: 0;
  padding-right: 0;
}

/* ==========================================================================
   CLIENT REVIEWS
   ========================================================================== */
.techdEmtechReviews {
  position: relative;
  padding: 60px 15px;
  overflow: hidden;
}

.techdEmtechReviews__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 0 33px 33px;
  overflow: hidden;
}

.techdEmtechReviews__bg .bg-img {
  background-color: var(--primary, #0f3732);
}

.techdEmtechReviews__inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.techdEmtechReviews .section-title {
  font-size: clamp(35px, 3.0625vw, 49px);
}

.techdEmtechReviews .title-accent {
  margin-top: 20px;
}

.techdEmtechReviews .title-accent.center .img-container {
  display: block;
  margin: 0 auto;
}

.techdEmtechReviews__grid {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  gap: 40px;
  margin-top: 35px;
}

.techdEmtechReviews__placeholder {
  color: var(--font-color-light, #fff);
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1.18;
  text-align: center;
  margin-top: 65px;
  width: 100%;
}

.techdEmtechReviews__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex: 1 1 100%;
  min-width: 0;
  min-height: 0;
}

.techdEmtechReviews__rating {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  margin-bottom: 12px;
}

.techdEmtechReviews__rating .ai-font-star-fill {
  color: #d4d4d4;
  font-size: 21px;
}

.techdEmtechReviews__rating .ai-font-star-fill.filled {
  color: #f28f3d;
}

.techdEmtechReviews__quote {
  color: var(--font-color-light, #fff);
  font-size: 14px;
  line-height: 1.857;
  letter-spacing: 0.02em;
}

.techdEmtechReviews__author {
  color: var(--font-color-light, #fff);
  font-size: 14px;
  font-weight: 500;
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  text-align: center;
  padding-top: 16px;
}

.techdEmtechReviews__item .techdReview__reply {
  margin-top: 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.5), inset 0 -1px 5px rgba(0, 0, 0, 0.5);
  border-radius: 14px;
  font-size: 12px;
  font-style: italic;
  color: var(--font-color-light, #fff);
  line-height: 1.6;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.techdEmtechReviews__item .techdReview__reply-label {
  font-weight: bold;
  font-style: italic;
  margin-bottom: 8px;
  text-align: center;
}

.techdEmtechReviews .techdReviews__buttons {
  margin-top: 45px;
}

.techdReviews__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
  flex-direction: column;
  margin-top: 28px;
}

.techdReviews__buttons .global-btn {
  width: 100%;
  max-width: 190px;
  margin: 0;
  padding-left: 10px;
  padding-right: 10px;
}

/* ==========================================================================
   PRODUCT DESCRIPTION
   ========================================================================== */
.techdDescription--emtech {
  position: relative;
  background: #fff;
  padding: 60px 15px;
}

.techdDescription--emtech .techdDescription__inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.techdDescription--emtech .section-title {
  font-size: clamp(35px, 3.0625vw, 49px);
  text-align: center;
}

.techdDescription--emtech .title-accent {
  margin-top: 22px;
}

.techdDescription--emtech .title-accent.center .img-container {
  display: block;
  margin: 0 auto;
}

.techdDescription--emtech .techdDescription__text {
  margin-top: 30px;
  text-align: center;
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.857;
}

.techdDescription--emtech .techdDescription__text p {
  margin-bottom: 27px;
}

.techdDescription--emtech .techdDescription__text p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   PERFECT FOR
   ========================================================================== */
.techdFor--emtech {
  position: relative;
  background: #fff;
  padding: 60px 15px;
}

.techdFor--emtech .techdFor__inner {
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

.techdFor--emtech .section-title {
  font-size: clamp(35px, 3.0625vw, 49px);
  text-align: center;
}

.techdFor--emtech .title-accent {
  margin-top: 22px;
}

.techdFor--emtech .title-accent.center .img-container {
  display: block;
  margin: 0 auto;
}

.techdFor--emtech .techdFor__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
}

.techdFor--emtech .techdFor__list .perfect-for {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: var(--primary, #0f3732);
  border-radius: 12px;
  padding: 30px 20px;
  width: 100%;
  height: 150px;
}

.techdFor--emtech .techdFor__list .perfect-for .text {
  color: var(--font-color-light, #fff);
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-size: 18px;
}

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.techdEmtechWorks {
  position: relative;
  padding: 60px 15px;
  overflow: hidden;
}

.techdEmtechWorks__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 0 33px 33px;
  overflow: hidden;
}

.techdEmtechWorks__bg .bg-img {
  background-color: var(--primary, #0f3732);
}

.techdEmtechWorks__inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.techdEmtechWorks .section-title {
  font-size: clamp(35px, 3.0625vw, 49px);
}

.techdEmtechWorks .title-accent {
  margin-top: 20px;
}

.techdEmtechWorks .title-accent.center .img-container {
  display: block;
  margin: 0 auto;
}

.techdEmtechWorks__infographic {
  margin-top: 30px;
  display: flex;
  justify-content: center;
}

.techdEmtechWorks__infographic .img-container {
  border-radius: 10px;
  overflow: hidden;
}

.techdEmtechWorks__infographic img {
  box-shadow: 0 3px 79px rgba(0, 0, 0, 0.23);
  display: block;
  max-width: 100%;
  height: auto;
}

/* ==========================================================================
   KEY FEATURES + DEMO
   ========================================================================== */
.techdFeatures--emtech {
  position: relative;
  padding: 60px 15px;
}

.techdFeatures--emtech .techdFeatures__inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
}

.techdFeatures--emtech .techdFeatures__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.techdFeatures--emtech .techdFeatures__section {
  width: 100%;
}

.techdFeatures--emtech .techdFeatures__section .section-title {
  font-size: clamp(35px, 3.0625vw, 49px);
}

.techdFeatures--emtech .techdFeatures__section .title-accent {
  margin-top: 22px;
}

.techdFeatures--emtech .techdFeatures__capabilities {
  text-align: center;
}

.techdFeatures--emtech .techdFeatures__content .line {
  display: none;
  width: 1px;
  height: inherit;
  background-color: #c3c3c3;
  flex-shrink: 0;
}

.techdFeatures--emtech .techdFeatures__list {
  margin-top: 34px;
}

.techdFeatures--emtech .techdFeatures__item {
  position: relative;
  padding-left: 0;
  margin-bottom: 35px;
}

.techdFeatures--emtech .techdFeatures__item:last-child {
  margin-bottom: 0;
}

.techdFeatures--emtech .techdFeatures__item::before {
  display: none;
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 7.5px;
  height: 7.5px;
  background-color: var(--accent, #2c503c);
  border-radius: 50%;
}

.techdFeatures--emtech .techdFeatures__item .bullet-title {
  display: block;
  color: var(--font-color-title, #050505);
  font-weight: 500;
  font-size: 20px;
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  margin-bottom: 0px;
  line-height: 1.2;
}

.techdFeatures--emtech .techdFeatures__item .bullet-text {
  font-size: 14px;
  letter-spacing: 0.02em;
  line-height: 1.857;
}

.techdFeatures--emtech .techdFeatures__demo-video .poster {
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  border: 1px solid #464646;
}

.techdFeatures--emtech .techdFeatures__demo-video .poster a {
  display: block;
}

.techdFeatures--emtech .techdFeatures__demo-video .poster .play-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  right: 0;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--font-color-light, #fff);
  width: 65px;
  height: 65px;
  border: 3px solid var(--font-color-light, #fff);
  border-radius: 50%;
  transition: var(--default-transition, .3s cubic-bezier(.4, 0, .2, 1));
  pointer-events: none;
  background: transparent;
}

.techdFeatures--emtech .techdFeatures__demo-video .poster .play-btn i {
  position: relative;
  left: 3px;
  font-size: 24px;
}

.techdFeatures--emtech .techdFeatures__demo-video .poster:hover .play-btn {
  background-color: var(--secondary, #06bda6);
  border-color: var(--secondary, #06bda6);
}

/* ==========================================================================
   PRICING
   ========================================================================== */
.techdEmtechPricing {
  position: relative;
  padding: 60px 15px;
  overflow: hidden;
  margin-bottom: 80px;
}

.techdEmtechPricing__bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  border-radius: 0 0 33px 33px;
  overflow: hidden;
}

.techdEmtechPricing__bg .bg-img {
  background-color: var(--primary, #0f3732);
}

.techdEmtechPricing__inner {
  max-width: 500px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
}

.techdEmtechPricing .section-title {
  font-size: clamp(35px, 3.0625vw, 49px);
}

.techdEmtechPricing .title-accent {
  margin-top: 20px;
}

.techdEmtechPricing .title-accent.center .img-container {
  display: block;
  margin: 0 auto;
}

.techdEmtechPricing__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px;
  margin-top: 30px;
}

.techdEmtechPricing__item {
  width: 100%;
}

.techdEmtechPricing__item .img-container {
  border-radius: 50px;
  overflow: hidden;
}

.techdEmtechPricing__item .img-container img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 3px 79px rgba(0, 0, 0, 0.23);
}

/* ==========================================================================
   REVIEWS POPUP
   ========================================================================== */
.techdReviews__popup {
  padding: 40px 30px;
  position: relative;
  padding-bottom: 60px;
}

.techdReviews__popup-slider {
  margin: 0 auto;
}

.techdReviews__popup-slider:not(.slick-initialized)>.techdReviews__popup-slide:nth-child(n+2) {
  display: none;
}

.techdReviews__popup-slider:not(.slick-initialized) {
  display: block;
  width: 100%;
}

.techdReviews__popup-slider:not(.slick-initialized)>.techdReviews__popup-slide {
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  flex-shrink: 0;
  display: block;
}

.techdReviews__popup-slider .slick-track {
  display: flex;
  align-items: stretch;
}

.techdReviews__popup-slide {
  width: 100%;
}

.techdReviews__popup-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.techdReviews__popup-review-box {
  background: #ffffff;
  border-radius: 31px;
  padding: 40px 15px 40px;
  display: flex;
  flex-direction: column;
  text-align: center;
}

.techdReviews__popup-review-header {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  gap: 15px;
  flex-direction: column;
}

.techdReviews__popup-review-header .img-container {
  width: 34px;
  height: 24px;
  flex-shrink: 0;
}

.techdReviews__popup-quote-icon {
  width: 34px;
  height: 24px;
}

.techdReviews__popup-review-rating {
  display: flex;
  gap: 4px;
  flex-shrink: 0;
  padding-right: 0;
  justify-content: center;
}

.techdReviews__popup-review-rating .ai-font-star-fill {
  font-size: 20px;
  color: #ddd;
}

.techdReviews__popup-review-rating .ai-font-star-fill.filled {
  color: #f28f3d;
}

.techdReviews__popup-review-text {
  flex: 1;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: .02em;
}

.techdReviews__popup-review-box .techdReview__reply {
  margin-top: 15px;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.03);
  box-shadow: inset 0 1px 3px rgba(255, 255, 255, 0.5), inset 0 -1px 5px rgba(0, 0, 0, 0.5);
  border-radius: 14px;
  font-size: 12px;
  font-style: italic;
  color: var(--font-color-default, #363d49);
  line-height: 1.6;
}

.techdReviews__popup-review-box .techdReview__reply-label {
  font-weight: bold;
  font-style: italic;
  margin-bottom: 8px;
}

.techdReviews__popup-review-author {
  font-size: 14px;
  text-transform: uppercase;
  margin-top: auto;
  font-weight: 600;
}

.techdReviews__popup-prev,
.techdReviews__popup-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--font-color-light, #fff);
  font-size: 16px;
  transition: var(--default-transition, .3s cubic-bezier(.4, 0, .2, 1));
  -webkit-text-stroke: 1px var(--font-color-light, #fff);
  display: none !important;
  align-items: center;
}

.techdReviews__popup-prev {
  left: -15px;
}

.techdReviews__popup-next {
  right: -15px;
}

.techdReviews__popup-prev:hover,
.techdReviews__popup-next:hover {
  color: var(--secondary, #06bda6);
  -webkit-text-stroke: 1px var(--secondary, #06bda6);
}

.techdReviews__popup-counter-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 15px;
}

.techdReviews__popup-counter-wrapper .techdReviews__popup-prev-mobile,
.techdReviews__popup-counter-wrapper .techdReviews__popup-next-mobile {
  display: flex;
}

.techdReviews__popup-counter-wrapper .techdReviews__popup-counter {
  margin-top: 0;
}

.techdReviews__popup-prev-mobile,
.techdReviews__popup-next-mobile {
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--font-color-light, #fff);
  font-size: 16px;
  transition: var(--default-transition, .3s cubic-bezier(.4, 0, .2, 1));
  -webkit-text-stroke: 1px var(--font-color-light, #fff);
  display: flex;
  align-items: center;
}

.techdReviews__popup-prev-mobile:hover,
.techdReviews__popup-next-mobile:hover {
  color: var(--secondary, #06bda6);
  -webkit-text-stroke: 1px var(--secondary, #06bda6);
}

.techdReviews__popup-counter {
  text-align: center;
  margin-top: 20px;
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--font-color-light, #fff);
}

.techdReviews__popup {
  padding-left: 0;
  padding-right: 0;
}

/* ==========================================================================
   AIOSP POPUP
   ========================================================================== */
.aiosp-wrap .aiosp-container.aiosp-ref-\#reviews-popup .aiosp-content {
  max-width: 1400px;
}

.aiosp-ref-\#reviews-popup .aiosp-content .aiosp-close {
  top: 0;
  right: 0;
  color: var(--font-color-light, #fff);
}

.aiosp-ref-\#screenshots-popup .aiosp-content .aiosp-close {
  top: 5px;
  right: 10px;
  color: var(--font-color-light, #fff);
}

/* ==========================================================================
   MEDIA QUERIES
   ========================================================================== */
/* 744px */
@media only screen and (min-width: 744px) {

  /* Product Screenshots */
  .techdScreenshots--emtech .techdScreenshots__inner {
    max-width: 600px;
  }

  .techdScreenshots__item {
    width: calc((100% - 16px) / 2);
  }
}

/* 1024px */
@media only screen and (min-width: 1024px) {

  /* Header */
  .header--fixed .header__inner {
    background-color: transparent;
  }

  /* Emerging Tech Banner */
  .techdBanner--emerging-tech {
    padding: 180px 15px 115px;
  }

  .techdBanner--emerging-tech .techdBanner__inner {
    flex-direction: row;
    align-items: flex-start;
    max-width: 1920px;
    width: 95%;
  }

  .techdBanner--emerging-tech .techdBanner__branding {
    width: 45%;
    margin-top: 15px;
    align-items: flex-start;
  }

  .techdBanner--emerging-tech .techdBanner__founded {
    text-align: left;
  }

  .techdBanner--emerging-tech .techdBanner__welcome-badge .img-container {
    max-width: 185px;
  }

  .techdBanner--emerging-tech .techdBanner__logo {
    max-width: 100%;
  }

  .techdBanner--emerging-tech .techdBanner__emtech-illustration {
    width: 27%;
  }

  .techdBanner--emerging-tech .techdBanner__emtech-illustration .img-container {
    max-width: 230px;
    margin-left: 0;
    margin-right: 0;
  }

  /* Emerging Tech Banner - with background photos */
  .techdBanner--emerging-tech-bg {
    padding-bottom: 0;
  }

  .techdBanner--emerging-tech-bg .techdBanner__bg--screenshots .techdBanner__bg-panel:nth-child(n+2) {
    display: block;
  }

  .techdBanner--emerging-tech-bg .techdBanner__branding {
    margin-top: 50px;
  }

  .techdBanner--emerging-tech-bg .techdBanner__emtech-illustration {
    width: 32%;
  }

  .techdBanner--emerging-tech-bg .techdBanner__emtech-illustration .img-container {
    max-width: 331px;
  }

  /* Section Title */
  .section-title {
    text-align: left;
  }

  .section-title.center {
    text-align: center;
  }

  .title-accent {
    justify-content: flex-start;
  }

  .title-accent.center {
    justify-content: center;
  }

  /* Quick Take */
  .techdQuickTake--emtech {
    padding: 65px 15px 90px;
  }

  .techdQuickTake--emtech .techdQuickTake__inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
    gap: 60px;
    max-width: 1920px;
    width: 95%;
  }

  .techdQuickTake--emtech .techdQuickTake__inner--center {
    flex-direction: column;
  }

  .techdQuickTake--emtech .techdQuickTake__video {
    width: 45%;
  }

  .techdQuickTake--emtech .techdQuickTake__text {
    width: 52%;
    margin-top: 5%;
    text-align: left;
  }

  .techdQuickTake--emtech .techdQuickTake__inner--center .techdQuickTake__text {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  /* Product Screenshots */
  .techdScreenshots--emtech {
    padding: 60px 15px 95px;
  }

  .techdScreenshots--emtech .techdScreenshots__inner {
    max-width: 1920px;
    width: 95%;
  }

  .techdScreenshots__item {
    width: calc((100% - 48px) / 4);
  }

  /* Client Reviews */
  .techdEmtechReviews {
    padding: 65px 15px 70px;
  }

  .techdEmtechReviews__inner {
    max-width: 1920px;
    width: 95%;
  }

  .techdEmtechReviews__grid {
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 24px;
  }

  .techdEmtechReviews__item {
    flex: 1 1 calc((100% - 48px) / 3);
    max-width: calc((100% - 48px) / 3);
  }

  .techdEmtechReviews__item .techdReview__reply {
    padding: 18px 20px;
    text-align: center;
  }

  .techdEmtechReviews__placeholder {
    margin-top: 70px;
    margin-bottom: 70px;
  }

  .techdReviews__buttons {
    flex-direction: row;
  }

  .techdReviews__buttons .global-btn {
    width: 190px;
  }

  .techdReviews__popup-review-box .techdReview__reply {
    padding: 18px 20px;
    text-align: left;
  }

  /* Product Description */
  .techdDescription--emtech {
    padding: 70px 15px 60px;
  }

  .techdDescription--emtech .techdDescription__inner {
    max-width: 1920px;
    width: 95%;
  }

  /* Perfect For */
  .techdFor--emtech {
    padding: 35px 15px 100px;
  }

  .techdFor--emtech .techdFor__inner {
    max-width: 1920px;
    width: 95%;
  }

  .techdFor--emtech .techdFor__list {
    gap: 10px;
  }

  .techdFor--emtech .techdFor__list .perfect-for {
    width: calc(20% - 16px);
  }

  /* How It Works */
  .techdEmtechWorks {
    padding: 75px 15px 115px;
  }

  .techdEmtechWorks__inner {
    max-width: 1920px;
    width: 95%;
  }

  /* Key Features + Demo */
  .techdFeatures--emtech .techdFeatures__inner {
    max-width: 1920px;
    width: 95%;
  }

  .techdFeatures--emtech .techdFeatures__content {
    flex-direction: row;
    justify-content: center;
    gap: 0;
  }

  .techdFeatures--emtech .techdFeatures__content--with-demo {
    justify-content: space-between;
  }

  .techdFeatures--emtech .techdFeatures__section {
    width: 50%;
  }

  .techdFeatures--emtech .techdFeatures__capabilities {
    width: 49%;
    text-align: left;
  }

  .techdFeatures--emtech .techdFeatures__demo {
    width: 45%;
    max-width: none;
    margin: 0;
  }

  .techdFeatures--emtech .techdFeatures__content .line {
    margin: 0 30px;
  }

  .techdFeatures--emtech .techdFeatures__item {
    padding-left: 18px;
  }

  .techdFeatures--emtech .techdFeatures__item::before {
    display: block;
  }

  .techdFeatures--emtech .techdFeatures__capabilities .techdFeatures__list {
    padding-left: 7px;
  }

  .techdFeatures--emtech .techdFeatures__demo .techdFeatures__list {
    margin-top: 50px;
  }

  /* Pricing - 2 columns */
  .techdEmtechPricing {
    padding: 75px 15px 95px;
  }

  .techdEmtechPricing__inner {
    max-width: 1920px;
    width: 95%;
  }

  .techdEmtechPricing__item {
    flex: 1 1 calc((100% - 35px) / 2);
    min-width: 0;
    max-width: calc((100% - 35px) / 2);
  }

  /* Product Screenshots popup & Reviews popup */
  .techdScreenshots__popup-prev,
  .techdScreenshots__popup-next,
  .techdReviews__popup-prev,
  .techdReviews__popup-next {
    display: flex !important;
  }

  .techdScreenshots__popup-counter-wrapper,
  .techdReviews__popup-counter-wrapper {
    gap: 0;
    margin-top: 10px;
  }

  .techdScreenshots__popup-counter-wrapper .techdScreenshots__popup-counter,
  .techdReviews__popup-counter-wrapper .techdReviews__popup-counter {
    margin: 0;
  }

  .techdScreenshots__popup-counter-wrapper .techdScreenshots__popup-prev-mobile,
  .techdScreenshots__popup-counter-wrapper .techdScreenshots__popup-next-mobile,
  .techdReviews__popup-counter-wrapper .techdReviews__popup-prev-mobile,
  .techdReviews__popup-counter-wrapper .techdReviews__popup-next-mobile {
    display: none;
  }

  .techdScreenshots__popup-prev-mobile,
  .techdScreenshots__popup-next-mobile,
  .techdReviews__popup-prev-mobile,
  .techdReviews__popup-next-mobile {
    display: none !important;
  }

  .techdScreenshots__popup {
    padding-left: 30px;
    padding-right: 30px;
  }

  .aiosp-ref-\#screenshots-popup .aiosp-content .aiosp-close {
    top: 55px;
    right: -10px;
  }

  .techdReviews__popup-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .techdReviews__popup-review-box:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc(50% - 10px);
    width: 100%;
  }

  .techdReviews__popup {
    padding-left: 20px;
    padding-right: 20px;
  }

  .aiosp-ref-\#reviews-popup .aiosp-content .aiosp-close {
    top: 40px;
    right: -25px;
  }

  .techdReviews__popup-review-box {
    padding: 50px 40px 40px;
    text-align: left;
  }

  .techdReviews__popup-review-header {
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: row;
  }

  .techdReviews__popup-review-rating {
    padding-right: 30px;
    justify-content: flex-start;
  }
}

/* 1280px */
@media only screen and (min-width: 1280px) {

  /* bg-img.fixed - xl breakpoint from global.scss */
  .bg-img.fixed {
    background-attachment: fixed;
  }

  /* Emerging Tech Banner */
  .techdBanner--emerging-tech .techdBanner__inner {
    width: 80vw;
  }

  .techdBanner--emerging-tech .techdBanner__branding {
    width: 32%;
  }

  .techdBanner--emerging-tech .techdBanner__emtech-illustration {
    padding-right: 9%;
  }

  /* Emerging Tech Banner - with background photos */
  .techdBanner--emerging-tech-bg .techdBanner__emtech-illustration {
    position: relative;
    bottom: -80px;
    padding-right: 6%;
  }

  /* Quick Take */
  .techdQuickTake--emtech .techdQuickTake__inner {
    width: 80vw;
  }

  /* Product Screenshots */
  .techdScreenshots--emtech .techdScreenshots__inner {
    width: 87.5vw;
  }

  /* Client Reviews - 1230px at 1600px viewport = 76.875vw */
  .techdEmtechReviews__inner {
    width: 76.875vw;
  }

  /* Product Description */
  .techdDescription--emtech .techdDescription__inner {
    width: 87.5vw;
  }

  /* Perfect For */
  .techdFor--emtech .techdFor__inner {
    width: 87.5vw;
  }

  .techdFor--emtech .techdFor__list {
    gap: 20px;
  }

  .techdFor--emtech .techdFor__list .perfect-for {
    height: 180px;
  }

  /* How It Works - 1171px at 1600px viewport = 73.1875vw */
  .techdEmtechWorks__inner {
    width: 73.1875vw;
  }

  /* Pricing - 1210px at 1600px viewport = 75.625vw */
  .techdEmtechPricing__inner {
    width: 75.625vw;
  }

  /* Key Features + Demo */
  .techdFeatures--emtech {
    padding: 95px 15px 75px;
  }

  .techdFeatures--emtech .techdFeatures__content .line {
    display: block;
    margin: 0 6% 0 3%;
  }

  .techdFeatures--emtech .techdFeatures__inner {
    width: 87.5vw;
  }
}