/* =============================================================
   UNITÀ — MAIN CSS
   Estilos de componentes con arquitectura BEM.
   Orden: top to bottom del layout de página.
   ============================================================= */

/* =============================================
   PAGE SHELL
============================================= */

.page {
  background-color: var(--color-white);
  width: 100%;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* =============================================
   BLOQUE: header
============================================= */

.header {
  padding: var(--space-3) var(--space-4) 0;
  display: flex;
  justify-content: center;
  background: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header__container {
  width: 100%;
  max-width: 1200px;
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-xl);
  padding: var(--space-4) var(--space-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
}

.header__logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  text-decoration: none;
  flex-shrink: 0;
}

.header__logo-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.header__logo-text {
  height: 24px;
  object-fit: contain;
}

.nav {
  flex: 1;
  display: flex;
  justify-content: flex-end;
}

.nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-8);
}

.nav__item {
  margin: 0;
}

.nav__link {
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  font-size: var(--text-base);
  color: rgba(0, 0, 0, 0.80);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: var(--space-2);
  transition: color var(--transition-fast);
}

.nav__link:hover {
  color: var(--color-primary);
}

.nav__link--phone {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  border: 1px solid #CDCDCD;
  padding: 0 var(--space-4);
  height: 40px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
}

.nav__link-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: var(--weight-semibold);
  text-decoration: none;
  transition: background-color var(--transition-fast),
    transform var(--transition-fast);
  border-radius: var(--radius-sm);
  cursor: pointer;
  border: none;
}

.btn--login {
  font-size: var(--text-base);
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: 0 var(--space-4);
  height: 40px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn--login:hover {
  background-color: var(--color-primary-dark);
}

.btn--primary {
  font-size: var(--text-base);
  color: var(--color-white);
  background-color: var(--color-primary);
  padding: var(--space-4) var(--space-8);
  white-space: nowrap;
}

.btn--primary:hover {
  background-color: var(--color-primary-dark);
}

.btn--primary:active {
  transform: translateY(0);
}

.btn--white {
  font-size: var(--text-base);
  color: var(--color-primary);
  background-color: var(--color-white);
  padding: var(--space-3) var(--space-6);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn--white:hover {
  background-color: var(--color-gray-100);
  transform: translateY(-2px);
}

.btn--white:active {
  transform: translateY(0);
}

.btn--white:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

/* =============================================
   COMPONENTE: badge
============================================= */

.badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-6);
  border-radius: var(--radius-full);
}

.badge--light {
  background-color: var(--color-gray-100);
}

.badge--primary {
  background-color: var(--color-primary-light);
}

.badge--secondary {
  background-color: var(--color-secondary-light);
}

.badge--dark {
  background-color: rgba(255, 255, 255, 0.20);
}

.badge--green {
  background-color: var(--color-accent-green-light);
}

.badge--orange-muted {
  background-color: rgba(236, 115, 48, 0.10);
}

.badge--gray-muted {
  background-color: rgba(106, 106, 106, 0.10);
}

.badge--faq {
  background: rgba(243, 124, 72, 0.10);
}

.badge--market {
  background-color: #cdaea3;
}

.badge__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.badge__text {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.80);
}

.badge__text--primary {
  color: var(--color-primary);
  font-size: var(--text-base);
}

.badge__text--secondary {
  color: var(--color-secondary);
  font-size: var(--text-base);
}

.badge__text--green {
  color: var(--color-accent-green);
  font-size: var(--text-base);
}

.badge__text--white {
  color: var(--color-white);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
}

.badge__text--orange {
  color: var(--color-primary);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
}

.badge__text--gray {
  color: var(--color-gray-600);
  font-size: var(--text-base);
  font-weight: var(--weight-bold);
}

.badge__text--market {
  color: #7a1206;
  font-size: var(--text-base);
  font-weight: var(--weight-semibold);
}

/* =============================================
   SECCIÓN 1 — hero
============================================= */

.hero {
  flex: 1;
  display: flex;
  align-items: center;
  padding: var(--space-10) var(--space-20) var(--space-20);
}

.hero__wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero__media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero__image {
  width: 100%;
  max-width: 584px;
  height: auto;
  object-fit: contain;
}

.hero__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
}

.hero__content .badge {
  margin-bottom: var(--space-10);
}

.hero__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: var(--text-2xl);
  line-height: var(--leading-tight);
  color: var(--color-gray-900);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero__title-line {
  display: block;
  margin-bottom: var(--space-4);
}

.hero__title-highlight {
  display: block;
  color: var(--color-primary);
  font-family: var(--font-display);
  font-weight: var(--weight-regular);
  font-size: 35px;
}

.hero__description {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: var(--text-2xl);
  line-height: var(--leading-normal);
  color: rgba(0, 0, 0, 0.80);
  margin-top: var(--space-4);
}

.hero__content .btn {
  margin-top: var(--space-10);
}

