/* ========== DESIGN TOKENS ========== */
:root {
  /* Colors */
  --c-purple: #6c44e4;
  --c-dark-purple: #1f167e;
  --c-dark: #000410;
  --c-black: #121212;
  --c-white: #ffffff;
  --c-gray-light: #f6f5fa;
  --c-gray-text: #d9d9d9;
  --c-gray-border: #706c82;
  --c-gray-placeholder: #9996a8;
  --c-card-dark: #211f23;
  --c-hero-dark: #191628;

  /* Typography */
  --ff-primary: "Manrope", sans-serif;
  --ff-secondary: "League Spartan", sans-serif;

  --fs-hero: 40px;
  --fs-h2: 36px;
  --fs-h3-new: 30px;
  --fs-h3: 20px;
  --fs-body: 18px;
  --fs-body-sm: 16px;
  --fs-btn: 20px;
  --fs-label: 10px;

  --lh-hero: 44px;
  --lh-h2: 40px;
  --lh-h3: 30px;
  --lh-body: 29px;
  --lh-body-tight: 24px;
  --lh-body-sm: 22px;

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --sp-xs: 8px;
  --sp-sm: 12px;
  --sp-md: 20px;
  --sp-lg: 40px;
  --sp-xl: 60px;
  --sp-2xl: 80px;

  --top-pd: 150px;

  /* Radii */
  --r-sm: 5px;
  --r-md: 10px;
  --r-lg: 15px;
  --r-xl: 20px;
  --r-full: 50%;

  /* Sizes */
  --container-max: 1340px;
  --container-narrow: 1103px;
  --container-text: 885px;
}

/* ========== RESET & BASE ========== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-primary);
  color: var(--c-dark);
  background: var(--c-white);
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

button,
input,
textarea {
  font-family: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ========== GLOBAL TYPOGRAPHY ========== */
.section-title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-dark);
  text-align: center;
  margin-bottom: var(--sp-md);
}

.section-subtitle {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h3);
  color: var(--c-dark);
  text-align: center;
  margin-bottom: var(--sp-sm);
}

.section-desc {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
  text-align: center;
  margin-bottom: var(--sp-lg);
}

.text-purple {
  color: var(--c-purple);
}

/* Icons */
.icon {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}

/* ========== CONTAINER ========== */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--sp-md);
}

.container--narrow {
  max-width: var(--container-narrow);
}
.container--text {
  max-width: var(--container-text);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-primary);
  font-size: var(--fs-btn);
  font-weight: var(--fw-semibold);
  border-radius: var(--r-md);
  padding: 14px 36px;
  cursor: pointer;
  transition: 0.2s all;
  white-space: nowrap;
  gap: 8px;
}

.btn:hover {
  opacity: 0.85;
}
.btn.btn--primary:hover {
  background-color: #4423a5;
}
.btn.btn--outline-white:hover,
.btn.btn--outline-dark:hover {
  background-color: var(--c-purple);
  color: var(--c-white);
  border-color: var(--c-purple);
}

.btn--primary {
  background: var(--c-purple);
  color: var(--c-white);
}

.btn--outline-white {
  border: 1px solid var(--c-white);
  color: var(--c-white);
  background: transparent;
}

.btn--outline-dark {
  border: 1px solid var(--c-black);
  color: var(--c-black);
  background: transparent;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  height: 702px;
  background: linear-gradient(255.44deg, #504693 24.14%, #161322 94.8%);
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero__bg-mask {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Header */
.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  transform: translateY(0);
  padding: var(--sp-md) 52px;
  transition: 0.3s ease;
}

.header.header--hidden {
  transform: translateY(-100%);
}
.header--scrolled {
  background: var(--c-white);
}
.header--scrolled .header__nav-link,
.header--scrolled .header__lang,
.header--scrolled .trp-language-item-name {
  color: var(--c-hero-dark);
}
.header--scrolled .btn--outline-white {
  color: var(--c-hero-dark);
  border-color: var(--c-hero-dark);
}

.header__inner {
  gap: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
}

.header__logo-box {
  display: inline-block;
  background: var(--c-white);
  border-radius: var(--r-sm);
  padding: 4px 5px;
  line-height: 0;
}

.header__logo-img {
  width: 84px;
}

.header__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 11;
}

.header__burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s background-color 0.3s;
}

