/* Lone Wolf showcase — general utilities (shared baseline from other showcase templates) */

/* Lone Wolf header primary — namespaced so theme/global --primary is unchanged */
:root {
  --tr-lone-wolf-primary: #233e2e;
  --tr-lone-wolf-secondary: #d2421a;
  --tr-lone-wolf-accent: #53675b;
  --tr-lone-wolf-white: #ffffff;
  --tr-lone-wolf-text-default: #000;
  --tr-lone-wolf-nav-border: rgba(35, 62, 46, 0.22);
}

body {
  color: var(--tr-lone-wolf-text-default);
}

/* Fallbacks for global.scss variables */
.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);
}

.max-container {
  padding: 0;
  max-width: 100%;
}

/* IMAGE CONTAINER */
.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;
}

/* BACKGROUND IMAGE */
.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 - copied from global.scss for theme independence */
.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);
}

/* HEADER — theme global primary (not --tr-lone-wolf-primary) */
.header .header__inner {
  background-color: var(--primary, #0f3732);
}

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

.header__navigation #nav>li:nth-last-child(-n + 2)>a {
  background-color: var(--tr-lone-wolf-white);
  color: var(--primary, #0f3732);
  box-shadow: none;
}

.header__navigation #nav>li:nth-last-child(-n + 2)>a:hover {
  background-color: var(--tr-lone-wolf-secondary);
  color: var(--tr-lone-wolf-white);
}

/* BANNER — Agent Image layout; Lone Wolf palette (--tr-lone-wolf-primary / --tr-lone-wolf-secondary) */
.lwolfBanner {
  position: relative;
  padding: 160px 15px 60px;
}

.lwolfBanner .bg-img {
  background-color: var(--tr-lone-wolf-primary);
}

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

.lwolfBanner__left {
  width: 100%;
}

.lwolfBanner__logo {
  width: 100%;
  filter: brightness(0) invert(1);
  margin-bottom: 45px;
  max-width: 350px;
  margin-left: auto;
  margin-right: auto;
}

.lwolfBanner__logo .img-container {
  width: 100%;
}

.lwolfBanner__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
}

.lwolfBanner__badge {
  flex-shrink: 0;
}

.lwolfBanner__badge .img-container {
  display: inline-block;
}

.lwolfBanner__rating {
  display: flex;
  align-items: center;
  gap: 3px;
}

.lwolfBanner__rating i {
  color: #d4d4d4;
  font-size: 21px;
}

.lwolfBanner__rating i.filled {
  color: #f28f3d;
}