/* =============================================
   SECCIÓN 2 — about
============================================= */

.about {
  background-color: var(--color-white);
  position: relative;
  overflow: hidden;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding: var(--space-20)
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 48px;
  background: linear-gradient(180deg, #e7e7e7 0%, rgba(255, 255, 255, 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.about__inner {
  max-width: 1100px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  position: relative;
  z-index: 1;
}

.about__header {
  display: flex;
  justify-content: center;
  width: 100%;
}

.about__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
}

.about__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  text-align: center;
  color: var(--color-gray-600);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
  margin: 0;
}

.about__title-prefix,
.about__title-suffix {
  color: var(--color-gray-600);
  font-weight: var(--weight-regular);
}

.about__title-brand {
  font-weight: var(--weight-bold);
  color: var(--color-gray-600);
}

.about__description {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: var(--weight-regular);

  text-align: center;
  color: var(--color-gray-600);
  max-width: 1120px;
  margin: 0;
}

.about__description-highlight {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--color-gray-600);
}

/* =============================================
   SECCIÓN 3 — market
============================================= */

.market {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  width: 100%;
  padding: var(--space-20) var(--space-20);
  background-color: var(--color-white);
  background-image: linear-gradient(218deg,
      rgba(255, 125, 68, 0.20) 0%,
      rgba(71, 191, 243, 0.20) 100%);
}

.market__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.market__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: var(--weight-regular);
  text-align: center;
  color: var(--color-gray-600);
  margin: 0;
}

.market__title--bold {
  font-weight: var(--weight-bold);
}

.market__description {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  text-align: center;
  color: var(--color-gray-600);
  max-width: 1100px;
  margin: 0;
}

.market__slider-wrapper {
  position: relative;
  width: 100%;
  max-width: 1200px;
}

.market__carousel {
  overflow: hidden;
  width: 100%;
}

.market__track {
  display: flex;
  transition: transform var(--transition-slow);
}

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

.market__image-wrapper {
  width: 100%;
  aspect-ratio: 16 / 7;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
}

.market__slide-content {
  width: 100%;
  display: flex;
  gap: var(--space-6);
  padding: var(--space-6);
  margin-top: var(--space-6);
  background: rgba(106, 106, 106, 0.05);
  border-radius: var(--radius-md);
  border: 1px solid rgba(106, 106, 106, 0.10);
}

.market__slide-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  white-space: nowrap;
}

.market__slide-text {
  flex: 1;
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  font-size: var(--text-base);
  line-height: var(--leading-normal);
  color: var(--color-gray-600);
}

.market__dots {
  display: flex;
  justify-content: center;
  width: 100%;
  gap: var(--space-2);
  margin-top: var(--space-6);
}

.market__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--color-gray-600);
  cursor: pointer;
  transition: background var(--transition-fast);
}

.market__dot--active,
.market__dot.active {
  background: var(--color-primary);
}

.market__arrows {
  position: absolute;
  top: 0;
  margin-top: 21.875%;
  left: -24px;
  right: -24px;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  pointer-events: none;
}

.market__arrow-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: none;
  background: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.market__arrow-btn:hover {
  background: var(--color-gray-100);
}

.market__arrow-btn:active {
  transform: scale(0.95);
}

.market__arrow-icon {
  width: 20px;
}

/* =============================================
   SECCIÓN 4 — challenge
============================================= */

.challenge {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-20);
  background: var(--color-gray-100);
}

.challenge__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  text-align: center;
}

.challenge__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-gray-600);
  line-height: var(--leading-tight);
  display: flex;
  flex-direction: column;
  text-align: center;
  margin: 0;
}

.challenge__title-regular {
  font-weight: var(--weight-regular);
}

.challenge__title-bold {
  font-weight: var(--weight-bold);
}

.challenge__description {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  max-width: 1100px;
  margin: 0;
}

.challenge__cards {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: var(--space-10);
  width: 100%;
  max-width: 1200px;
}

.challenge__card {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(243, 122, 70, 0.20);
  background: linear-gradient(180deg, #fff5f0 0%, #ffe8dd 100%);
}

.challenge__card--secondary {
  border-color: rgba(106, 105, 105, 0.20);
  background: linear-gradient(180deg, #f5f5f5 0%, #e8e8e8 100%);
}

.challenge__card-icon-wrapper {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #f47b47;
  flex-shrink: 0;
}

.challenge__card-icon-wrapper--gray {
  background: var(--color-gray-600);
}

.challenge__card-icon {
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.challenge__card-header {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
}

.challenge__card-label {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-600);
}

.challenge__card-title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-gray-800);
  margin: 0;
}

.challenge__card-text {
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-700);
  line-height: var(--leading-normal);
  margin: 0;
}

.challenge__arrow {
  width: 55px;
  height: auto;
  flex-shrink: 0;
  align-self: center;
}