.header__burger[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.header__burger[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.header__burger[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.header__nav-link {
  font-size: 20px;
  font-weight: var(--fw-medium);
  color: var(--c-white);
  transition: 0.3s all;
  padding: 4px 10px;
  border-radius: 5px;
}
.header__nav-link:hover {
  background-color: #e6e6e66f;
}
.header__nav-link--dropdown.header__nav-link:hover {
  color: var(--c-purple);
  background-color: transparent;
}
.header__nav-link--dropdown {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.header__nav-arrow,
.icon--chevron-down {
  margin-left: 2px;
}

.header__nav-link--how {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.header__desktop-demo {
  font-size: 16px;
}

.header__nav-demo {
  display: none;
}
.header__overlay {
  display: none;
}
.header__lang {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  color: var(--c-white);
  cursor: pointer;
}

/* header icons now inline SVG with size set via attributes */

/* lang arrow handled by .icon--chevron-down */

/* Hero Content */
.hero__content {
  position: relative;
  z-index: 5;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--top-pd) 0 0;
  gap: var(--sp-lg);
}

.hero__left {
  flex-shrink: 0;
  max-width: 600px;
  width: 100%;
}
.hero__car-360 {
  position: relative;
  height: 560px;
}

.hero__car-360-skeleton {
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  transition: opacity 0.7s;
}

.hero__car-360-spinner {
  width: 48px;
  height: 48px;
  border: 3px solid rgba(255, 255, 255, 0.2);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.hero__car-360.is-loading iframe {
  opacity: 0;
}

.hero__car-360 iframe {
  transition: opacity 0.7s;
}

.hero__car-360:not(.is-loading) .hero__car-360-skeleton {
  opacity: 0;
  pointer-events: none;
}

.hero__car-main {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
}

.hero__car-img {
  width: 468px;
  height: 343px;
  object-fit: cover;
  border-radius: var(--r-md);
}

.hero__see-inside {
  position: absolute;
  top: 11px;
  left: 13px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--c-purple);
  border-radius: 11px;
  padding: 6px 12px;
}

.hero__see-inside span {
  font-size: var(--fs-label);
  font-weight: var(--fw-semibold);
  color: var(--c-white);
  letter-spacing: -0.2px;
}

.hero__see-icon,
.hero__dot-icon {
  width: 14px;
  height: 14px;
}
.hero__expand-icon {
  width: 12px;
  height: 12px;
}

.hero__car-strip {
  position: relative;
  margin-top: var(--sp-xs);
  border-radius: var(--r-md);
  overflow-x: auto;
  overflow-y: hidden;
  height: 115px;
  scrollbar-width: none;
}

.hero__car-strip::-webkit-scrollbar {
  display: none;
}

.hero__strip-img {
  width: max-content;
  min-width: 100%;
  height: 115px;
  object-fit: cover;
  border-radius: var(--r-md);
}

.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 39px;
  height: 39px;
  border-radius: var(--r-full);
  background: var(--c-purple);
  color: var(--c-white);
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__arrow--left {
  left: 9px;
}
.hero__arrow--right {
  right: 9px;
}

.hero__right {
  max-width: 536px;
  text-align: right;
  padding-top: 100px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.hero__title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: var(--lh-hero);
  margin-bottom: var(--sp-md);
}

.hero__desc {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--c-white);
  line-height: var(--lh-body-tight);
  margin-bottom: 30px;
}

/* WhatsApp */
.whatsapp-btn {
  position: fixed;
  right: var(--sp-lg);
  bottom: var(--sp-lg);
  z-index: 100;
  display: flex;
  align-items: center;
  background: #000;
  border-radius: 100%;
  text-decoration: none;
  overflow: hidden;
  max-width: 60px;
  transition: max-width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.whatsapp-btn:hover {
  max-width: 400px;
}

.whatsapp-btn__label {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  padding: 0 16px 0 24px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-btn:hover .whatsapp-btn__label {
  opacity: 1;
}

.whatsapp-btn__circle {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.whatsapp-btn__circle img {
  width: 28px;
  height: 25px;
}

.wa-float {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 100;
  display: flex;
  align-items: center;
  text-decoration: none;
}

.wa-float__icon {
  width: 60px;
  height: 60px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 2;
}

.wa-float__icon img {
  width: 28px;
  height: 25px;
}

.wa-float__text {
  background: #000;
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  white-space: nowrap;
  height: 60px;
  line-height: 60px;
  padding: 0 76px 0 24px;
  border-radius: 999px;
  position: absolute;
  right: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.wa-float:hover .wa-float__text {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

/* ========== LOGOS ========== */
.logos {
  width: 100%;
  height: 120px;
  background: var(--c-white);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.logos__track {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
  animation: logosScroll 25s linear infinite;
  will-change: transform;
}

.logos__item {
  height: 100%;
  padding-top: 0px;
  object-fit: contain;
  flex-shrink: 0;
}

.logos__item--cover {
  object-fit: cover;
}

@keyframes logosScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* ========== 360 SECTION ========== */
.section-360 {
  padding: 70px 50px;
}

.section-360__container {
  max-width: var(--container-max);
  margin: 0 auto;
  background: var(--c-card-dark);
  border-radius: var(--r-xl);
  padding: 50px 50px 50px 60px;
  display: flex;
  gap: 142px;
  overflow: hidden;
  min-height: 556px;
}

.section-360__text {
  max-width: 483px;
  flex-shrink: 0;
  padding-top: 70px;
}

.section-360__title {
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--c-gray-text);
  line-height: var(--lh-h2);
  margin-bottom: var(--sp-md);
}

.section-360__desc {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--c-gray-text);
  line-height: var(--lh-body);
}

.section-360__images {
  flex: 1;
  width: 50%;
}
.section-360__images img {
  max-width: none;
  border-radius: var(--r-lg);
  overflow: hidden;
  width: 100%;
}

.section-360__main-img {
  border-radius: var(--r-lg);
  overflow: hidden;
  flex: 1;
}

.section-360__hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
}

.section-360__thumbs {
  display: flex;
  gap: 14px;
}

.section-360__thumb {
  flex: 1;
  border-radius: var(--r-md);
  overflow: hidden;
  height: 112px;
}

.section-360__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ========== EXPERIENCE ========== */
.experience {
  padding: var(--sp-2xl) 0;
}

.experience__cards {
  display: flex;
  gap: 45px;
  justify-content: center;
}

.experience__card {
  background: var(--c-gray-light);
  border-radius: var(--r-lg);
  padding: 30px 32px var(--sp-lg);
  width: 430px;
  text-align: center;
}

.experience__card-icon {
  width: 78px;
  height: 78px;
  margin: 0 auto var(--sp-md);
}

.experience__card-icon img {
  width: 100%;
  height: 100%;
}

.experience__card-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--c-black);
  line-height: var(--lh-h3);
  margin-bottom: var(--sp-md);
}

.experience__card-desc {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--c-black);
  line-height: var(--lh-body);
  margin-bottom: 30px;
  max-width: 367px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== SOLUTIONS ========== */
.solutions {
  padding: var(--sp-xl) 75px;
}

.solutions__subtitle {
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  line-height: var(--lh-h3);
  text-align: center;
  margin-bottom: 50px;
}

.solutions__content {
  display: flex;
  gap: 105px;
  align-items: flex-start;
}

.solutions__list {
  flex-shrink: 0;
  width: 530px;
}

.solutions__item {
  padding: 10px 30px;
  border-radius: var(--r-lg);
  cursor: pointer;
  transition: background 0.2s;
}

.solutions__item--active {
  background: var(--c-gray-light);
  padding: 20px 30px;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.solutions__item-header {
  display: flex;
  align-items: center;
  gap: var(--sp-md);
}

.solutions__item-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
}

.solutions__item-text {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--c-black);
  line-height: var(--lh-h3);
}

.solutions__item-desc {
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  color: var(--c-black);
  line-height: 28px;
  margin-top: var(--sp-md);
  padding-left: 45px;
}

.solutions__image {
  flex: 1;
  border-radius: var(--r-lg);
  overflow: hidden;
  height: 473px;
}

.solutions__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-lg);
}

/* ========== INTEGRATIONS ========== */
.integrations {
  padding: var(--sp-xl) 0 var(--sp-2xl);
}

.integrations__tabs {
  background: var(--c-gray-light);
  border-radius: var(--r-lg);
  display: flex;
  align-items: stretch;
  padding: 30px 0;
}

.integrations__tab {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-sm);
}

.integrations__tab-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--c-black);
  line-height: var(--lh-h3);
}

.integrations__tab-link {
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--c-purple);
  line-height: var(--lh-body-tight);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: 0.3s all;
}
.integrations__tab-link:hover {
  color: var(--c-dark-purple);
}
/* tab arrows now inline SVG */

.integrations__tab-divider {
  width: 1px;
  background: #ccc;
  align-self: stretch;
}

/* ========== RESOURCES ========== */
.resources {
  padding: var(--sp-xl) 0 var(--sp-2xl);
  text-align: center;
}

.resources__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-lg);
  margin-bottom: var(--sp-lg);
}

.resources__card {
  display: flex;
  flex-direction: column;
  background: var(--c-gray-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  text-align: left;
  padding-bottom: var(--sp-md);
}

.resources__card-img {
  height: 250px;
  overflow: hidden;
  border-radius: var(--r-md);
  margin: 10px;
  width: calc(100% - 20px);
}

.resources__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-md);
}