.lwolfBanner__rating .rating-text,
.lwolfBanner__meta .banner-category,
.lwolfBanner__meta .banner-subcategory {
  color: var(--font-color-light, #fff);
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
}

.lwolfBanner__rating .rating-text {
  margin-left: 15px;
}

.lwolfBanner__meta .dot {
  display: none;
  width: 3px;
  height: 3px;
  min-width: 3px;
  background-color: var(--tr-lone-wolf-accent);
  border-radius: 50%;
}

.lwolfBanner__text {
  font-size: 15px;
  line-height: 1.253;
  letter-spacing: 0.04em;
  font-weight: 300;
  text-align: center;
  color: var(--font-color-light, #fff);
}

.lwolfBanner__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 25px;
  width: 100%;
}

.lwolfBanner__cta .global-btn {
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 15px;
  width: 195px;
  background-color: var(--tr-lone-wolf-secondary);
  box-shadow: none;
  outline: none;
  color: var(--font-color-light, #fff);
}

.lwolfBanner__cta .global-btn:hover,
.lwolfBanner__cta .global-btn:focus {
  background-color: var(--tr-lone-wolf-accent);
  color: var(--font-color-light, #fff);
  outline: none;
  box-shadow: none;
}

.lwolfBanner__photo {
  width: 100%;
  max-width: 100%;
}

.lwolfBanner__photo .img-container {
  width: 100%;
}

/* NAVIGATION — RealScout layout; Lone Wolf colors mapped onto the same tokens */
.lwolfNavigation {
  position: relative;
  padding: 60px 15px;
}

.lwolfNavigation__inner {
  max-width: 400px;
  width: 100%;
  margin: auto;
}

.lwolfNavigation__buttons {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  border: 1px solid var(--tr-lone-wolf-nav-border);
}

.lwolfNavigation__button {
  display: block;
  padding: 18px;
  width: 100%;
  background-color: var(--tr-lone-wolf-white);
  color: var(--tr-lone-wolf-text-default);
  font-size: 17px;
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border: none;
  border-bottom: 1px solid var(--tr-lone-wolf-nav-border);
  cursor: pointer;
  transition: var(--default-transition, 0.3s ease);
}

.lwolfNavigation__button:last-child {
  border-bottom: none;
}

.lwolfNavigation__button:hover {
  background-color: var(--tr-lone-wolf-primary);
  color: var(--tr-lone-wolf-white);
}

.lwolfNavigation__button.active {
  background-color: var(--tr-lone-wolf-primary);
  color: var(--tr-lone-wolf-white);
}

.lwolfNavigation__button.active:hover {
  background-color: var(--tr-lone-wolf-accent);
  color: var(--tr-lone-wolf-white);
}

/* Quick Take — RealScout layout; Lone Wolf text colors */
.lwolfQuickTake {
  position: relative;
  padding: 60px 15px;
  color: var(--tr-lone-wolf-text-default);
}

.lwolfQuickTake .section-title {
  font-size: clamp(35px, 3.0625vw, 49px);
  color: var(--tr-lone-wolf-text-default);
}

.lwolfQuickTake__inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
}

.lwolfQuickTake__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.lwolfQuickTake__left {
  width: 100%;
  max-width: 350px;
}

.lwolfQuickTake__left .img-container {
  width: 100%;
  border-radius: 33px;
  overflow: hidden;
}

.lwolfQuickTake__right {
  width: 100%;
}

.lwolfQuickTake__points {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lwolfQuickTake__point {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
  padding: 20px 15px;
  background-color: var(--tr-lone-wolf-white);
  border-radius: 33px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.lwolfQuickTake__point--icon {
  flex-shrink: 0;
  width: 88px;
}

.lwolfQuickTake__point--content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.lwolfQuickTake__point--title {
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-size: clamp(20px, 1.5625vw, 25px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--tr-lone-wolf-text-default);
  text-align: center;
  width: 100%;
}

.lwolfQuickTake__point--text {
  font-size: 14px;
  line-height: 1.857;
  letter-spacing: 0.04em;
  color: var(--tr-lone-wolf-text-default);
  text-align: center;
  font-weight: 300;
  width: 100%;
}

/* PRODUCT DESCRIPTION — Agent Image behavior, Lone Wolf palette */
.lwolfDescription {
  position: relative;
  padding: 60px 15px;
}

.lwolfDescription .bg-img {
  background-color: var(--tr-lone-wolf-primary);
  border-bottom-left-radius: 33px;
  border-bottom-right-radius: 33px;
  height: 100%;
}

.lwolfDescription .section-title {
  font-size: clamp(35px, 3.0625vw, 49px);
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lwolfDescription__inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
}

.lwolfDescription__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 30px;
}

.lwolfDescription__text {
  width: 100%;
  color: var(--font-color-light, #fff);
  font-size: 14px;
  line-height: 1.857;
  letter-spacing: 0.04em;
  font-weight: 300;
  text-align: center;
}

.lwolfDescription__text p {
  margin-bottom: 28px;
}

.lwolfDescription__text p:last-child {
  margin-bottom: 0;
}

.lwolfDescription__video {
  position: relative;
  width: 100%;
}

.lwolfDescription__video .poster {
  position: relative;
  overflow: hidden;
  border-radius: 33px;
}

.lwolfDescription__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(--tr-lone-wolf-primary);
  width: 50px;
  height: 50px;
  border: 3px solid var(--tr-lone-wolf-primary);
  border-radius: 50%;
  transition: var(--default-transition, .3s cubic-bezier(.4, 0, .2, 1));
  cursor: pointer;
  background-color: transparent;
}

.lwolfDescription__video .poster .play-btn i {
  position: relative;
  left: 3px;
  font-size: 18px;
}

.lwolfDescription__video .poster:hover .play-btn {
  background-color: var(--tr-lone-wolf-primary);
  border-color: var(--tr-lone-wolf-primary);
  color: var(--font-color-light, #fff);
}

/* INTERVIEW — Agent Image behavior, Lone Wolf naming */
.lwolfInterview {
  position: relative;
  padding: 60px 15px;
}

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

.lwolfInterview__inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
}

.lwolfInterview__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lwolfInterview__video {
  position: relative;
  width: 100%;
}

.lwolfInterview__video .poster {
  position: relative;
  overflow: hidden;
  border-radius: 33px;
}

.lwolfInterview__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(--tr-lone-wolf-white);
  width: 50px;
  height: 50px;
  border: 3px solid var(--tr-lone-wolf-white);
  border-radius: 50%;
  transition: var(--default-transition, .3s cubic-bezier(.4, 0, .2, 1));
  cursor: pointer;
  background-color: transparent;
}

.lwolfInterview__video .poster .play-btn i {
  position: relative;
  left: 3px;
  font-size: 18px;
}

/* Same hover behavior as description play button. */
.lwolfInterview__video .poster:hover .play-btn {
  background-color: var(--tr-lone-wolf-primary);
  border-color: var(--tr-lone-wolf-primary);
  color: var(--font-color-light, #fff);
}

.lwolfInterview__text {
  width: 100%;
}

.lwolfInterview__text .section-title {
  text-align: center;
  margin-bottom: 25px;
}

.lwolfInterview__text .text {
  font-size: 14px;
  line-height: 1.857;
  letter-spacing: 0.04em;
  font-weight: 300;
  text-align: center;
}

.lwolfInterview__text .text p {
  margin-bottom: 20px;
}

.lwolfInterview__text .text p:last-child {
  margin-bottom: 0;
}

.lwolfInterview__founder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  margin-top: 20px;
}

.lwolfInterview__founder--photo {
  flex-shrink: 0;
  width: 78px;
  height: 78px;
}

.lwolfInterview__founder--photo .img-container {
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #000;
}

.lwolfInterview__founder--info {
  text-align: center;
}

.lwolfInterview__founder--info .founder-name {
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 0;
  line-height: 1.285;
  color: var(--font-color-title, #050505);
  margin-bottom: 3px;
}

.lwolfInterview__founder--info .founder-position {
  font-size: clamp(12px, 0.875vw, 14px);
  line-height: 1.285;
  letter-spacing: 0.04em;
}

/* PERFECT FOR */
.lwolfPerfectFor {
  position: relative;
  padding: 30px 15px 60px;
}

.lwolfPerfectFor__inner {
  max-width: 400px;
  width: 100%;
  margin: auto;
}

.lwolfPerfectFor .section-title {
  font-size: 27px;
}

.lwolfPerfectFor__content {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lwolfPerfectFor__title {
  width: 100%;
  margin-bottom: 40px;
}

.lwolfPerfectFor__title .section-title {
  text-align: center;
  line-height: 1.2;
}

.lwolfPerfectFor__title br {
  display: none;
}

.lwolfPerfectFor__list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lwolfPerfectFor__list .perfect-for {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  text-align: center;
}

.lwolfPerfectFor__list .perfect-for .icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
}

.lwolfPerfectFor__list .perfect-for .icon .img-container {
  width: 60px;
  height: 60px;
}

.lwolfPerfectFor__list .perfect-for .text {
  color: var(--font-color-title, #050505);
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-weight: 600;
  font-size: 18px;
  line-height: 1.2;
}

/* PROCESS */
.lwolfProcess {
  position: relative;
  padding: 60px 15px;
  background-color: var(--tr-lone-wolf-primary);
  color: var(--tr-lone-wolf-white);
  border-bottom-left-radius: 33px;
  border-bottom-right-radius: 33px;
  overflow: hidden;
}

.lwolfProcess .bg-img {
  background-color: var(--tr-lone-wolf-primary);
  border-bottom-left-radius: 33px;
  border-bottom-right-radius: 33px;
  height: 100%;
}

.lwolfProcess .section-title {
  font-size: clamp(35px, 3.0625vw, 49px);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lwolfProcess__inner {
  width: 100%;
  margin: auto;
}

.lwolfProcess__steps {
  display: flex;
  flex-direction: column;
  max-width: 400px;
  width: 100%;
  gap: 40px;
  margin: 40px auto 0;
}

.lwolfProcess__step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100%;
}

.lwolfProcess__step--image {
  width: 100%;
  max-width: 227px;
  margin-bottom: 40px;
}

.lwolfProcess__step--image .img-container {
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 0;
  overflow: hidden;
}

.lwolfProcess__step--title {
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-weight: 500;
  font-size: 20px;
  color: var(--tr-lone-wolf-white);
  margin-bottom: 10px;
  line-height: 1.2;
}

.lwolfProcess__step--title br {
  display: none;
}

.lwolfProcess__step--text {
  font-size: 14px;
  line-height: 1.857;
  color: var(--tr-lone-wolf-white);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ENGAGE */
.lwolfEngage {
  position: relative;
  padding: 60px 15px 70px;
  color: var(--tr-lone-wolf-text-default);
}

.lwolfEngage__inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
}

.lwolfEngage__content {
  display: flex;
  flex-direction: column;
  gap: 35px;
  align-items: center;
}

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

.lwolfEngage__right {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}

.lwolfEngage__left .section-title {
  font-size: clamp(35px, 3.0625vw, 49px);
  margin-bottom: 20px;
  text-align: center;
}

.lwolfEngage__text {
  font-size: 14px;
  line-height: 1.857;
  letter-spacing: 0.04em;
  font-weight: 300;
  text-align: center;
}

.lwolfEngage__text p {
  margin-bottom: 16px;
}

.lwolfEngage__text p:last-child {
  margin-bottom: 0;
}

.lwolfEngage__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  justify-items: center;
}

.lwolfEngage__card--photo {
  width: 100%;
  max-width: 227px;
  margin-bottom: 16px;
}

.lwolfEngage__card--photo .img-container {
  border-top-left-radius: 50px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 50px;
  border-bottom-left-radius: 0;
  overflow: hidden;
}

.lwolfEngage__card--header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 25px;
}

.lwolfEngage__card--icon-wrap {
  flex-shrink: 0;
}

.lwolfEngage__card--icon-bg {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--tr-lone-wolf-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.lwolfEngage__card--icon-bg .img-container {
  width: 22px;
  height: 23px;
}

.lwolfEngage__card--title {
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-size: clamp(24px, 2vw, 32px);
  line-height: 1.15;
  font-weight: 600;
  color: var(--font-color-title, #050505);
  margin: 0;
}

.lwolfEngage__card--bullets {
  display: block;
  width: max-content;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.lwolfEngage__card--bullets-col {
  display: flex;
  flex-direction: column;
  width: max-content;
  min-width: max-content;
}

.lwolfEngage__card--bullet {
  font-size: 14px;
  line-height: 1.55;
  letter-spacing: 0.04em;
  font-weight: 300;
  text-align: center;
  margin-bottom: 4px;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
}

/* INTEGRATIONS */
.lwolfIntegrations {
  position: relative;
  padding: 60px 15px;
  background-color: #eee;
}

.lwolfIntegrations__inner {
  max-width: 400px;
  width: 100%;
  margin: auto;
}

.lwolfIntegrations .section-title {
  font-size: 27px;
  line-height: 1.2;
}

.lwolfIntegrations__content {
  display: flex;
  flex-direction: column;
}

.lwolfIntegrations__title {
  width: 100%;
  margin-bottom: 40px;
}

.lwolfIntegrations__title .section-title {
  text-align: center;
  line-height: 1.2;
}

.lwolfIntegrations__line {
  display: none;
}

.lwolfIntegrations__logos {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.lwolfIntegrations__logos .integration-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.lwolfIntegrations__logos .integration-logo .img-container {
  width: auto;
  max-width: none;
  height: var(--lwolf-logo-height, 45px);
}

.lwolfIntegrations__logos .integration-logo .img-container img {
  width: auto;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
}

/* SOLUTIONS */
.lwolfSolutions {
  position: relative;
  padding: 60px 15px;
}

.lwolfSolutions__inner {
  width: 100%;
  margin: auto;
}

.lwolfSolutions__title {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 55px;
}

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

.lwolfSolutions__content {
  width: 100%;
  margin: 0 auto;
}

.lwolfSolutions__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  max-width: 400px;
  margin: 0 auto;
}

.lwolfSolutions__item {
  width: 100%;
}

/* Archive-style card (Tech Directory listing): image, title, text only — no logo, badge, tags, or stats */
.lwolfSolutions__card {
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
  text-align: center;
}

.lwolfSolutions__card .poster {
  position: relative;
}

.lwolfSolutions__card .poster>.img-container {
  overflow: hidden;
  border-radius: 13px;
}

.lwolfSolutions__card .poster>.img-container canvas {
  background-color: #797979;
}

.lwolfSolutions__card-title {
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 16px;
  color: var(--font-color-default, #363d49);
  line-height: 1.2;
  margin-bottom: 0;
  margin-top: 10px;
  text-align: center;
}

.lwolfSolutions__card-subtitle,
.lwolfSolutions__card-description {
  font-size: 11px;
  letter-spacing: 0.02em;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  text-align: center;
  color: var(--font-color-default, #363d49);
}

.lwolfSolutions__card-subtitle {
  margin-top: 2px;
}

.lwolfSolutions__card-description {
  margin-top: 2px;
}

@media screen and (min-width: 744px) {
  .lwolfSolutions__card {
    text-align: left;
  }

  .lwolfSolutions__card-title,
  .lwolfSolutions__card-subtitle,
  .lwolfSolutions__card-description {
    text-align: left;
  }
}

/* PRODUCT SUITE */
.lwolfProductSuite {
  position: relative;
  padding: 60px 15px;
}

.lwolfProductSuite__inner {
  width: 100%;
  margin: 0 auto;
}

.lwolfProductSuite__title {
  max-width: 600px;
  margin: 0 auto 15px;
}

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

.lwolfProductSuite__subtitle {
  max-width: 600px;
  margin: 0 auto 55px;
  text-align: center;
  font-size: 14px;
  line-height: 1.857;
  letter-spacing: 0.02em;
  font-weight: 300;
}

.lwolfProductSuite__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px 30px;
}

.lwolfProductSuite__item {
  width: 100%;
  text-align: center;
}

.lwolfProductSuite__item-icon {
  margin: 0 auto 25px;
  width: max-content;
}

.lwolfProductSuite__item-icon .img-container {
  width: 50px;
}

.lwolfProductSuite__item-title {
  margin: 0 0 5px;
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-size: clamp(24px, 1.875vw, 30px);
  line-height: 1.15;
  font-weight: 600;
}

.lwolfProductSuite__item-text {
  font-size: 14px;
  line-height: 1.857;
  letter-spacing: 0.02em;
  font-weight: 300;
}

/* Proven Results (RealScout layout; stats styled like rsMarketStats) */
.lwolfProvenResults {
  position: relative;
  padding: 60px 15px;
}

.lwolfProvenResults .bg-img {
  display: none;
  background-color: transparent;
}

.lwolfProvenResults__inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lwolfProvenResults__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.lwolfProvenResults__image {
  width: 100%;
}

.lwolfProvenResults__image .img-container {
  width: 100%;
  border-radius: 33px;
  overflow: hidden;
}

.lwolfProvenResults__right {
  width: 100%;
}

.lwolfProvenResults__header {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 12px;
}

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

.lwolfProvenResults__subtitle {
  margin: 0;
  max-width: 100%;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.857;
  letter-spacing: 0.04em;
  text-align: center;
  color: var(--tr-lone-wolf-text-default, #000);
}

.lwolfProvenResults__stats {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 40px;
  width: 100%;
}

.lwolfProvenResults__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  text-align: center;
  width: 100%;
  max-width: 130px;
}

.lwolfProvenResults__stat-number {
  font-weight: 500;
  font-size: clamp(35px, 3.0625vw, 49px);
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  color: var(--font-color-title, #050505);
  text-align: center;
}

.lwolfProvenResults__stat-label {
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
}

/* Market Stats (RealScout layout; bottom band + optional photo like Agent Image) */
.lwolfMarketStats {
  position: relative;
  padding: 60px 15px;
  isolation: isolate;
}

.lwolfMarketStats .bg-img {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  top: auto;
  width: 100%;
  height: clamp(168px, 20.6vw, 330px);
  min-height: 168px;
  max-height: 330px;
  z-index: 0;
  border-bottom-left-radius: 33px;
  border-bottom-right-radius: 33px;
  background-color: var(--tr-lone-wolf-primary);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.lwolfMarketStats__inner {
  max-width: 600px;
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 1;
}

.lwolfMarketStats__box {
  background-color: #fff;
  box-shadow: 0 1px 38px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  padding: 45px 15px;
  text-align: center;
}

.lwolfMarketStats__title {
  font-size: clamp(35px, 3.0625vw, 49px);
  line-height: 1.2;
  margin-bottom: 30px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.lwolfMarketStats__stats {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.lwolfMarketStats__stat {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.lwolfMarketStats__stat-number {
  font-weight: 500;
  font-size: clamp(35px, 3.0625vw, 49px);
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  color: var(--font-color-title, #050505);
}

.lwolfMarketStats__stat-label {
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.2;
}

/* Reviews Section (Agent Image structure, Lone Wolf icon treatment) */
#lwolfReviewsSection .tech-reviews-loading-text {
  color: var(--font-color-title, #050505);
}

#lwolfReviewsSection .placeholder-review {
  padding: 60px 20px;
  text-align: center;
  font-size: 22px;
  letter-spacing: 0.02em;
  line-height: 1.18;
  color: var(--font-color-title, #050505);
}

.lwolfReviewsSection {
  padding: 60px 15px;
}

.lwolfReviewsSection__inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.lwolfReviewsSection__heading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin-bottom: 35px;
}

.lwolfReviewsSection__title {
  font-size: clamp(35px, 3.0625vw, 49px);
  line-height: 1.2;
  margin: 0;
}

.lwolfReviewsSection__heading-right {
  font-size: 14px;
  line-height: 1.857;
  letter-spacing: 0.02em;
  text-align: center;
}

.lwolfReviewsSection__heading-right p {
  margin-bottom: 0;
}

.lwolfReviewsSection__heading-right p+p {
  margin-top: 25px;
}

.lwolfReviewsSection__reviews {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-bottom: 35px;
}

.lwolfReviewsSection__reviews:not(.slick-initialized) .lwolfReviewsSection__review:nth-child(n + 2) {
  display: none;
}

.lwolfReviewsSection__reviews.slick-initialized {
  display: block;
  margin: 0 -15px 25px;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.24));
}

.lwolfReviewsSection__reviews.slick-initialized .slick-list {
  overflow: hidden;
  padding: 12px 0 18px;
}

.lwolfReviewsSection__reviews.slick-initialized .slick-slide {
  height: auto;
}

.lwolfReviewsSection__reviews.slick-initialized .slick-slide>div {
  margin: 0 15px;
}

.lwolfReviewsSection__reviews.slick-initialized .lwolfReviewsSection__review {
  box-shadow: none;
  margin-bottom: 30px;
}

.lwolfReviewsSection__reviews.slick-initialized .slick-slide>div:last-child .lwolfReviewsSection__review {
  margin-bottom: 0;
}

@media screen and (max-width: 1023px) {
  .lwolfReviewsSection__reviews.slick-initialized .slick-slide>div:nth-child(n + 2) {
    display: none !important;
  }
}

.lwolfReviewsSection__review {
  background-color: #fff;
  box-shadow: 0 1px 38px rgba(0, 0, 0, 0.3);
  border-radius: 3px;
  padding: 30px 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.lwolfReviewsSection__review-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  width: 100%;
}

.lwolfReviewsSection__review-icon {
  flex-shrink: 0;
  align-self: center;
}

.lwolfReviewsSection__review-text-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.lwolfReviewsSection__review-text {
  font-size: 14px;
  line-height: 1.857;
  letter-spacing: 0.02em;
  width: 100%;
  text-align: center;
}

.lwolfReviewsSection__review-text p:last-child {
  font-weight: 600;
}

.lwolfReviewsSection__review-author {
  font-size: 18px;
  font-weight: 600;
  text-align: center;
}

.lwolfReviewsSection__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: 100%;
}

.lwolfReviewsSection__buttons .global-btn {
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 15px;
  width: 195px;
  box-shadow: none;
  outline: none;
  color: var(--font-color-light, #fff);
}

.lwolfReviewsSection__buttons .global-btn.reviews-cta-1 {
  background-color: #000;
}

.lwolfReviewsSection__buttons .global-btn.reviews-cta-1:hover {
  background-color: var(--tr-lone-wolf-primary);
}

.lwolfReviewsSection__buttons .global-btn.reviews-cta-2 {
  background-color: #000;
}

.lwolfReviewsSection__buttons .global-btn.reviews-cta-2:hover {
  background-color: var(--tr-lone-wolf-primary);
}

/* Notable Clients (Local Logic structure; no card boxes/background wrappers) */
.lwolfNotableClients {
  position: relative;
  padding: 60px 15px;
  background-color: #eee;
}

.lwolfNotableClients__inner {
  max-width: 600px;
  width: 100%;
  margin: 0 auto;
}

.lwolfNotableClients__title {
  margin-bottom: 40px;
  text-align: center;
  font-size: clamp(35px, 3.0625vw, 49px);
  line-height: 1.2;
}

.lwolfNotableClients__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  justify-items: center;
}

.lwolfNotableClients__item {
  max-width: 300px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lwolfNotableClients__item .img-container {
  height: 40px;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lwolfNotableClients__item .img-container img {
  object-fit: contain;
}

/* Preview */
.lwolfPreview {
  position: relative;
  padding: 60px 15px;
  overflow: hidden;
}

.lwolfPreview .bg-img {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: block;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-color: var(--tr-lone-wolf-primary);
  border-bottom-left-radius: 33px;
  border-bottom-right-radius: 33px;
}

.lwolfPreview__inner {
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.lwolfPreview__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  align-items: center;
}

.lwolfPreview__left {
  width: 100%;
}

.lwolfPreview__title {
  font-size: clamp(35px, 3.0625vw, 49px);
  margin-bottom: 20px;
}

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

.lwolfPreview__text p {
  margin-bottom: 20px;
}

.lwolfPreview__text p:last-child {
  margin-bottom: 0;
}

.lwolfPreview__right {
  width: 100%;
}

.lwolfPreview__columns {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lwolfPreview__column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.lwolfPreview__photo {
  width: 100%;
  max-width: 290px;
  margin: 0 auto;
}

/* Summary */
.lwolfSummary {
  position: relative;
  padding: 60px 15px;
}

.lwolfSummary__inner {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.lwolfSummary__title-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  width: fit-content;
  max-width: 290px;
  margin: auto;
}

.lwolfSummary__logo {
  flex-shrink: 0;
}

.lwolfSummary__logo img {
  width: 49px;
  height: 52px;
  display: block;
}

.lwolfSummary .section-title {
  text-align: center;
  margin: 0;
  width: 62%;
  font-size: clamp(35px, 3.0625vw, 49px);
}

.lwolfSummary__content {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin-top: 30px;
}

.lwolfSummary__left {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.lwolfSummary__left-logo {
  margin-bottom: 20px;
  max-width: 290px;
  margin-left: auto;
  margin-right: auto;
}

.lwolfSummary__left-logo img {
  filter: none;
}

.lwolfSummary__rating {
  display: flex;
  align-items: center;
  gap: 3px;
  margin-bottom: 25px;
}

.lwolfSummary__rating i {
  color: #d4d4d4;
  font-size: 21px;
}

.lwolfSummary__rating i.filled {
  color: #f28f3d;
}

.lwolfSummary__rating .rating-text {
  margin-left: 15px;
  color: var(--rs-text-color);
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
}

.lwolfSummary__buttons {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  width: 100%;
}

.lwolfSummary__buttons .global-btn {
  font-weight: 600;
  letter-spacing: 0.04em;
  padding: 12px 15px;
  width: 195px;
  background-color: var(--tr-lone-wolf-secondary);
  color: var(--font-color-light, #fff);
  box-shadow: none;
  outline: none;
}

.lwolfSummary__buttons .global-btn.summary-cta-1 {
  background-color: var(--tr-lone-wolf-secondary);
}

.lwolfSummary__buttons .global-btn.summary-cta-1:hover {
  background-color: var(--tr-lone-wolf-accent);
  color: var(--font-color-light, #fff);
  outline: none;
  box-shadow: none;
}

.lwolfSummary__buttons .global-btn.summary-cta-1:focus {
  background-color: var(--tr-lone-wolf-accent);
  color: var(--font-color-light, #fff);
  outline: none;
  box-shadow: none;
}

.lwolfSummary__buttons .global-btn.summary-cta-2 {
  background-color: var(--tr-lone-wolf-secondary);
}

.lwolfSummary__buttons .global-btn.summary-cta-2:hover {
  background-color: var(--tr-lone-wolf-accent);
  color: var(--font-color-light, #fff);
  outline: none;
  box-shadow: none;
}

.lwolfSummary__buttons .global-btn.summary-cta-2:focus {
  background-color: var(--tr-lone-wolf-accent);
  color: var(--font-color-light, #fff);
  outline: none;
  box-shadow: none;
}

.lwolfSummary__right {
  width: 100%;
}

.lwolfSummary__right-title {
  font-family: var(--font-family-title, 'Outfit', sans-serif);
  font-weight: 500;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.059;
  color: var(--rs-text-color);
  margin: 0 0 15px;
  text-align: center;
}

.lwolfSummary__right-text {
  font-size: 15px;
  line-height: 1.733;
  letter-spacing: 0.02em;
  margin-bottom: 20px;
  text-align: center;
  color: var(--rs-text-color);
  font-weight: 300;
}

.lwolfSummary__right-text p {
  margin-bottom: 15px;
}

.lwolfSummary__right-text p:last-child {
  margin-bottom: 0;
}

/* Empty section targets for in-page nav (content added later) */
.lwolf-nav-placeholder {
  min-height: 1px;
}

@media screen and (min-width: 744px) {
  .lwolfPreview__columns {
    justify-content: center;
    flex-direction: row;
    gap: 20px;
  }

  .lwolfPreview__column:first-child {
    margin-top: 15%;
    margin-bottom: 0;
  }

  .lwolfPreview__column:last-child {
    margin-top: 0;
    margin-bottom: 0;
  }

  .lwolfNotableClients__grid {
    grid-template-columns: repeat(2, 1fr);
    justify-items: stretch;
  }

  .lwolfNotableClients__item {
    max-width: none;
  }

  .lwolfNotableClients__item:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: calc((100% - 11px) / 2);
  }

  .lwolfProductSuite__item {
    width: calc((100% - 30px) / 2);
    max-width: calc((100% - 30px) / 2);
  }

  .lwolfProvenResults__stats {
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 30px;
  }

  .lwolfProvenResults__stat {
    flex: 0 1 auto;
    width: auto;
    align-items: center;
    text-align: center;
  }

  .lwolfProvenResults__stat-label {
    width: 75%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* Market Stats */
  .lwolfMarketStats {
    padding: 0 15px 65px;
  }

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

  .lwolfMarketStats__stats {
    flex-direction: row;
    gap: 15px;
    margin: auto;
    width: 100%;
  }

  .lwolfMarketStats__stat {
    flex: 1;
    width: auto;
  }

  .lwolfMarketStats__stat-label {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  .lwolfMarketStats__box {
    padding: 55px 15px 55px;
  }
}

@media screen and (min-width: 1024px) {
  .lwolfBanner {
    padding: 160px 15px 100px;
  }

  .lwolfBanner__inner {
    flex-direction: row;
    justify-content: space-between;
    max-width: 1920px;
    width: 95%;
    gap: 30px;
  }

  .lwolfBanner__logo {
    margin-left: 0;
    max-width: 365px;
  }

  .lwolfBanner__meta {
    flex-direction: row;
    align-items: center;
  }

  .lwolfBanner__meta .dot {
    display: block;
  }

  .lwolfBanner__left {
    width: 40%;
    min-width: 480px;
    padding-top: 30px;
  }

  .lwolfBanner__text {
    text-align: left;
    padding-right: 5px;
  }

  .lwolfBanner__cta {
    flex-direction: row;
    width: auto;
  }

  .lwolfBanner__cta .global-btn.banner-cta-2 {
    width: 175px;
  }

  .lwolfBanner__photo {
    width: 55.5%;
  }

  .lwolfNavigation {
    padding: 120px 15px 45px;
  }

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

  .lwolfNavigation__buttons {
    flex-direction: row;
  }

  .lwolfNavigation__button {
    flex: 1;
    width: auto;
    padding-left: 10px;
    padding-right: 10px;
    border-bottom: none;
    border-right: 1px solid var(--tr-lone-wolf-nav-border);
  }

  .lwolfNavigation__button:last-child {
    border-right: none;
  }

  /* Quick Take */
  .lwolfQuickTake {
    padding: 0 15px 110px;
  }

  .lwolfQuickTake .section-title {
    padding-left: 2%;
  }

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

  .lwolfQuickTake__content {
    flex-direction: row;
    align-items: center;
    margin-top: 0;
    gap: 0;
  }

  .lwolfQuickTake__left {
    min-width: 350px;
    width: 28%;
    max-width: 100%;
    padding-top: 15px;
  }

  .lwolfQuickTake__right {
    width: 82%;
    margin-left: -65px;
    z-index: 1;
  }

  .lwolfQuickTake__point {
    flex-direction: row;
    justify-content: flex-start;
    gap: 30px;
    padding: 30px;
  }

  .lwolfQuickTake__point--content {
    flex-direction: row;
    flex: 1;
    gap: 20px;
  }

  .lwolfQuickTake__point--title {
    text-align: left;
    width: 32%;
  }

  .lwolfQuickTake__point--text {
    text-align: left;
    width: 65%;
  }

  /* Product Description */
  .lwolfDescription {
    padding: 85px 15px 75px;
  }

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

  .lwolfDescription__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 55px;
  }

  .lwolfDescription__text {
    width: 49%;
    text-align: left;
  }

  /* Same behavior as Agent Image: if no video exists, text expands and centers. */
  .lwolfDescription__content .lwolfDescription__text:only-child {
    width: 100%;
    text-align: center;
  }

  .lwolfDescription__video {
    width: 45%;
  }

  .lwolfDescription__video .poster .play-btn {
    width: 50px;
    height: 50px;
  }

  .lwolfDescription__video .poster .play-btn i {
    font-size: 20px;
  }

  /* Interview */
  .lwolfInterview {
    padding: 165px 15px 50px;
  }

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

  .lwolfInterview__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }

  .lwolfInterview__video {
    width: 44%;
  }

  .lwolfInterview__text {
    width: 50%;
  }

  .lwolfInterview__content .lwolfInterview__text:only-child {
    width: 100%;
  }

  .lwolfInterview__content .lwolfInterview__text:only-child .section-title,
  .lwolfInterview__content .lwolfInterview__text:only-child .text {
    text-align: center;
  }

  .lwolfInterview__content .lwolfInterview__text:only-child .lwolfInterview__founder {
    justify-content: center;
  }

  .lwolfInterview__text .section-title,
  .lwolfInterview__text .text {
    text-align: left;
  }

  .lwolfInterview__text .section-title {
    width: 75%;
  }

  .lwolfInterview__video .poster .play-btn {
    width: 50px;
    height: 50px;
  }

  .lwolfInterview__video .poster .play-btn i {
    font-size: 20px;
  }

  .lwolfInterview__founder {
    flex-direction: row;
    align-items: center;
    gap: 20px;
    margin-top: 5px;
  }

  .lwolfInterview__founder--info {
    text-align: left;
  }

  /* Perfect For */
  .lwolfPerfectFor {
    padding: 28px 15px 135px;
  }

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

  .lwolfPerfectFor__content {
    flex-direction: row;
    align-items: center;
    gap: 10px;
  }

  .lwolfPerfectFor__title {
    min-width: 168px;
    width: 12%;
    margin-bottom: 0;
  }

  .lwolfPerfectFor__title .section-title {
    text-align: left;
    margin-bottom: 0;
  }

  .lwolfPerfectFor__list {
    flex-direction: row;
    flex: 1;
    gap: 15px;
    justify-content: flex-start;
  }

  .lwolfPerfectFor__list .perfect-for {
    flex-direction: row;
    align-items: center;
    text-align: left;
    flex: 1;
    gap: 20px;
  }

  .lwolfPerfectFor__list .perfect-for .text {
    text-align: left;
    font-size: clamp(15px, 1.125vw, 18px);
  }

  /* Process */
  .lwolfProcess {
    padding: 80px 15px 90px;
  }

  .lwolfProcess .section-title {
    max-width: none;
  }

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

  .lwolfProcess__steps {
    flex-direction: row;
    max-width: none;
    gap: 20px;
    margin-top: 50px;
    justify-content: center;
  }

  .lwolfProcess__step {
    flex: 0 0 calc((100% - 4 * 20px) / 5);
    align-items: flex-start;
    text-align: left;
  }

  .lwolfProcess__step--image {
    max-width: 100%;
  }

  .lwolfProcess__step--title {
    text-align: left;
  }

  .lwolfProcess__step--title br {
    display: block;
  }

  .lwolfProcess__step--text {
    text-align: left;
  }

  /* Engage */
  .lwolfEngage {
    padding: 110px 15px 65px;
  }

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

  .lwolfEngage__content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 30px;
  }

  .lwolfEngage__left {
    width: 36%;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .lwolfEngage__left .section-title {
    text-align: left;
  }

  .lwolfEngage__text {
    text-align: left;
  }

  .lwolfEngage__right {
    width: 56.5%;
    max-width: none;
    margin: 0;
  }

  .lwolfEngage__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    justify-items: stretch;
  }

  .lwolfEngage__card--photo {
    max-width: 100%;
  }

  .lwolfEngage__card--header {
    justify-content: flex-start;
  }

  .lwolfEngage__card--bullets {
    margin-left: 0;
    margin-right: 0;
  }

  .lwolfEngage__card--bullet {
    text-align: left;
  }

  /* Integrations */
  .lwolfIntegrations {
    padding: 55px 15px 60px;
  }

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

  .lwolfIntegrations__content {
    flex-direction: row;
    align-items: center;
  }

  .lwolfIntegrations__title {
    min-width: 196px;
    width: 14%;
    margin-bottom: 0;
  }

  .lwolfIntegrations__title .section-title {
    text-align: left;
    margin-bottom: 0;
  }

  .lwolfIntegrations__line {
    display: block;
    width: 1px;
    height: 77px;
    background-color: #c3c3c3;
    flex-shrink: 0;
    margin-left: 10px;
    margin-right: 10px;
  }

  .lwolfIntegrations__logos {
    flex-direction: row;
    flex: 1;
    gap: 30px;
    justify-content: space-between;
    flex-wrap: nowrap;
  }

  .lwolfIntegrations__logos .integration-logo {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-align: left;
    flex: 0 1 auto;
    gap: 0;
    min-width: 0;
  }

  .lwolfIntegrations__logos .integration-logo .img-container {
    width: auto;
    max-width: none;
    height: var(--lwolf-logo-height, 45px);
    min-width: 0;
    flex-shrink: 1;
  }

  .lwolfIntegrations__logos .integration-logo .img-container img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: contain;
  }

  /* Solutions */
  .lwolfSolutions {
    padding: 75px 15px 60px;
  }

  .lwolfSolutions__title {
    max-width: 100%;
  }

  .lwolfSolutions__inner {
    width: 95%;
  }

  .lwolfSolutions__content {
    max-width: none;
  }

  .lwolfSolutions__row {
    max-width: none;
    gap: 40px;
  }

  .lwolfSolutions__item {
    width: calc((100% - 2 * 40px) / 3);
    max-width: calc((100% - 2 * 40px) / 3);
  }

  /* Proven Results */
  .lwolfProvenResults .bg-img {
    display: block;
    background-color: transparent;
    background-position: right center;
  }

  .lwolfProvenResults {
    padding: 65px 15px;
  }

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

  .lwolfProvenResults__content {
    flex-direction: row;
    align-items: flex-start;
    justify-content: space-between;
    gap: 60px;
  }

  .lwolfProvenResults__image {
    width: 47%;
    max-width: 100%;
  }

  .lwolfProvenResults__right {
    width: 49%;
    padding-right: 0;
    padding-bottom: 20px;
  }

  .lwolfProvenResults__header {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .lwolfProvenResults__title {
    margin: 0;
    width: 100%;
    max-width: none;
    text-align: left;
  }

  .lwolfProvenResults__subtitle {
    text-align: left;
    width: 100%;
  }

  .lwolfProvenResults__stats {
    justify-content: flex-start;
    gap: 25px;
    margin: 28px 0 0;
  }

  /* Market Stats */
  .lwolfMarketStats {
    padding: 15px 15px 95px;
  }

  .lwolfMarketStats__stats {
    flex-direction: row;
    gap: 15px;
    width: 80%;
  }

  .lwolfMarketStats__stat {
    flex: 1;
    width: auto;
  }

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

  .lwolfMarketStats__box {
    padding: 80px 15px 65px;
  }

  .lwolfMarketStats__title {
    max-width: 1020px;
  }

  /* Reviews Section */
  .lwolfReviewsSection {
    padding: 105px 15px 30px;
  }

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

  .lwolfReviewsSection__heading {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }

  .lwolfReviewsSection__heading-left {
    min-width: 350px;
    width: 40%;
    padding-left: 35px;
  }

  .lwolfReviewsSection__title {
    text-align: left;
  }

  .lwolfReviewsSection__heading-right {
    width: 48%;
    padding-top: 20px;
    text-align: left;
  }

  .lwolfReviewsSection__reviews {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .lwolfReviewsSection__reviews:not(.slick-initialized) .lwolfReviewsSection__review:nth-child(n + 5) {
    display: none;
  }

  .lwolfReviewsSection__review {
    text-align: left;
    padding: 50px 45px 50px 30px;
  }

  .lwolfReviewsSection__review-content {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    width: 100%;
  }

  .lwolfReviewsSection__review-icon {
    margin: 0;
    flex-shrink: 0;
    align-self: center;
  }

  .lwolfReviewsSection__review-text-wrapper {
    flex: 1;
  }

  .lwolfReviewsSection__review-text {
    text-align: left;
  }

  .lwolfReviewsSection__review-author {
    text-align: left;
  }

  .lwolfReviewsSection__buttons {
    flex-direction: row;
    justify-content: center;
    width: auto;
  }

  .lwolfNotableClients {
    padding: 55px 15px 50px;
    margin-bottom: 35px;
  }

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

  .lwolfNotableClients__grid {
    grid-template-columns: repeat(6, 1fr);
    justify-items: stretch;
    gap: 20px;
  }

  .lwolfNotableClients__item:last-child:nth-child(odd) {
    grid-column: auto;
    justify-self: stretch;
    max-width: none;
  }

  .lwolfNotableClients__item:nth-child(1) .img-container {
    height: 65px;
  }

  .lwolfNotableClients__item:nth-child(6) .img-container {
    height: 50px;
  }

  .lwolfPreview {
    padding: 0 15px;
  }

  .lwolfPreview .bg-img {
    background-position: right center;
  }

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

  .lwolfPreview__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 60px;
  }

  .lwolfPreview__left {
    width: 36%;
    padding-left: 8px;
  }

  .lwolfPreview__title {
    text-align: left;
  }

  .lwolfPreview__text {
    text-align: left;
  }

  .lwolfPreview__photo {
    max-width: 100%;
    margin: 0;
  }

  .lwolfPreview__right {
    width: 55%;
  }

  .lwolfPreview__column:first-child {
    margin-top: -11%;
    margin-bottom: -14%;
  }

  .lwolfPreview__column:last-child {
    margin-top: 0;
    margin-bottom: -24%;
  }

  .lwolfSummary {
    padding: 100px 15px 95px;
  }

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

  .lwolfSummary__content {
    flex-direction: row;
    justify-content: space-between;
    gap: 30px;
    align-items: flex-start;
  }

  .lwolfSummary__left {
    width: 31%;
    min-width: 410px;
    align-items: flex-start;
    text-align: left;
  }

  .lwolfSummary__left-logo {
    margin-left: 0;
    margin-right: 0;
    max-width: 385px;
  }

  .lwolfSummary__rating {
    justify-content: flex-start;
  }

  .lwolfSummary__buttons {
    align-items: flex-start;
    flex-direction: row;
    width: auto;
  }

  .lwolfSummary__buttons .global-btn.summary-cta-2 {
    width: 175px;
  }

  .lwolfSummary__right {
    width: 62%;
  }

  .lwolfSummary__right-title {
    text-align: left;
  }

  .lwolfSummary__right-text {
    text-align: left;
  }

  .lwolfSummary__title-wrapper {
    max-width: none;
  }

  .lwolfSummary .section-title {
    width: auto;
    white-space: nowrap;
  }

  /* Product Suite */
  .lwolfProductSuite {
    padding: 45px 15px 55px;
  }

  .lwolfProductSuite__title {
    max-width: 100%;
  }

  .lwolfProductSuite__subtitle {
    max-width: 1100px;
  }

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

  .lwolfProductSuite__items {
    gap: 63px 45px;
  }

  .lwolfProductSuite__item {
    width: calc((100% - 2 * 45px) / 3);
    max-width: calc((100% - 2 * 45px) / 3);
  }
}

@media screen and (min-width: 1280px) {
  .lwolfBanner__inner {
    gap: 60px;
    width: 89.5vw;
  }

  .lwolfBanner__photo {
    padding-right: 5%;
  }

  .lwolfNavigation__inner {
    width: 89vw;
  }

  .lwolfReviewsSection__inner {
    width: 87.5vw;
  }

  .lwolfNotableClients__inner {
    width: 90.5vw;
  }

  .lwolfPreview__inner {
    width: 90.5vw;
  }

  .lwolfPreview__right {
    padding-right: 13%;
  }

  .lwolfSummary__inner {
    width: 82vw;
  }

  .lwolfSummary__content {
    gap: 60px;
  }

  .lwolfSummary__left {
    padding-left: 4%;
    padding-top: 10px;
  }

  /* Quick Take */
  .lwolfQuickTake__inner {
    width: 89vw;
  }

  .lwolfQuickTake__content {
    margin-top: -45px;
  }

  .lwolfQuickTake__point--title {
    width: 23%;
  }

  .lwolfQuickTake__point--text {
    width: 60%;
  }

  .lwolfQuickTake__point--content {
    gap: 90px;
  }

  /* Product Description */
  .lwolfDescription__inner {
    width: 87.5vw;
  }

  .lwolfDescription__text {
    padding-left: 2%;
    padding-top: 3.5%;
  }

  /* Interview */
  .lwolfInterview__inner {
    width: 89.5vw;
  }

  .lwolfInterview__text {
    padding-top: 2%;
  }

  .lwolfInterview__text .section-title {
    width: 65%;
  }

  /* Perfect For */
  .lwolfPerfectFor__inner {
    width: 89.5vw;
  }

  .lwolfPerfectFor__content {
    gap: 7%;
  }

  .lwolfPerfectFor__list {
    gap: 30px;
  }

  .lwolfPerfectFor__list .perfect-for .icon,
  .lwolfPerfectFor__list .perfect-for .icon .img-container {
    width: min(5.625vw, 90px);
    height: min(5.625vw, 90px);
  }

  .lwolfPerfectFor__title br {
    display: block;
  }

  .lwolfPerfectFor__content .lwolfPerfectFor__list {
    gap: 50px;
  }

  /* Process */
  .lwolfProcess__inner {
    width: 87.5vw;
  }

  .lwolfProcess__steps {
    gap: 65px;
    justify-content: center;
  }

  .lwolfProcess__step {
    flex: 0 0 calc((100% - 4 * 65px) / 5);
  }

  /* Engage */
  .lwolfEngage__inner {
    width: 89vw;
  }

  .lwolfEngage__content {
    gap: 45px;
  }

  .lwolfEngage__left {
    padding-top: 6.5%;
  }

  .lwolfEngage__grid {
    gap: 55px;
  }

  .lwolfEngage__card--bullets {
    display: flex;
    gap: 0 15px;
  }

  .lwolfEngage__card--bullets-col {
    flex: 0 0 auto;
  }

  .lwolfEngage__card--bullet {
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
  }

  /* Integrations */
  .lwolfIntegrations__inner {
    width: 90vw;
    padding-right: 2%;
  }

  .lwolfIntegrations__line {
    margin-left: 45px;
    margin-right: 90px;
  }

  /* Solutions */
  .lwolfSolutions__inner {
    width: 79.5vw;
  }

  .lwolfSolutions__row {
    gap: 70px;
  }

  .lwolfSolutions__item {
    width: calc((100% - 2 * 70px) / 3);
    max-width: calc((100% - 2 * 70px) / 3);
  }

  /* Proven Results */
  .lwolfProvenResults__inner {
    width: 90vw;
  }

  .lwolfProvenResults__right {
    padding-top: 4.7%;
  }

  .lwolfProvenResults__stats {
    gap: 60px;
    width: 100%;
    margin-left: 0;
    margin-right: auto;
  }

  /* Market Stats */
  .lwolfMarketStats__inner {
    width: 80vw;
  }

  .lwolfMarketStats__stats {
    width: 59%;
  }

  /* Product Suite */
  .lwolfProductSuite__inner {
    width: 84vw;
  }

  .lwolfProductSuite__items {
    gap: 63px 70px;
  }

  .lwolfProductSuite__item {
    width: calc((100% - 2 * 70px) / 3);
    max-width: calc((100% - 2 * 70px) / 3);
  }

  .lwolfSummary__right {
    padding-right: 5%;
  }
}