/* =============================================
   SECCIÓN 5 — solution
============================================= */

.solution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-20);
  background: var(--color-white);
}

.solution__title {
  display: flex;
  flex-direction: column;
  gap: var(--space-1);
  align-items: center;
  width: 100%;
  text-align: center;
}

.solution__title-line {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--color-gray-800);
  font-size: var(--text-2xl);
  text-align: center;
  margin: 0;
}

.solution__title-accent {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  font-size: var(--text-2xl);
  text-align: center;
  margin: 0;
}

.solution__arrow {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  padding: var(--space-3);
  border-radius: var(--radius-full);
  background: linear-gradient(180deg, #f47b47 0%, #e56a37 100%);
}

.solution__arrow-icon {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
}

/* =============================================
   SECCIÓN 6 — features (Software)
============================================= */

.features {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-20);
  background-color: #f5f5f5;
  overflow: hidden;
}

.features__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
  text-align: center;
}

.features__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  color: var(--color-gray-600);
  font-size: var(--text-4xl);
  text-align: center;
  margin: 0;
}

.features__description {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  color: var(--color-gray-600);
  font-size: var(--text-lg);
  text-align: center;
  margin: 0;
}

.features__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-10);
  width: 100%;
  max-width: 1300px;
}

.features__grid {
  display: grid;
  grid-template-columns: repeat(2, 320px);
  gap: var(--space-6);
  flex-shrink: 0;
}

.feature-card {
  width: 320px;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-5);
  background-color: var(--color-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
}

.feature-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.feature-card__icon-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: var(--space-3);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.feature-card__icon-wrapper--primary {
  background-color: rgba(244, 123, 71, 0.10);
}

.feature-card__icon-wrapper--gray {
  background-color: rgba(120, 120, 120, 0.10);
}



.feature-card__title {
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  color: var(--color-gray-500);
  font-size: var(--text-base);
  margin: 0;
}

.feature-card__text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  color: var(--color-gray-400);
  font-size: var(--text-sm);
  margin: 0;
}

.features__media {
  width: 651px;

  height: auto;
  object-fit: contain;
  border-radius: var(--radius-lg);
  flex-shrink: 1;
}

/* =============================================
   SECCIÓN 7 — devices
============================================= */

.devices {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-20);
  position: relative;
  overflow: hidden;
}

.devices__decorations {
  position: absolute;
  top: 27px;
  left: -163px;
  width: 1526px;
  height: 1189px;
  pointer-events: none;
  z-index: 0;
}

.devices__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
  max-width: 1100px;
  text-align: center;
  z-index: 1;
}

.devices__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  color: var(--color-gray-600);
  font-size: var(--text-4xl);
  margin: 0;
}

.devices__description {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  color: var(--color-gray-600);
  font-size: var(--text-lg);
  margin: 0;
}

.devices__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6) var(--space-10);
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  z-index: 1;
}

.device-card {
  display: flex;
  flex-direction: column;
  background: transparent;
  width: 346.6px;
  height: 246px;
}

.device-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.device-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  padding: var(--space-5);
  background-color: rgba(255, 255, 255, 0.05);
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  border: 1px solid rgba(0, 0, 0, 0.10);
}

.device-card__title {
  font-family: var(--font-body);
  font-weight: var(--weight-bold);
  color: var(--color-gray-600);
  font-size: var(--text-base);
  text-align: center;
  margin: 0;
}

.device-card__text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  color: var(--color-gray-600);
  font-size: var(--text-sm);
  text-align: center;
  margin: 0;
}

.devices__note {
  max-width: 1100px;
  text-align: center;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(106, 106, 106, 0.70);
  z-index: 1;
  margin: 0;
}

.devices__cta {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  max-width: 1100px;
  text-align: center;
  z-index: 1;
}

.devices__cta-title {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  font-size: var(--text-2xl);
  margin: 0;
}

.devices__cta-text {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  color: var(--color-gray-800);
  font-size: var(--text-2xl);
  margin: 0;
}

/* =============================================
   SECCIÓN 8 — cta-banner
============================================= */

.cta-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-20);
  padding: var(--space-20);
  background: linear-gradient(0deg, #d96c3d 0%, #d2602e 100%);
}

.cta-banner__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--space-6);
  flex: 1;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  color: var(--color-white);
  font-size: var(--text-2xl);
  line-height: var(--leading-normal);
  margin: 0;
}

.cta-banner__title-bold {
  font-weight: var(--weight-bold);
}

.cta-banner__description {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  color: rgba(255, 254, 254, 0.90);
  font-size: var(--text-lg);
  margin: 0;
}

/* =============================================
   SECCIÓN 9 — benefits
============================================= */

.benefits {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-14);
  padding: var(--space-20);
}

.benefits__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 1200px;
  text-align: center;
}