.resources__card-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  color: var(--c-dark);
  line-height: var(--lh-body-tight);
  padding: 15px var(--sp-md) 10px;
}

.resources__card-link {
  flex: 1;
  display: flex;
  font-family: var(--ff-secondary);
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  color: var(--c-dark-purple);
  line-height: var(--lh-body-tight);
  padding: 0 var(--sp-md) 0;
  align-items: flex-end;
}

/* ========== DEMO ========== */
.demo {
  position: relative;
  background: var(--c-hero-dark);
  padding: 70px 0 104px;
  overflow: hidden;
}

.demo__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.demo__bg-mask {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.demo__container {
  position: relative;
  z-index: 2;
  max-width: 945px;
  margin: 0 auto;
  text-align: center;
  padding: 0 var(--sp-md);
}

.demo__title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: var(--lh-h2);
  margin-bottom: 25px;
}

.demo__desc {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--c-gray-text);
  line-height: var(--lh-body-tight);
  margin-bottom: var(--sp-lg);
}

.demo__form {
  background: var(--c-card-dark);
  border-radius: var(--r-lg);
  padding: 30px 30px 34px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-md);
}

.demo__form-row > p {
  display: flex;
  gap: var(--sp-md);
}

.demo__input,
.demo__textarea {
  flex: 1;
  border: 1px solid var(--c-gray-border);
  border-radius: var(--r-md);
  background: transparent;
  padding: 0 var(--sp-md);
  font-family: inherit;
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  color: var(--c-white);
}

.demo__input {
  width: 100%;
  height: 59px;
}
.demo__input--full {
  width: 100%;
  flex: none;
}

.demo__textarea {
  margin-top: 20px;
  width: 100%;
  max-height: 154px;
  flex: none;
  padding: var(--sp-md);
  resize: none;
  line-height: var(--lh-body);
}

.demo__input::placeholder,
.demo__textarea::placeholder {
  color: var(--c-gray-placeholder);
  opacity: 0.5;
  font-weight: var(--fw-semibold);
}

.demo__submit {
  align-self: center;
  margin-top: 6px;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--c-black);
  padding: 50px 0;
}

.footer__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  padding: 0 50px;
}

.footer__columns {
  display: flex;
  gap: var(--sp-lg);
}

.footer__col-title {
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  color: var(--c-white);
  line-height: var(--lh-body-tight);
  margin-bottom: 10px;
}

.footer__col-list li {
  margin-bottom: 0;
}

.footer__col-list a {
  font-size: var(--fs-body-sm);
  font-weight: var(--fw-regular);
  color: var(--c-white);
  line-height: var(--lh-body-sm);
}

.footer__col-list a[href^="mailto:"] {
  text-decoration: underline;
}

.footer__demo-btn {
  flex-shrink: 0;
  padding: 11px 22px;
}

/* ==========================================================
   SHARED PATTERNS (used across multiple pages)
   ========================================================== */

/* ---- Page Hero ---- */
.page-hero {
  position: relative;
  width: 100%;
  height: 267px;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    102.65deg,
    rgb(88, 76, 136) 21.76%,
    rgb(22, 19, 34) 98.83%
  );
  z-index: 0;
}

.page-hero__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--top-pd);
}

.page-hero__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-white);
  text-align: center;
}

.page-hero__breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  font-family: var(--ff-primary);
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  line-height: 24px;
  color: var(--c-white);
}

.page-hero__breadcrumbs a {
  color: var(--c-white);
  opacity: 0.8;
}

.page-hero__breadcrumbs a:hover {
  opacity: 1;
}

.page-hero__breadcrumbs svg {
  opacity: 0.6;
}

/* ---- Anchored Strip ---- */
.anchored-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
  height: 69px;
  background: var(--c-gray-light);
}

.anchored-strip__link {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
  text-decoration: none;
  position: relative;
}
.anchored-strip__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 0;
  height: 1px;
  background: var(--c-black);
  transition: 0.3s all;
}

.anchored-strip__link:hover::after {
  width: 100%;
}

/* ---- Product Card (shared two-column layout) ---- */
.product-card {
  padding: 10px 0;
}

.product-card__inner {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 27px 40px;
  background: var(--c-gray-light);
  border-radius: var(--r-xl);
}
.product-card__inner.with-before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.product-card__inner--reverse {
  flex-direction: row-reverse;
}

.product-card__text {
  flex: 1;
  min-width: 0;
}

.product-card__text--right {
  text-align: right;
}

.product-card__text--right .btn {
  margin-left: auto;
}

h3.product-card__title {
  font-size: var(--fs-h3-new);
  font-weight: var(--fw-semibold);
  margin-bottom: 16px;
}
.product-card__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-dark);
  margin-bottom: 28px;
}

.product-card__subtitle {
  font-family: var(--ff-primary);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h3);
  color: var(--c-dark);
  margin-bottom: 28px;
}

.product-card__desc {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body-tight);
  color: var(--c-dark);
  margin-bottom: 28px;
}

.product-card__image {
  width: 100%;
  flex: 1;
  min-width: 0;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.product-card__image video,
.product-card__image img {
  width: 100%;
  max-height: 356px;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--r-xl);
}

/* Stacked images (Imaging section) */
.product-card__image--stacked {
  position: relative;
  aspect-ratio: 615 / 472;
}

.product-card__img-back {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--r-xl);
}

.product-card__img-front {
  position: absolute;
  bottom: 0;
  left: 5%;
  width: 90%;
  border-radius: var(--r-xl);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* ---- Resources Section (shared) ---- */
.resources-section {
  padding: var(--sp-xl) 0;
}

.resources-section__title {
  font-family: var(--ff-primary);
  font-size: 40px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-dark);
  text-align: center;
  margin-bottom: 40px;
}

.resources-section__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1103px;
  margin: 0 auto;
}

.resource-card {
  background: var(--c-gray-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  padding: 10px;
}

.resource-card__image {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 321 / 250;
}

.resource-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.resource-card__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  line-height: 24px;
  color: var(--c-dark);
  padding: 15px 10px 5px;
}

.resource-card__link {
  display: inline-block;
  font-family: var(--ff-secondary);
  font-size: var(--fs-h3);
  font-weight: var(--fw-medium);
  line-height: 24px;
  color: var(--c-dark-purple);
  text-decoration: none;
  padding: 5px 10px 15px;
}

.resource-card__link:hover {
  text-decoration: underline;
}

.resources-section__cta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}