.benefits__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  color: var(--color-gray-600);
  font-size: var(--text-4xl);
  text-align: center;
  line-height: var(--leading-tight);
  margin: 0;
}

.benefits__title-regular {
  color: var(--color-gray-600);
}

.benefits__title-bold {
  font-weight: var(--weight-bold);
}

.benefits__description {
  font-family: var(--font-heading);
  font-weight: var(--weight-regular);
  color: var(--color-gray-600);
  font-size: var(--text-lg);
  text-align: center;
  max-width: 1000px;
  margin: 0;
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-6);
  width: 100%;
  max-width: 1100px;
}

.benefit-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
  padding: var(--space-8);
  background-color: #f8f8f8;
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-200);
}

.benefit-card__icon-wrapper {
  display: flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  background-color: #f37c48;
  border-radius: 50%;
  flex-shrink: 0;
}

.benefit-card__icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-card__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.benefit-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.benefit-card__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  color: var(--color-gray-800);
  font-size: var(--text-lg);
  margin: 0;
}

.benefit-card__text {
  font-family: var(--font-body);
  font-weight: var(--weight-regular);
  color: var(--color-gray-600);
  font-size: var(--text-base);
  margin: 0;
  line-height: var(--leading-normal);
}

.benefits__footer {
  text-align: center;
}

.benefits__footer-text {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  line-height: var(--leading-relaxed);
  margin: 0;
}

.benefits__footer-regular {
  color: var(--color-gray-800);
}

.benefits__footer-accent {
  color: var(--color-primary);
  font-weight: var(--weight-bold);
}

/* =============================================
   SECCIÓN 10 — stats
============================================= */

.stats {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-16);
  padding: var(--space-20);
  background: linear-gradient(283deg, #777 0%, #9a9a9a 50%, #606060 100%);
}

.stats__bg-blur {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 618px;
  height: 618px;
  transform: translate(-50%, -50%);
  background-color: #7a1206;
  border-radius: var(--radius-full);
  filter: blur(150px);
  opacity: 0.20;
  pointer-events: none;
}

.stats__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
  max-width: 1100px;
  text-align: center;
}

.stats__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-white);
  margin: 0;
  line-height: var(--leading-tight);
}

.stats__title-bold {
  font-weight: var(--weight-bold);
}

.stats__title-regular {
  font-weight: var(--weight-regular);
}

.stats__description {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: rgba(255, 254, 254, 0.80);
  margin: 0;
}

.stats__grid {
  width: 100%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
}

.stat-card {
  width: 262px;
  height: 265px;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  padding: var(--space-8) var(--space-6) var(--space-6);
  background-color: rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 254, 254, 0.20);
}



.stat-card__icon-wrapper {
  display: flex;
  width: 56px;
  height: 56px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  background-color: var(--color-gray-600);
}

.stat-card__icon-wrapper--orange {
  background-color: var(--color-primary);
}

.stat-card__icon-wrapper--maroon {
  background-color: #7a1206;
}

.stat-card__icon-wrapper--gray {
  background-color: var(--color-gray-600);
}

.stat-card__icon-wrapper--blue {
  background-color: var(--color-secondary);
}

.stat-card__icon {
  width: 28px;
  height: 28px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stat-card__content {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.stat-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-white);
  margin: 0;
}

.stat-card__title {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  color: var(--color-white);
  margin: 0;
}

.stat-card__description {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 254, 254, 0.80);
  margin: 0;
}

/* =============================================
   SECCIÓN 11 — partners
============================================= */

.partners {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-20) 0;
  background: var(--color-white);
  overflow: hidden;
}

.partners__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  max-width: 1200px;
  text-align: center;
  padding: 0 var(--space-6);
}

.partners__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-gray-600);
  line-height: var(--leading-tight);
  margin: 0;
}

.partners__title-bold {
  font-weight: var(--weight-bold);
}

.partners__title-regular {
  font-weight: var(--weight-regular);
}

.partners__description {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: var(--color-gray-600);
  max-width: 1100px;
  margin: 0;
}

.partners__carousel {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.partners__track {
  display: flex;
  gap: var(--space-8);
  width: max-content;
  animation: partnersScroll 35s linear infinite;
}

.partners__carousel:hover .partners__track {
  animation-play-state: paused;
}

.partner-logo {
  flex: 0 0 auto;
  width: 160px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.partner-logo:hover {
  transform: translateY(-4px);
}

.partner-logo img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.70;
  transition: opacity var(--transition-fast);
}

.partner-logo:hover img {
  opacity: 1;
}

.partner-logo__name {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-gray-500);
  text-align: center;
  padding: 0 var(--space-3);
}

@keyframes partnersScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   SECCIÓN 12 — faq
============================================= */

.faq {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-10);
  padding: var(--space-20);
  background: linear-gradient(180deg,
      rgba(231, 231, 231, 1) 0%,
      rgba(255, 255, 255, 0) 10%,
      rgba(255, 255, 255, 0) 90%,
      rgba(231, 231, 231, 1) 100%);
}