/* ---- Book Demo Strip (shared) ---- */
.book-demo-strip {
  position: relative;
  width: 100%;
  padding: 70px 0;
  background: var(--c-hero-dark);
  background-image: url("/assets/products/merchandising-page/book-demo-bg.svg");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.book-demo-strip__content {
  max-width: var(--container-text);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  text-align: center;
}

.book-demo-strip__content .btn {
  margin-top: 20px;
}

/* Imaging / Solutions variant */
.book-demo-strip--imaging {
  background-image: url("/assets/products/imaging-page/book-demo-bg.svg");
  padding: 70px 0 80px;
}

/* ---- Blog Shared Styles ---- */
.blog-content {
  padding: 70px 0 80px;
}

.blog-content__inner {
  display: flex;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.blog-posts {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.blog-post__image {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 2px solid #212022;
  aspect-ratio: 715 / 400;
}

.blog-post__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-post__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-dark);
  margin-top: 20px;
  margin-bottom: 15px;
}

.blog-post__meta {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
  opacity: 0.5;
  margin-bottom: 10px;
}

.blog-sidebar {
  flex: 0 0 578px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* Search */
.blog-search {
  position: relative;
}

.blog-search__input {
  width: 100%;
  background: #f2f2ff;
  border: 1px solid #1f167e;
  border-radius: var(--r-lg);
  padding: 15px 60px 15px 20px;
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
  opacity: 0.5;
  outline: none;
  transition: opacity 0.2s;
}

.blog-search__input:focus {
  opacity: 1;
}

.blog-search__input::placeholder {
  color: var(--c-dark);
}

.blog-search__icon {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

/* Recent Posts */
.blog-recent {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.blog-recent__item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.blog-recent__thumb {
  width: 128px;
  height: 86px;
  border-radius: var(--r-md);
  object-fit: cover;
  flex-shrink: 0;
}

.blog-recent__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  line-height: 24px;
  color: var(--c-dark);
  margin-bottom: 8px;
}

.blog-recent__meta {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
  opacity: 0.5;
}

/* Most Popular */
.blog-popular__heading {
  font-family: var(--ff-primary);
  font-size: 24px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-body);
  color: var(--c-dark);
  margin-bottom: 20px;
}

.blog-popular__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-popular__list li a {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 24px;
  color: var(--c-dark);
  text-decoration: none;
}

.blog-popular__list li a:hover {
  text-decoration: underline;
}

.blog-popular__link--active {
  color: var(--c-purple) !important;
  text-decoration: underline !important;
}

/* ==========================================================
   PAGE-SPECIFIC STYLES
   ========================================================== */

/* ========== PRODUCTS PAGE ========== */

/* ---- Products Intro ---- */
.products-intro {
  padding: var(--sp-xl) 0 var(--sp-lg);
  text-align: center;
}

.products-intro .section-title {
  margin-bottom: 15px;
}

/* ---- Integrations Hero ---- */
.integrations-hero {
  position: relative;
  width: 100%;
  padding: 70px 0 60px;
  background: linear-gradient(
    102.65deg,
    rgb(88, 76, 136) 21.76%,
    rgb(22, 19, 34) 98.83%
  );
  overflow: hidden;
  margin-top: 30px;
}

.integrations-hero__content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-md) 0;
  text-align: center;
}

.integrations-hero__content .section-title {
  margin-bottom: 15px;
}

.integrations-hero__content .section-subtitle {
  margin-bottom: 15px;
}

.integrations-hero__image {
  margin-top: 50px;
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 658px;
  margin-left: auto;
  margin-right: auto;
}

.integrations-hero__image img,
.integrations-hero__image video {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
  max-height: 370px;
  border-radius: var(--r-xl);
}

/* ---- Data & Analytics ---- */
.data-section {
  padding: var(--sp-xl) 0;
}

.data-section .section-title {
  margin-bottom: 25px;
}

.data-section__card-spacing {
  margin-top: 20px;
}

/* ---- Security Section ---- */
.security-section {
  position: relative;
  width: 100%;
  padding: 80px 0 60px;
  overflow: hidden;
}

.security-section__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    78.3deg,
    rgb(35, 33, 39) 9.83%,
    rgb(81, 67, 126) 121.09%
  );
  z-index: 0;
}

.security-section__content {
  position: relative;
  z-index: 2;
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  text-align: center;
}

.security-section__content .section-title {
  margin-bottom: 15px;
}

.security-section__content .section-subtitle {
  margin-bottom: 15px;
}

.security-section__image {
  margin-top: 50px;
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 658px;
  margin-left: auto;
  margin-right: auto;
}

.security-section__image img {
  width: 100%;
  border-radius: var(--r-xl);
}

/* ---- SOC 2 + Partner Logos ---- */
.soc2-logos-section {
  background: var(--c-gray-light);
  padding: 70px 0 0;
}

.soc2-logos-section > .container {
  text-align: center;
}

.soc2-logos-section > .container > .section-title {
  margin-bottom: 20px;
}

.soc2-section__body {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  margin-top: 50px;
}

.soc2-section__image {
  flex: 0 0 auto;
  width: 667px;
  max-width: 50%;
  aspect-ratio: 667 / 356;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: var(--c-white);
}

.soc2-section__image img {
  padding: 10px;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.soc2-section__text {
  flex: 1;
  min-width: 0;
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
  text-align: right;
  padding-top: 106px;
}

/* ---- Awards Row ---- */
.awards-row {
  padding: 40px 0;
}

.awards-row__inner {
  position: relative;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 50px;
  background: var(--c-white);
  border-radius: var(--r-xl);
  min-height: 199px;
  display: flex;
  align-items: center;
}

.awards-row__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-dark);
  padding: 8px;
}

.awards-row__arrow--left {
  left: 16px;
}

.awards-row__arrow--right {
  right: 16px;
}

.awards-swiper {
  width: 100%;
  overflow: hidden;
  padding: 0 20px;
}

.awards-swiper .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}

img.award {
  flex-shrink: 0;
  height: 100%;
  max-height: 160px;
  object-fit: contain;
}

/* ---- Partner Logos ---- */
.partner-logos {
  padding: 50px 0;
  text-align: center;
}

.partner-logos .section-title {
  margin-bottom: 15px;
}

.partner-logos .section-desc {
  max-width: var(--container-text);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 35px;
}

.partner-logos--last {
  padding-bottom: 70px;
}

.partner-logos__carousel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.partner-logos__arrow {
  flex-shrink: 0;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--c-dark);
  padding: 8px;
}

.partner-logos__row {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 20px 40px;
}

.partner-logos__row::-webkit-scrollbar {
  display: none;
}

.partner-logos__row img {
  object-fit: contain;
  flex-shrink: 0;
}

/* Websites logos */
.partner-logos__row--websites img {
  max-height: 44px;
}

/* Dealer Platforms logos */
.partner-logos__row--dealers img {
  max-height: 55px;
}

/* Marketplaces logos — preserve inline dimensions */
.partner-logos__row--marketplaces img {
  max-height: 90px;
}

.partner-logos__row--wide {
  gap: 40px;
}

.partner-logos--card .partner-logos__carousel {
  background: var(--c-white);
  border-radius: var(--r-xl);
  padding: 20px;
}

/* ========== MERCHANDISING PAGE ========== */

/* ---- Merch Card ---- */
.merch-card {
  padding: 10px 0;
}