.faq__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
}

.faq__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  text-align: center;
  color: var(--color-gray-600);
  margin: 0;
}

.faq__title-regular {
  font-weight: var(--weight-regular);
}

.faq__title-bold {
  font-weight: var(--weight-bold);
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  width: 100%;
  max-width: 1200px;
  margin: 0;
  padding: 0;
}

.faq__item {
  background: var(--color-white);
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  cursor: pointer;
  transition: box-shadow var(--transition-fast);
}

.faq__item:hover {
  box-shadow: var(--shadow-sm);
}

.faq__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
}

.faq__question {
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-lg);
  color: var(--color-gray-800);
  margin: 0;
}

.faq__toggle {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: var(--space-1);
}

.faq__toggle-icon {
  transition: transform var(--transition-fast);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--color-gray-600);
  line-height: var(--leading-relaxed);
  transition: max-height 0.35s ease, opacity 0.35s ease, margin-top 0.35s ease;
}

.faq__item--active .faq__answer {
  max-height: 300px;
  opacity: 1;
  margin-top: var(--space-4);
}

.faq__item--active .faq__toggle-icon {
  transform: rotate(180deg);
}

/* =============================================
   SECCIÓN 13 — contact
============================================= */

.contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-12);
  padding: var(--space-20);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #787878 0%, #3d3d3d 100%);
}

.contact__bg-blur {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.contact__bg-blob--1,
.contact__bg-blob--2 {
  position: absolute;
  border-radius: var(--radius-full);
  filter: blur(80px);
  opacity: 0.15;
}

.contact__bg-blob--1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -100px;
  right: -100px;
}

.contact__bg-blob--2 {
  width: 300px;
  height: 300px;
  background: var(--color-secondary);
  bottom: -50px;
  left: -50px;
}

.contact__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  width: 100%;
  z-index: 1;
}

.contact__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  color: var(--color-white);
  text-align: center;
  margin: 0;
}

.contact__title-bold {
  font-weight: var(--weight-bold);
}

.contact__title-regular {
  font-weight: var(--weight-regular);
}

.contact__description {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  color: rgba(255, 254, 254, 0.80);
  text-align: center;
  margin: 0;
}

.contact__cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-4);
  width: 100%;
  z-index: 1;
}

.contact__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-6);
  padding: var(--space-6) var(--space-8);
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-gray-300);
}

.contact__card-role {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  text-align: center;
  margin: 0;
}

.contact__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-4);
  padding: var(--space-3) var(--space-5);
  background: var(--color-primary);
  border-radius: var(--radius-sm);
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  cursor: pointer;
  transition: transform var(--transition-fast), opacity var(--transition-fast);
}

.contact__button:hover {
  transform: translateY(-1px);
  opacity: 0.95;
}

.contact__button:focus-visible {
  outline: 2px solid var(--color-white);
  outline-offset: 2px;
}

.contact__whatsapp {
  width: 18px;
  height: 18px;
}

.contact__phone {
  font-family: var(--font-body);
  font-size: var(--text-xl);
  font-weight: var(--weight-semibold);
  color: var(--color-white);
  white-space: nowrap;
}

.contact__note {
  width: 100%;
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255, 254, 254, 0.20);
  z-index: 1;
}

.contact__note-text {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: rgba(255, 254, 254, 0.60);
  text-align: center;
  margin: 0;
}

/* =============================================
   SECCIÓN 14 — footer
============================================= */

.footer {
  display: flex;
  flex-direction: column;
  gap: var(--space-12);
  padding: var(--space-20) var(--space-20) var(--space-3);
  position: relative;
  background: var(--color-gray-800);
  overflow: hidden;
}

.footer__bg-pattern {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: auto;
  opacity: 0.15;
  pointer-events: none;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-8);
  width: 100%;
  position: relative;
  z-index: 2;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: var(--space-2);
}

.footer__logo {
  width: 200px;
  height: auto;
}

.footer__tagline {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: #99a1ae;
  letter-spacing: -0.15px;
  line-height: 22px;
  margin: 0;
}

.footer__column,
.footer__contact-column {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  font-style: normal;
}

.footer__column-title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: var(--weight-bold);
  color: var(--color-white);
  margin: 0;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: #99a1ae;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-white);
}

.footer__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.footer__contact-icon,
.footer__location-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-4) 0;
  border-top: 1px solid #354152;
  width: 100%;
  position: relative;
  z-index: 2;
}

.footer__copyright {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: #99a1ae;
  margin: 0;
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}

.footer__legal-link {
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: #99a1ae;
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer__legal-link:hover {
  color: var(--color-white);
}

.footer__social {
  width: 16px;
  height: 16px;
}

/* =============================================================
   RESPONSIVE — Media Queries
   Breakpoints: 1024px (tablet), 768px (mobile)
   ============================================================= */

/* =============================================
   TABLET  ≤ 1024px
============================================= */
@media (max-width: 1024px) {

  .header {
    padding: var(--space-3) var(--space-4) 0;
  }

  .header__container {
    padding: var(--space-3) var(--space-6);
  }

  .nav__list {
    gap: var(--space-5);
  }

  .nav__item--hide-tablet {
    display: none;
  }

  .hero {
    padding: var(--space-10)
  }

  .hero__wrapper {
    flex-direction: row;
    gap: 0;
    align-items: center;
  }

  .hero__media {
    flex: 0 1 auto;
    order: 1;
    min-width: 0;
  }

  .hero__content {
    flex: 1;
    order: 2;
    min-width: 420px;
  }

  .hero__image {
    width: 345px;
  }

  .hero__title {
    font-size: 28px;
    width: 100%;
  }

  .hero__title-highlight {
    font-size: 26px;
  }

  .hero__description {
    font-size: var(--text-xl);
    width: 100%;
  }

  .hero__title-line {
    font-size: var(--text-xl);
    white-space: nowrap;
  }

  .about {
    padding: var(--space-10);
  }

  .about__title {
    font-size: 42px;

  }

  .about__description {
    font-size: 18px
  }

  .badge__text,
  .badge__text--primary,
  .badge__text--market,
  .badge__text--secondary,
  .badge__text--gray,
  .badge__text--green,
  .badge__text--white,
  .badge__text--orange {
    font-size: 14px;
    font-weight: 700;
  }

  .market {
    padding: var(--space-10);
  }

  .market__title {
    font-size: 42px;
  }

  .market__description {
    font-size: 18px;
  }

  .solution__title-line {
    font-size: 24px;
  }

  .solution__title-accent {
    font-size: 24px;
  }

  .badge__text--gray {
    font-size: 14px;
  }

  .market__arrows {
    top: 0;
    margin-top: 21.875%;
  }

  .market__slide-text {
    font-size: 14px;
  }

  .market__slide-title {
    font-size: 18px;
  }

  .challenge {
    padding: var(--space-10);
  }

  .challenge__card-label {
    font-size: 14px;
  }

  .challenge__card-text {
    font-size: 14px;
  }

  .challenge__card-title {
    font-size: 21px;
  }

  .challenge__title {
    font-size: 42px;
  }

  .challenge__description {
    font-size: 18px;
  }

  .solution {
    padding: var(--space-10);
  }

  .features {
    padding: var(--space-10);
  }

  .features__title {
    font-size: 42px
  }

  .features__description {
    font-size: 18px;
  }

  .features__content {
    flex-direction: column;
    gap: 10px;

  }

  img.features__media {
    margin-bottom: 0;
  }

  .features__grid {
    width: 100%;
    order: 2;
    grid-template-columns: repeat(2, 1fr);
  }

  .features__media {
    width: 100%;
    max-width: 640px;
    order: 1;
  }

  .feature-card {
    width: 100%;
  }

  .feature-card__title {
    font-size: 14px;
  }

  .feature-card__text {
    font-size: 13px;
  }

  .devices {
    padding: var(--space-10);
  }

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

  .devices__title {
    font-size: 42px;
  }

  .devices__description {
    font-size: 18px;
  }

  .device-card {
    width: 344px;
  }

  .devices__grid {
    gap: var(--space-6) var(--space-8);
  }

  .device-card__title {
    font-size: 14px;
  }

  .device-card__text {
    font-size: 13px;
  }

  .devices__note {
    font-size: 13px;
  }

  .devices__cta-title {
    font-size: 24px;
  }

  .devices__cta-text {
    font-size: 24px;
  }

  .cta-banner {
    padding: var(--space-10);
    gap: var(--space-10);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .cta-banner__title {
    font-size: 24px;
    text-align: center;
    width: 100%;
  }

  .cta-banner__description {
    font-size: 18px;
    text-align: center;
  }

  .btn--white {
    font-size: 16px;
  }

  .benefits {
    padding: var(--space-10);
  }

  .benefits__title {
    font-size: var(--text-3xl);
  }

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

  .benefit-card {
    flex-direction: column;
  }

  .benefit-card__title {
    font-size: 18px;
  }

  .benefit-card__text {
    font-size: 14px;
  }

  .benefits__footer-text {
    font-size: 21px;
  }

  .benefits__title-regular {
    font-size: 42px;
  }

  .benefits__title-bold {
    font-size: 42px;
  }

  .benefits__description {
    font-size: 18px;
  }

  .stats {
    padding: var(--space-10);
  }

  .stats__title {
    font-size: var(--text-3xl);
  }

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

  .stats__title {
    font-size: 42px;
  }

  .stats__title-regular {
    font-size: 42px;
    font-weight: var(--weight-bold);
  }

  .stats__description {
    font-size: 18px;
  }

  .stat-card {
    width: 100%;
    height: 185px;
    flex-direction: row;
    align-items: flex-start;
  }

  .stat-card__number {
    font-size: 42px;
  }

  .stat-card__title {
    font-size: 18px;
  }

  .stat-card__text {
    font-size: 13px;
  }

  .partners__title {
    font-size: 42px;
  }

  .partners__description {
    font-size: 18px;
  }

  .partners {
    padding: var(--space-10) 0;
  }

  .partner-logo {
    width: 160px;
    height: 80px;
  }

  .faq {
    padding: var(--space-10);
  }

  .faq__question {
    font-size: 18px;
  }

  .faq__item--active .faq__answer {
    font-size: 14px;
  }

  .faq__title {
    font-size: 42px;
  }

  .faq__title-break {
    display: block;
  }

  .contact {
    padding: var(--space-10);
  }

  .contact__note-text {
    font-size: 13px;
  }

  .contact__title {
    font-size: 42px;
  }

  .contact__description {
    font-size: 18px;
  }

  .contact__card {
    width: 311px;
    height: 138px;
    padding: var(--space-6) var(--space-6) var(--space-5);
  }

  .contact__button {
    width: 247px;
    height: 40px;
  }

  .contact__card-role {
    font-size: 21px;
  }

  .footer {
    padding: var(--space-10);
  }

  .footer__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-10) var(--space-4);
  }

  .footer__brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
    margin-bottom: var(--space-4);
  }

  .footer__tagline {
    font-size: 14px;
  }

  .footer__column-title {
    font-size: 18px;
  }

  .footer__link {
    font-size: 13px;
  }
}