/* ---- Stats Row ---- */
.stats-row {
  display: flex;
  gap: 15px;
  margin-top: 10px;
}

.stat-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 180px;
  padding: 15px;
  border: 1px solid var(--c-dark);
  border-radius: var(--r-lg);
}

.stat-card__number {
  font-family: var(--ff-primary);
  font-size: 30px;
  font-weight: var(--fw-semibold);
  line-height: 24px;
  color: var(--c-black);
}

.stat-card__label {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
}

/* ---- Dark Stat Banner ---- */
.stat-banner {
  background: var(--c-black);
  padding: 50px 0;
}

.stat-banner__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px 50px;
  background: #212022;
  border-radius: var(--r-lg);
}

.stat-banner__text {
  font-family: var(--ff-primary);
  font-size: 30px;
  font-weight: var(--fw-bold);
  line-height: 36px;
  color: var(--c-white);
  text-align: center;
}

.stat-banner__highlight {
  color: #7e60d7;
}

/* ---- VINtelligent AI Section ---- */
.vintelligent-section {
  position: relative;
  width: 100%;
  padding: 70px 0 60px;
  background: linear-gradient(
    102.65deg,
    rgb(88, 76, 136) 21.76%,
    rgb(22, 19, 34) 98.83%
  );
  overflow: hidden;
}

.vintelligent-section__content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  text-align: center;
}

.vintelligent-section__image {
  margin-top: 40px;
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 658px;
  margin-left: auto;
  margin-right: auto;
}

.vintelligent-section__image video {
  width: 100%;
  border-radius: var(--r-xl);
}

/* ========== IMAGING PAGE ========== */

/* ---- Imaging Intro ---- */
.imaging-intro {
  padding: 60px 0 20px;
  text-align: center;
}

/* ---- Hero Image (before/after) ---- */
.imaging-hero-image {
  padding: 20px 0 40px;
}

.imaging-hero-image__wrapper {
  max-width: var(--container-narrow);
  margin: 0 auto;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.imaging-hero-image__wrapper img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-xl);
}

/* ---- Cluttered Section (dark) ---- */
.cluttered-section {
  background: var(--c-black);
  padding: 70px 0;
}

.cluttered-section__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-white);
  text-align: center;
  margin-bottom: 25px;
}

.cluttered-section__desc {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-white);
  text-align: center;
  max-width: var(--container-text);
  margin: 0 auto 50px;
}

.cluttered-card__text {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-white);
  text-align: right;
  margin-bottom: 20px;
}

.cluttered-card__source {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-white);
  text-align: right;
}

/* ---- Imaging Cards wrapper ---- */
.imaging-cards {
  padding: 10px 0;
}

/* ---- Stats Strip ---- */
.imaging-stats {
  margin: 30px 0;
  background: var(--c-black);
  padding: 50px 0;
}

.imaging-stats__inner {
  display: flex;
  gap: 24px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 50px;
}

.imaging-stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 24px 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--r-lg);
}

.imaging-stat-card__number {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-purple);
}

.imaging-stat-card__label {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-white);
}

/* ---- Studio Styles ---- */
.studio-styles {
  padding: 40px 0;
}

.studio-styles__showcase {
  max-width: var(--container-max);
  margin: 20px auto 0;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.studio-styles__showcase img {
  width: 100%;
  height: auto;
  display: block;
}

.studio-styles__tags {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin-top: 30px;
}

.studio-styles__tag {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
  background: var(--c-gray-light);
  border: 1px solid var(--c-dark);
  border-radius: var(--r-sm);
  padding: 5px 20px;
}

/* ---- Image Cloning ---- */
.image-cloning {
  padding: 40px 0;
}

.image-cloning__hero {
  max-width: var(--container-narrow);
  margin: 30px auto;
  border-radius: var(--r-xl);
  overflow: hidden;
}

.image-cloning__hero img {
  width: 100%;
  height: auto;
  display: block;
}

.image-cloning__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--container-narrow);
  margin: 0 auto;
}

.image-cloning__card {
  background: var(--c-gray-light);
  border-radius: var(--r-lg);
  padding: 22px 32px 30px;
  display: flex;
  flex-direction: column;
}

.image-cloning__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 80px;
}

.image-cloning__card-text {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
}

/* ---- Damage Tagging ---- */
.damage-tagging {
  position: relative;
  width: 100%;
  padding: 70px 0 60px;
  overflow: hidden;
  background-image: url("../images/products/imaging-page/damage-tagging/bg.svg");
  background-size: cover;
  background-position: center;
}

.damage-tagging__content {
  max-width: var(--container-narrow);
  margin: 0 auto;
  padding: 0 var(--sp-md);
  text-align: center;
}

.damage-tagging__image {
  margin-top: 40px;
  border-radius: var(--r-xl);
  overflow: hidden;
  max-width: 658px;
  margin-left: auto;
  margin-right: auto;
}

.damage-tagging__image iframe {
  width: 100%;
  min-height: 350px;
  border-radius: var(--r-xl);
}

/* ========== SOLUTIONS PAGE ========== */

/* ---- Dealership Groups ---- */
.sol-dealership {
  padding: 60px 0;
}

.sol-dealership__inner {
  display: flex;
  align-items: flex-start;
  gap: 80px;
  max-width: 1110px;
  margin: 0 auto;
}

.sol-dealership__text {
  flex: 1;
  min-width: 0;
}

.sol-dealership__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-dark);
  margin-bottom: 25px;
}

.sol-dealership__desc {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
}

.sol-dealership__stats {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.sol-dealership__stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.sol-dealership__stat-number,
.sol-dealership__stat-number span {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-dark);
}

.sol-dealership__stat-label {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
}

/* ---- Solution Cards ---- */
.sol-local,
.sol-custom {
  padding: 60px 0;
}

.sol-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.sol-card {
  background: var(--c-gray-light);
  border-radius: var(--r-lg);
  padding: 40px;
}

.sol-card__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 60px;
}

.sol-card__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-dark);
  margin-bottom: 16px;
}

.sol-card__desc {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
}

/* ---- Specialty Vehicles Dealers ---- */
.sol-specialty {
  padding: 60px 0;
}

.sol-specialty__inner {
  display: flex;
  align-items: flex-start;
  gap: 40px;
  max-width: var(--container-max);
  margin: 40px auto 0;
}

.sol-specialty__text {
  flex: 0 0 410px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-top: 100px;
}

.sol-specialty__feature {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--c-gray-light);
  border-radius: var(--r-lg);
  padding: 20px 25px;
}

.sol-specialty__feature--simple {
  background: none;
  padding: 10px 25px;
}

.sol-specialty__feature-icon {
  width: 25px;
  height: 25px;
  flex-shrink: 0;
  margin-top: 2px;
}

.sol-specialty__feature-title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h3);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h3);
  color: var(--c-dark);
  margin-bottom: 10px;
}

.sol-specialty__feature--simple .sol-specialty__feature-title {
  margin-bottom: 0;
}

.sol-specialty__feature-desc {
  margin-top: 20px;
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
}

.sol-specialty__images {
  flex: 1;
  min-width: 0;
}

.sol-specialty__main-image {
  border-radius: var(--r-lg);
  overflow: hidden;
}

.sol-specialty__main-image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--r-lg);
}

.sol-specialty__thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.sol-specialty__thumbs img {
  flex: 1;
  min-width: 0;
  height: 112px;
  object-fit: cover;
  border-radius: var(--r-md);
}

/* ---- Wholesale Auctions ---- */
.sol-wholesale {
  padding: 10px 0;
}

.sol-wholesale .product-card__title {
  margin-bottom: 16px;
}

/* ========== ABOUT US PAGE ========== */

/* ---- Intro ---- */
.about-intro {
  padding: 60px 0 40px;
  text-align: center;
}

.about-intro__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-dark);
  max-width: 745px;
  margin: 0 auto 20px;
}

.about-intro__desc {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
  max-width: var(--container-text);
  margin: 0 auto;
}

/* ---- We Believe ---- */
.about-believe {
  padding: 20px 0 60px;
}

.about-believe__heading {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-dark);
  margin-bottom: 30px;
  padding-left: 45px;
}

.about-believe__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.about-believe__card {
  background: var(--c-gray-light);
  border-radius: var(--r-lg);
  padding: 40px 34px;
  display: flex;
  flex-direction: column;
}

.about-believe__icon {
  width: 50px;
  height: 50px;
  margin-bottom: 88px;
}

.about-believe__card-title {
  font-family: var(--ff-primary);
  font-size: 32px;
  font-weight: var(--fw-medium);
  line-height: var(--lh-h2);
  color: var(--c-dark);
  margin-bottom: 15px;
}

.about-believe__card-desc {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
}

/* ---- Advantage / Testimonial ---- */
.about-advantage {
  background: var(--c-black);
  padding: 50px 0;
}

.about-advantage__card {
  background: #212022;
  border-radius: var(--r-lg);
  padding: 40px 80px;
}

.about-advantage__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-white);
  margin-bottom: 30px;
  max-width: 956px;
}

.about-advantage__text {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-white);
}

.about-advantage__text p {
  margin-bottom: 16px;
}

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

/* ---- About Contact Form ---- */
.about-contact {
  position: relative;
  padding: 70px 0 80px;
  background: var(--c-hero-dark);
  overflow: hidden;
}

.about-contact__bg {
  position: absolute;
  inset: 0;
  background-image: url("/assets/about-us/contact-bg.svg");
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.about-contact__content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.about-contact__title {
  font-family: var(--ff-primary);
  font-size: 40px;
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-white);
  margin-bottom: 25px;
}

.about-contact__desc {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 24px;
  color: #d9d9d9;
  margin-bottom: 40px;
}

.about-contact__form {
  max-width: 945px;
  margin: 0 auto;
  background: #211f23;
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-contact__row {
  display: flex;
  gap: 20px;
}

.about-contact__input,
.about-contact__textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #706c82;
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-family: var(--ff-primary);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  line-height: 20px;
  color: var(--c-white);
  outline: none;
  transition: border-color 0.2s;
}

.about-contact__input::placeholder,
.about-contact__textarea::placeholder {
  color: #9996a8;
  opacity: 0.5;
}

.about-contact__input:focus,
.about-contact__textarea:focus {
  border-color: var(--c-purple);
}

.about-contact__textarea {
  min-height: 154px;
  resize: vertical;
}

.about-contact__submit {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

/* ========== CONTACT US PAGE ========== */

/* ---- Contact Section ---- */
.contact-section {
  padding: 70px 0 80px;
}

.contact-section__inner {
  display: flex;
  align-items: flex-start;
  gap: 60px;
  max-width: var(--container-max);
  margin: 0 auto;
}

.contact-section__text {
  flex: 0 0 400px;
  padding-top: 0;
}

.contact-section__title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-dark);
  margin-bottom: 30px;
}

.contact-section__desc {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
  margin-bottom: 16px;
}

.contact-section__desc:last-child {
  margin-bottom: 0;
}

/* ---- Contact Form ---- */
.contact-form {
  flex: 1;
  min-width: 0;
  background: var(--c-gray-light);
  border-radius: var(--r-lg);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-form__row p {
  display: flex;
  gap: 20px;
}
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form__textarea {
  margin-top: 20px;
}
.contact-form__input,
.contact-form__textarea {
  width: 100%;
  background: transparent;
  border: 1px solid #8b8a8e;
  border-radius: var(--r-md);
  padding: 18px 20px;
  font-family: var(--ff-primary);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  line-height: 20px;
  color: var(--c-dark);
  outline: none;
  transition: border-color 0.2s;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #212022;
  opacity: 0.5;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  border-color: var(--c-purple);
}

.contact-form__textarea {
  min-height: 154px;
  resize: vertical;
}

.contact-form__submit {
  display: flex;
  justify-content: center;
  margin-top: 5px;
}

/* ========== BLOG PAGE ========== */

/* ---- Blog Post Excerpt (listing context) ---- */
.blog-post__excerpt {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
  margin-bottom: 20px;
}

/* ---- Outline Button ---- */
.btn--outline {
  display: inline-block;
  font-family: var(--ff-primary);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  line-height: normal;
  color: var(--c-black);
  text-align: center;
  text-decoration: none;
  border: 1px solid var(--c-black);
  border-radius: var(--r-md);
  padding: 11px 40px;
  transition: background 0.2s, color 0.2s;
}

.btn--outline:hover {
  background: var(--c-black);
  color: var(--c-white);
}

/* ========== BLOG POST PAGE ========== */

/* ---- Blog Post Body ---- */
.blog-post__body {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
}

.blog-post__body p {
  margin-bottom: 16px;
}

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

/* Blog post page excerpt (different context: margin-top instead of margin-bottom) */
.blog-post__body + .blog-post__excerpt {
  margin-bottom: 0;
  margin-top: 20px;
}

.header__nav-link--dropdown {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header__dropdown {
  padding: 20px;
  gap: 12px;
  border-radius: 15px;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--c-white);
  min-width: 180px;
  width: max-content;
  overflow: hidden;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.header__dropdown-link {
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
  padding: 12px 20px;
  font-size: var(--fs-h3);
  color: black;
  text-decoration: none;
  transition: 0.3s all;
}
.header__dropdown-link:hover {
  background: #e6e6e6;
}
.header__nav-link--dropdown:hover .header__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(10px);
}

/* ==========================================================
   RESPONSIVE
   ========================================================== */

@media (max-width: 1450px) {
  .hero__content {
    padding: var(--top-pd) 52px;
    margin: 0;
  }
}

@media (max-width: 1400px) {
  .header__nav-link {
    font-size: 19px;
    padding: 4px 4px;
  }
}

@media (max-width: 1300px) {
  :root {
    --sp-md: 12px;
    --fs-btn: 18px;
    --fs-h3: 18px;
  }
  .btn {
    padding: 12px 28px;
  }
  .header__nav-link {
    font-size: 14px;
    padding: 4px 4px;
  }
  .header__dropdown-link img {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
  }
  .header__dropdown {
    padding: 10px;
  }
  .header__dropdown-link {
    padding: 6px 15px;
  }
  .header .btn {
    font-size: 14px;
    padding: 10px 20px;
  }
}

@media (max-width: 1200px) {
  :root {
    --top-pd: 120px;
  }
  .hero__content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding: var(--top-pd) var(--sp-md) 0;
  }

  .hero__right {
    text-align: center;
    max-width: 600px;
    align-items: center;
    order: -1;
  }

  .hero {
    height: auto;
    padding-bottom: var(--sp-xl);
  }

  .solutions__content {
    flex-direction: column;
  }
  .solutions__list {
    width: 100%;
  }
  .solutions__image {
    width: 100%;
    height: 350px;
  }

  .section-360__container {
    flex-direction: column;
  }
  .section-360__images {
    width: 100%;
  }
  .section-360__text {
    max-width: 100%;
  }

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

  .product-card__inner {
    padding: 30px;
    gap: 30px;
  }

  .soc2-section__body {
    gap: 30px;
  }

  .soc2-section__image {
    width: 50%;
  }

  .stats-row {
    flex-wrap: wrap;
  }

  .imaging-stats__inner {
    padding: 0 20px;
    gap: 16px;
  }

  .studio-styles__tags {
    gap: 40px;
  }

  .anchored-strip {
    gap: 30px;
    flex-wrap: wrap;
    height: auto;
    padding: 15px 20px;
  }

  .sol-dealership__inner {
    gap: 40px;
  }

  .sol-specialty__text {
    flex: 0 0 350px;
    padding-top: 40px;
  }

  .about-believe__heading {
    padding-left: 20px;
  }

  .about-advantage__card {
    padding: 30px 40px;
  }

  .blog-sidebar {
    flex: 0 0 400px;
  }
}