/* =============================================
   MOBILE  ≤ 768px
============================================= */
@media (max-width: 768px) {

  .header {
    padding: var(--space-4);
  }

  .header__container {
    border-radius: var(--radius-lg);
    padding: var(--space-3) var(--space-4);
  }

  .nav {
    display: none;
  }

  .header__logo-icon {
    width: 32px;
    height: 32px;
  }

  .header__logo-text {
    height: 20px;
  }

  .btn--login {
    font-size: var(--text-sm);
    padding: var(--space-2) var(--space-4);
  }

  .badge__text,
  .badge__text--primary,
  .badge__text--market,
  .badge__text--secondary,
  .badge__text--gray,
  .badge__text--green,
  .badge__text--white,
  .badge__text--orange {
    font-size: 14px;
    font-weight: 700;
  }

  .badge__text {
    white-space: normal;
    text-align: center;

  }

  .hero {
    padding: var(--space-8) var(--space-5);
  }

  .hero__wrapper {
    flex-direction: column;
    gap: var(--space-8);
  }

  .hero__content {
    order: 1;
    align-items: center;
    text-align: center;
    min-width: 0;
    margin-left: 0;
  }

  .hero__media {
    order: 2;
    min-width: 0;
    width: 100%;
  }

  .hero__title-line {
    white-space: normal;
    font-size: var(--text-md);
  }

  .hero__title {
    font-size: 22px;
    line-height: 1.3;
  }

  .hero__title-highlight {
    font-size: var(--text-md);
  }

  .hero__description {
    font-size: var(--text-md);
    line-height: 1.4;
  }

  .hero__image {
    max-width: 420px;
  }

  .about {
    padding: var(--space-10) var(--space-5);
  }

  .about__inner {
    gap: var(--space-8);
  }

  .about__title {
    font-size: 36px;
  }

  .market {
    padding: var(--space-10) var(--space-5);
  }

  .market__title {
    font-size: 36px;
  }

  .market__title--bold {
    display: block;
  }

  .market__description {
    font-size: var(--text-base);
  }

  .market__slide-content {
    align-items: flex-start;
  }

  .market__slide-title {
    font-size: 16px;
    white-space: normal;
  }

  .market__slide-text {
    font-size: 14px;
  }

  .market__arrow-btn {
    width: 40px;
    height: 40px;
  }

  .market__arrows {
    left: 0;
    right: 0;
  }

  .challenge {
    padding: var(--space-10) var(--space-5);
  }

  .challenge__title {
    font-size: 36px;
  }

  .challenge__card-label {
    font-size: 14px;
  }

  .challenge__card-title {
    font-size: 18px;
  }

  .challenge__card-text {
    font-size: 14px;
  }

  .challenge__description {
    font-size: var(--text-base);
  }

  .challenge__cards {
    flex-direction: column;
    gap: var(--space-4);
  }

  .challenge__arrow {
    content: url("/assets/challenge-arrow-mobile.svg");
    width: 23px;
    transform: none;
  }

  .solution {
    padding: var(--space-10) var(--space-5);
  }

  .solution__title-line,
  .solution__title-accent {
    font-size: var(--text-xl);
  }

  .features {
    padding: var(--space-10) var(--space-5);
  }

  .features__title {
    font-size: 36px;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .features__media {
    display: flex;
    margin-bottom: var(--space-6);
  }

  .features__description {
    font-size: 16px;
  }

  .feature-card {
    width: 100%;
    height: 251px;
  }

  .devices {
    padding: var(--space-10) var(--space-5);
  }

  .devices__title {
    font-size: 36px;
  }

  .devices__description {
    font-size: 16px;
  }

  .devices__grid {
    grid-template-columns: 1fr;
  }

  .device-card {
    width: 100%;
    height: auto;
  }

  .device-card__image {
    height: 180px;

  }

  .devices__cta-title,
  .devices__cta-text {
    font-size: var(--text-xl);
  }

  .cta-banner {
    flex-direction: column;
    gap: var(--space-8);
    padding: 30px var(--space-5);
  }

  .cta-banner__content {
    align-items: center;
    text-align: center;
  }

  .cta-banner__title {
    font-size: var(--text-xl);
  }

  .cta-banner__description {
    font-size: var(--text-base);
  }

  .benefits {
    padding: var(--space-10) var(--space-5);
  }

  .benefits__title {
    font-size: 36px;
  }

  .benefits {
    gap: 40px;
  }

  .benefits__description {
    font-size: 16px;
  }

  .benefit-card__title {
    font-size: 16px;
  }

  .benefits__grid {
    grid-template-columns: 1fr;
  }

  .benefit-card {
    padding: var(--space-6);
  }

  .benefits__footer-text {
    font-size: 18px;
  }

  .stats {
    padding: var(--space-10) var(--space-5);
    gap: var(--space-12);
  }

  .stats__title {
    font-size: 36px;
    max-width: 240px;
    margin: 0 auto;
    line-height: 1.2;
  }

  .stats__title-regular {
    font-weight: var(--weight-regular);
    font-size: 36px;
  }

  .stats__description {
    font-size: 16px;
  }

  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-4);
  }

  .stat-card {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    height: auto;
    padding: var(--space-5);

  }

  .stat-card__icon-wrapper {
    margin-bottom: var(--space-2);
  }

  .stat-card__number {
    font-size: 24px
  }

  .stat-card__title {
    font-size: 14px;
  }

  .stat-card__title,
  .stat-card__text {
    text-align: left;
  }

  .stat-card__description {
    font-size: 12px;
  }

  .partners {
    padding: var(--space-10) 0;
  }

  .partners__title {
    font-size: 36px;
  }

  .partners__description {
    font-size: 16px;
    padding: 0 var(--space-5);
  }

  .partner-logo {
    width: 140px;
    height: 70px;
  }

  .faq {
    padding: var(--space-10) var(--space-5);
  }

  .faq__title {
    font-size: 36px;
  }

  .faq__question {
    font-size: 16px;
  }

  .contact {
    padding: var(--space-10) var(--space-5);
    gap: 32px;

  }

  .contact__title {
    font-size: 36px;
  }

  .contact__description {
    font-size: var(--text-base);
  }

  .contact__card-role {
    font-size: 18px;
  }

  .contact__phone {
    font-size: 24px;
  }

  .contact__note-text {

    font-family: 13px;
  }

  .footer {
    padding: 80px 44px;

  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    row-gap: var(--space-10);
  }

  .footer__brand {
    grid-column: 1 / -1;
    align-items: center;
    text-align: center;
  }

  .footer__logo {
    width: 180px;
  }

  .footer__bottom {
    flex-direction: column;
    gap: var(--space-6);
    text-align: center;
  }

  .footer__legal {
    flex-direction: column;
    gap: var(--space-4);
  }

  .footer__column-title {
    font-size: 16px;
  }

  .footer__link {
    font-size: 13px;
  }

  .footer__copyright {
    font-size: 13px;
    width: 100%;
  }
}

/* =============================================
   SMALL MOBILE  ≤ 480px
============================================= */
@media (max-width: 480px) {

  .about__description {
    font-size: var(--text-base);
  }

  .market__slide-content {
    padding: var(--space-4);
  }

  .market__arrow-btn {
    width: 36px;
    height: 36px;
  }

  .partner-logo {
    width: 120px;
    height: 60px;
  }

  .partners__track {
    gap: var(--space-5);
  }
}

/* =============================================
   EXTRA SMALL  ≤ 375px
============================================= */
@media (max-width: 375px) {

  .market {
    padding: var(--space-12) var(--space-4);
  }

  .market__title {
    font-size: 30px;
  }

  .challenge {
    padding: var(--space-12) var(--space-4);
  }

  .challenge__title {
    font-size: 30px;
  }

  .challenge__card-title {
    font-size: var(--text-lg);
  }

  .challenge__card-text {
    font-size: 15px;
  }

  .challenge__arrow {
    width: 23px;
  }

  .features {
    padding: var(--space-12) var(--space-4);
  }
}