@media (max-width: 1044px) {
  .header {
    padding: var(--sp-md) 20px;
    padding-top: 20px;
    transform: none;
  }
  .header--scrolled .header__burger span {
    background-color: var(--c-hero-dark);
  }
  .header--scrolled .header__nav-link,
  .header--scrolled .header__lang,
  .header--scrolled .trp-language-item-name {
    color: var(--c-white);
  }
  .header--scrolled .btn--outline-white {
    color: var(--c-white);
    border-color: var(--c-white);
  }
  .header__burger[aria-expanded="true"] span:nth-child(1),
  .header__burger[aria-expanded="true"] span:nth-child(3) {
    background-color: var(--c-white);
  }
  .header__dropdown {
    position: static;
    opacity: 0;
    visibility: hidden;
    transform: none;
    display: none;
    padding-left: 20px;
  }
  .header__nav-item--dropdown:focus-within .header__dropdown {
    flex-direction: column;
    opacity: 1;
    visibility: visible;
  }
  .header__burger {
    display: flex;
  }
  .header__desktop-demo {
    display: none;
  }
  .header__nav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 280px;
    background: var(--c-card-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 30px 30px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    z-index: 10;
    overflow-y: auto;
  }
  .header__nav.is-open {
    transform: translateX(0);
  }
  .header__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9;
  }
  .header__overlay.is-visible {
    display: block;
  }
  .header__nav-link,
  .header__nav-link--how,
  .header__lang {
    font-size: var(--fs-body);
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  .header__nav-demo {
    display: inline-flex;
    margin-top: 20px;
    align-self: center;
  }

  .header__dropdown {
    position: static;
    opacity: 0;
    background: transparent;
    visibility: hidden;
    transform: none;
    display: none;
    padding-left: 20px;
    grid-column: span 2;
    gap: 6px;
  }
  .header__nav-link--dropdown {
    display: grid;
    grid-template-columns: 75px auto;
  }
  .header__nav-link--dropdown:hover .header__dropdown {
    display: flex;
    opacity: 1;
    visibility: visible;
    flex-direction: column;
    padding: 0;
  }
  .header__nav-item--dropdown:focus-within .header__dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .header__dropdown-link {
    font-size: 18px;
    background: transparent;
    color: var(--c-white);
    padding: 6px 10px;
  }
  .header__nav-link:hover {
    background-color: transparent;
  }
  .header__dropdown-link img {
    display: none;
  }
}

@media (max-width: 768px) {
  :root {
    --fs-hero: 30px;
    --fs-h2: 28px;
    --lh-hero: 36px;
    --lh-h2: 34px;
    --top-pd: 60px;
    --fs-h3-new: 16px;
  }

  /* .hero__content {
    padding-top: 20px;
  } */
  .hero__right {
    padding-top: 60px;
  }
  .hero__car-360 {
    width: 100%;
    max-width: 468px;
    height: 300px;
  }
  .hero__car-img {
    width: 100%;
  }
  .hero__strip-img {
    width: 100%;
  }

  .experience__cards {
    flex-direction: column;
    align-items: center;
  }
  .experience__card {
    width: 100%;
    max-width: 430px;
  }

  .resources__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .integrations__tabs {
    flex-direction: column;
    gap: var(--sp-md);
  }
  .integrations__tab-divider {
    width: 80%;
    height: 1px;
    align-self: center;
  }

  .demo__form-row > p {
    flex-direction: column;
  }

  .footer__columns {
    flex-direction: column;
    gap: 25px;
  }

  .section-360 {
    padding: var(--sp-lg) var(--sp-md);
  }
  .section-360__container {
    padding: 30px var(--sp-md);
  }
  .section-360__thumbs {
    flex-direction: column;
  }
  .section-360__thumb {
    height: auto;
  }

  .solutions {
    padding: var(--sp-lg) var(--sp-md);
  }

  .page-hero {
    height: auto;
    padding-bottom: 40px;
  }

  .product-card__inner {
    flex-direction: column !important;
    padding: 24px;
  }
  .product-card__inner.with-before-after {
    grid-template-columns: auto;
  }

  .product-card__text--right {
    text-align: left;
  }

  .product-card__text--right .btn {
    margin-left: 0;
  }

  .soc2-section__body {
    flex-direction: column;
  }

  .soc2-section__image {
    width: 100%;
    max-width: 100%;
  }

  .soc2-section__text {
    text-align: left;
    padding-top: 0;
  }

  .awards-row__inner {
    padding: 0 20px;
  }

  .partner-logos__row {
    gap: 30px;
    padding: 20px;
  }

  .partner-logos__row img {
    max-height: 40px;
    width: 100%;
    height: 100%;
  }

  .anchored-strip {
    gap: 20px;
    flex-direction: column;
    height: auto;
    padding: 15px 20px;
  }

  .stats-row {
    flex-direction: column;
  }

  .stat-card {
    width: 100%;
  }

  .resources-section__grid {
    grid-template-columns: 1fr;
  }

  .stat-banner__text {
    font-size: 22px;
    line-height: 30px;
  }

  .imaging-stats__inner {
    flex-direction: column;
    padding: 0 20px;
  }

  .studio-styles__tags {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
  }

  .image-cloning__cards {
    grid-template-columns: 1fr;
  }

  .cluttered-section__title {
    font-size: 28px;
  }

  .sol-dealership__inner {
    flex-direction: column;
    gap: 30px;
  }

  .sol-cards {
    grid-template-columns: 1fr;
  }

  .sol-specialty__inner {
    flex-direction: column;
  }

  .sol-specialty__text {
    flex: auto;
    padding-top: 0;
  }

  .sol-specialty__thumbs {
    flex-direction: column;
  }

  .sol-specialty__thumbs img {
    height: auto;
  }

  .about-believe__grid {
    grid-template-columns: 1fr;
  }

  .about-believe__icon {
    margin-bottom: 40px;
  }

  .about-believe__heading {
    padding-left: 0;
  }

  .about-contact__row {
    flex-direction: column;
  }

  .about-advantage__card {
    padding: 24px;
  }

  .contact-section__inner {
    flex-direction: column;
    gap: 30px;
  }

  .contact-section__text {
    flex: auto;
  }

  .contact-form__row p {
    flex-direction: column;
  }

  .blog-content__inner {
    flex-direction: column;
  }

  .blog-sidebar {
    flex: auto;
  }
}

/* translate */
.trp-shortcode-arrow {
  display: none;
}
.trp-shortcode-switcher {
  padding: 0;
}
.trp-shortcode-switcher__wrapper {
  display: flex;
}
.trp-language-item {
  padding-left: 1px !important;
}

/* tab */
.solutions-bottom {
  display: grid;
  grid-template-rows: 0fr;
  overflow: hidden;
  transition: 0.4s all;
}
.solutions-bottom > div {
  min-height: 0px;
}

.solutions__item--active .solutions-bottom {
  grid-template-rows: 1fr;
}

.blog-page aside.blog-sidebar {
  height: max-content;
  position: sticky;
  top: 20px;
}
.product-card-Swiper .swiper-pagination.swiper-pagination-bullets {
  position: static;
}

.product-card-Swiper .swiper-pagination-bullet {
  width: 35px;
  height: 4px;
  background: #7e60d7;
  border-radius: 1px;
}
.products-page .swiper-slide {
  display: flex !important;
  justify-content: center !important;
}
.partner-logos__row.partner-logos__row--websites,
.partner-logos__row.partner-logos__row--marketplaces {
  max-width: 680px;
}
.swiper-wrapper {
  align-items: center;
}

iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
  border: none;
}

.foto__wrapp {
  display: flex;
  overflow: hidden;
  position: relative;
}
.foto__item {
  width: 500px;
  height: 380px;
  pointer-events: none;
  user-select: none;
}
.foto__foto {
  position: absolute;
  overflow: hidden;
}

.foto__foto img {
  max-width: none;
  position: absolute;
  width: auto;
  height: 100%;
}

.foto__second {
  width: 50%;
}
.slide-line {
  position: absolute;
  top: 0;
  left: 50%;
  height: 100%;
  width: 4px;
  z-index: 2;
  background-color: var(--c-white);
}

.slide-line:after {
  content: url("../images/products/imaging/el.png");
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  padding-top: 5px;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
  width: 40px;
  height: 35px;
  border-radius: 50%;
}

.pop-up-demo {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -2;
  opacity: 0;
  transition: 0.3s all;
  background: rgba(0, 0, 0, 0.308);
}
.pop-up-demo.active {
  z-index: 100;
  opacity: 1;
}
.pop-up-demo__inner {
  background: var(--c-card-dark);
  margin: 20px;
  padding: 30px 40px 20px 40px;
  border-radius: 15px;
  max-width: 945px;
  width: 100%;
  text-align: center;
  max-height: 90vh;
  overflow-y: auto;
}

.pop-up-demo__inner .demo__form {
  padding: 10px 0;
}

.pop-up-demo__title {
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  color: var(--c-white);
  line-height: var(--lh-h2);
  margin-bottom: 25px;
}
.pop-up-demo__desc {
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--c-gray-text);
  line-height: var(--lh-body-tight);
  margin-bottom: var(--sp-lg);
}
@media (max-width: 768px) {
  .pop-up-demo__inner {
    padding: 20px;
    margin: 10px;
  }
}

.pop-up-sucsess {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -2;
  opacity: 0;
  transition: 0.3s all;
  background: rgba(0, 0, 0, 0.308);
}
.pop-up-sucsess.is-active {
  z-index: 10;
  opacity: 1;
}
.pop-up-sucsess--inner {
  margin: 0px 20px;
  padding: 30px;
  background-color: #211f23;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  width: auto;
  height: auto;
}
.pop-up-sucsess--inner .title {
  font-family: var(--ff-primary);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  line-height: var(--lh-h2);
  color: var(--c-white);
}
.pop-up-sucsess--inner p {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-white);
  text-align: center;
}

.pop-up-howWopk {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: -2;
  opacity: 0;
  transition: 0.3s all;
  background: rgba(0, 0, 0, 0.308);
}
.pop-up-howWopk.active {
  z-index: 100;
  opacity: 1;
}
.pop-up-howWopk .item {
  position: absolute;
  inset: 40px;
  z-index: -1;
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
  transition: 0.3s all;
}
.pop-up-howWopk .item.active {
  position: static;
  opacity: 1;
}
.pop-up-howWopk .inner {
  position: relative;
  background: var(--c-white);
  margin: 20px;
  padding: 40px;
  border-radius: 15px;
  max-width: 500px;
  transition: 0.3s all;
}

.pop-up-howWopk .item .icon {
  width: 50px;
  height: 50px;
}
.pop-up-howWopk .item .title {
  flex: 1;
  font-family: var(--ff-primary);
  font-size: var(--fs-h3-new);
  font-weight: var(--fw-semibold);
  line-height: var(--lh-h2);
  color: var(--c-dark);
}
.pop-up-howWopk .item p {
  font-family: var(--ff-primary);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: var(--lh-body);
  color: var(--c-dark);
}
.pop-up-howWopk .item .btn-wrapp {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
}
.pop-up-howWopk .item .btn-wrapp img {
  display: block;
  width: 12px;
}

@media (max-width: 768px) {
  .demo__form {
    padding: 20px;
  }
  .blog-recent__title {
    font-size: 16px;
  }
  .wa-float__text {
    font-size: 14px;
  }
  .wa-float__text {
    padding: 0 60px 0 24px;
  }
  section {
    overflow: hidden;
  }

  .foto__item {
    width: 100%;
    height: 100%;
  }
}
