* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
  background: white;
  overflow-x: hidden;
}

:root {
  --content-max: 1280px;
  --top-bar-h: 50px;
  --hero-h: 915px;
  --nav-left: 50px;
  --nav-width: 600px;
}

header {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
}

.hero {
  position: relative;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  height: var(--hero-h);
  overflow: hidden;
}

.hero-bg,
.hero-foreground {
  position: absolute;
  top: var(--top-bar-h);
  left: 0;
  width: 100%;
  height: calc(var(--hero-h) - var(--top-bar-h));
  transform: none;
  object-fit:fill;
  object-position: top center;
}

.hero-bg {
  z-index: 1;
  background-color: #0280ca;
}

.hero-foreground {
  z-index: 1000;
}

.top-bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--top-bar-h);
  z-index: 10;
  background: linear-gradient(to right, #03CBFF, #0280CA);
}

.top-bar-inner {
  width: 100%;
  max-width: var(--content-max);
  height: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}

.top-bar-elements {
  display: flex;
  color: white;
}
.top-bar-elements > img {
  width: 18px;
  height: 18px;
  margin-right: 10px;
}

nav ul {
  position: absolute;
  z-index: 1002;
  top: calc(var(--top-bar-h) + 38px);
  left: var(--nav-left);
  transform: none;
  display: flex;
  width: var(--nav-width);
  justify-content: space-around;
  gap: 0;
  list-style: none;
}
nav li {
  margin-right: 0;
}
nav a {
  text-decoration: none;
  font-size: 18px;
  color: white;
}

.nav-toggle {
  display: none;
}

.linea-puntada {
  position: absolute;
  inset: 0;
  width: 115%;
  height: 100%;
  object-fit: fill;
  object-position: center;
  z-index: 999;
  pointer-events: none;
}

.hero-containt {
  position: absolute;
  top: calc(var(--top-bar-h) + 96px);
  bottom: 30px;
  left: var(--nav-left);
  width: var(--nav-width);
  z-index: 1002;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.hero-logo {
  width: 341px;
  height: auto;
}

.hero-containt h1 {
  font-size: 36px;
  line-height: 1.1;
  font-weight: 600;
}

.hero-containt > p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
}

.hero-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-list li p {
  font-size: 18px;
  font-weight: 400;
}

.hero-icon-wrap {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  background-color: #3FCBFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-icon-wrap img {
  width: 15px;
  height: 15px;
}

.hero-actions {
  display: flex;
  gap: 18px;
}

.hero-btn {
  width: 300px;
  flex: 0 0 300px;
  min-height: 54px;
  padding: 0 24px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 17px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hero-btn-primary {
  background-color: #3FCBFF;
  color: #fff;
}

.hero-btn-secondary {
  background-color: #fff;
  color: #0280ca;
}

.hero-btn-secondary span {
  margin-left: 14px;
}

.backoffice-section {
  background-color: white;
  padding: 84px 0 76px;
}

.backoffice-container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0px 66px 0px 100px;
}

.backoffice-grid {
  display: flex;
  gap: 52px;
  align-items: start;
}

.dashboard-card {
  position: relative;
  flex: 0 0 470px;
  background-color: #E8F6FC;
  border-radius: 16px;
  padding: 36px 25px;
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.14);
}

.dashboard-card::after {
  content: "";
  position: absolute;
  top: 35px;
  right: 34px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #27b9f3;
}

.dashboard-card h3 {
  font-size: 28px;
  font-weight: 600;
  color: #101521;
  margin-bottom: 14px;
}

.dashboard-kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
}

.kpi-box {
  flex: 1 1 calc(50% - 5px);
  background-color: #f7fbff;
  border-radius: 10px;
  padding: 20px 15px;
  margin-bottom: 5px;
}

.kpi-title {
  font-size: 12px;
  font-weight: 400;
  color: #6f7e91;
  margin-bottom: 0;
}

.kpi-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.kpi-value {
  font-size: 24px;
  font-weight: 400;
  color: #182333;
}

.kpi-icon-wrap {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #2f80c0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kpi-icon-wrap-volumen{
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #3FCBFF;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kpi-icon-wrap-activas{
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #296D8E;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.kpi-icon-wrap-tasa{
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: #669DAA;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kpi-icon-wrap img {
  width: 14px;
  height: 14px;
}

.chart-card {
  background-color: #f7fbff;
  border-radius: 12px;
  padding: 15px 15px 10px 15px;
  margin-bottom: 30px;
}

.chart-title {
  font-size: 14px;
  font-weight: 400;
  margin-bottom: 10px;
}

.chart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.chart-head .chart-title {
  margin-bottom: 10px;
}

.chart-period {
  font-size: 12px;
  font-weight: 400;
  color: #757575;
  margin-bottom: 10px;
}

.bar-chart {
  height: 135px;
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  align-items: end;
  gap: 8px;
}

.bar-chart span {
  flex: 1;
  border-radius: 8px 8px 0 0;
  background: #0280CA;
}

.bar-chart span:nth-child(1) { height: 83.19px; }
.bar-chart span:nth-child(2) { height: 99.83px; }
.bar-chart span:nth-child(3) { height: 108.8px; }
.bar-chart span:nth-child(4) { height: 92.16px; }
.bar-chart span:nth-child(5) { height: 115.19px; }
.bar-chart span:nth-child(6) { height: 112.63px; }
.bar-chart span:nth-child(7) { height: 121.59px; }

.bar-days {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  text-align: center;
  margin-top: 12px;
  gap: 8px;
}

.bar-days span {
  font-size: 12px;
  color: #8592a3;
}

.line-card {
  margin-bottom: 14px;
  padding: 15px;
  border-radius: 10px;
}

.trend-rate {
  font-size: 14px;
  font-weight: 400;
  color: #03CBFF;
  margin-bottom: 10px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.trend-rate img {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.line-chart-img {
  display: block;
  width: 100%;
  height: 78px;
  object-fit: fill;
  object-position: left center;
}

.sync-note {
  margin-top: 30px;
  background-color: #f7fbff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 12px;
  color: #7f91a7;
  padding: 15px 10px;
}

.sync-note::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #27b9f3;
  flex-shrink: 0;
}

.backoffice-copy {
  flex: 1 1 auto;
  min-width: 0;
  margin-top: 100px;
  padding-left: 55px;
}

.backoffice-copy h2 {
  max-width: 520px;
  font-size: 36px;
  line-height: 1.12;
  font-weight: 600;
  color: #0f1622;
  margin-bottom: 56px;
}

.copy-intro {
  max-width: 480px;
  color: #7b8795;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 52px;
}

.benefit-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.benefit-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: #2f80c0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.benefit-icon img {
  width: 22px;
  height: 22px;
}

.benefit-list h4 {
  font-size: 18px;
  font-weight: 600;
  color: #0f1622;
  margin-bottom: 8px;
}

.benefit-list p {
  font-size: 14px;
  font-weight: 400;
  color: #75808f;
  line-height: 1.5;
  max-width: 460px;
}

.backoffice-callout {
  margin: 52px auto 0;
  width: calc(98% - 120px);
  background-color: #2380CA;
  border-radius: 20px;
  padding: 40px 48px;
  text-align: center;
}

.backoffice-callout h3 {
  color: #fff;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 700;
  margin-bottom: 18px;
  padding: 0px 100px;
}

.backoffice-callout p {
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  max-width: 1280px;
  margin: 0 auto;
}

/* =========================================================
   INICIO NUEVA SECCION (HARDWARE / TPVS)
   Desde aqui empieza el nuevo bloque de la landing
   ========================================================= */

.hardware-section {
  background: #FAFCFE;
  padding: 72px 0 84px;
}

.hardware-container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 46px;
  margin-top: -70px;
}

.hardware-highlights {
  display: flex;
  gap: 16px;
  align-items: stretch;
  margin-bottom: 62px;
}

.hardware-highlight-main {
  flex: 1 1 56%;
  background: #fff;
  border-radius: 24px;
  border: 1px solid #e8edf3;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
  padding: 34px;
  margin-right: 10px;
}

.hardware-main-icon {
  width: 99px;
  height: 99px;
  border-radius: 14px;
  background: #DFF9FF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 74px;
}

.hardware-main-icon img {
  width: 51px;
  height: 51px;
}

.hardware-highlight-main h3 {
  max-width: 450px;
  font-size: 30px;
  line-height: 1.14;
  font-weight: 400;
  color: #1b1f26;
  margin-bottom: 20px;
}

.hardware-highlight-main p {
  max-width: 560px;
  color: #6d7786;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
}

.hardware-highlight-side {
  flex: 1 1 44%;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hardware-kpi-card {
  flex: 1 1 calc(50% - 6px);
  min-height: 156px;
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 3px 5px rgba(0, 0, 0, 0.2);
  padding: 28px 28px 35px 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin-bottom: 1px;
}

.hardware-kpi-icon {
  width: 48px;
  height: 48px;
  border-radius: 15px;
  background: #DFF9FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hardware-kpi-icon img {
  width: 25px;
  height: 25px;
}

.hardware-kpi-card h4 {
  color: #0584d4;
  font-size: 30px;
  line-height: 1.1;
  font-weight: 500;
  margin-top: -3px;
}

.hardware-kpi-card p {
  color: #8c96a4;
  font-size: 14px;
  line-height: 1.35;
  margin-top: -35px;
}

.hardware-kpi-card-active {
  background: linear-gradient(140deg, #1b80d1, #3BC1F8 );
  border-color: transparent;
}

.hardware-kpi-card-active .hardware-kpi-icon {
  background: rgba(255, 255, 255, 0.16);
}
.hardware-kpi-card-active h4,
.hardware-kpi-card-active p {
  color: #fff;
}

.hardware-intro {
  text-align: center;
  margin: 0 auto 70px;
  margin-top: 100px;
}

.hardware-intro > .hardware-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background: #DCF7FE;
  color: #2380CA;
  font-size: 16px;
  font-weight: 400;
  padding: 14px 18px;
  margin-bottom: 24px;
}

.hardware-chip img {
  width: 20px;
  height: 20px;
}

.hardware-intro h2 {
  font-size: 40px;
  line-height: 1.15;
  font-weight: 600;
  margin-top: 30px;
  margin-bottom: 50px;
}

.hardware-intro > p {
  max-width: 920px;
  margin: 0 auto;
  color: #8a929e;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 100px;
}

.hardware-content {
  display: flex;
  align-items: center;
  gap: 42px;
  padding: 0px 90px 0px 90px;
  margin-bottom: 68px;
}

.hardware-copy {
  flex: 1 1 54%;
}

.hardware-copy h3 {
  color: #161b22;
  font-size: 38px;
  line-height: 1.15;
  font-weight: 600;
  max-width: 540px;
  margin-bottom: 22px;
}

.hardware-copy > p {
  max-width: 460px;
  color: #7a8492;
  font-size: 19px;
  line-height: 1.7;
  margin-bottom: 30px;
}

.hardware-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hardware-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hardware-list-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #1f89d7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hardware-list-icon img {
  width: 19px;
  height: 19px;
}

.hardware-list h4 {
  color: #1b1f26;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 4px;
}

.hardware-list p {
  color: #7b8593;
  font-size: 14px;
  line-height: 1.45;
}

.hardware-image-wrap {
  flex: 1 1 50%;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.14);
  margin-top: 70px;
}

.hardware-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hardware-brands h3 {
  text-align: center;
  color: #161b22;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  margin-bottom: 35px;
}

.hardware-brand-grid {
  display: flex;
  justify-content: center;
  gap: 14px;
}

.hardware-brand-card {
  flex: 0 0 226px;
  width: 226px;
  height: 234px;
  background: #fff;
  border: 1px solid #e4e9f0;
  border-radius: 14px;
  padding: 44px 16px 12px;
  margin-right: 20px;
}

.hardware-brand-card h4 {
  text-align: center;
  color: #0584d4;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0.03em;
  margin: 0 0 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid #e4e9f0;
}

.hardware-brand-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: fit-content;
  margin: 0 auto;
  padding: 0;
}

.hardware-brand-card li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #7c8796;
  font-size: 14px;
  line-height: 1.35;
}

.hardware-brand-card li img {
  width: 16px;
  height: 16px;
}

@media (max-width: 1200px) {
  .hardware-highlights,
  .hardware-content,
  .hardware-brand-grid {
    flex-wrap: wrap;
  }

  .hardware-highlight-main,
  .hardware-highlight-side,
  .hardware-copy,
  .hardware-image-wrap,
  .hardware-brand-card {
    flex: 1 1 100%;
  }

  .hardware-kpi-card {
    flex: 1 1 calc(50% - 6px);
  }
}

@media (max-width: 768px) {
  .hardware-intro h2 {
    font-size: 36px;
  }

  .hardware-copy h3 {
    font-size: 38px;
  }

  .hardware-brands h3 {
    font-size: 32px;
  }

  .hardware-kpi-card {
    flex: 1 1 100%;
  }
}

/* =========================================================
   FIN NUEVA SECCION (HARDWARE / TPVS)
   ========================================================= */

/* =========================================================
   INICIO NUEVA SECCION (CTA AZUL)
   ========================================================= */

.cta-blue-section {
  background: #2f84c6;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 88px 0 82px;
}

.cta-blue-container {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 34px;
  text-align: center;
  color: #fff;
}

.cta-blue-container h2 {
  max-width: 650px;
  margin: 0 auto 24px;
  font-size: 36px;
  line-height: 1.18;
  font-weight: 600;
}

.cta-blue-subtitle {
  max-width: 750px;
  margin: 0 auto;
  color: #dff0ff;
  font-size: 18px;
  line-height: 1.5;
  font-weight: 300;
}

.cta-blue-actions {
  margin: 36px auto 18px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-blue-btn {
  width: 300px;
  min-height: 62px;
  padding: 0 24px;
  background: #fff;
  color: #0f79c8;
  border-radius: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
}

.cta-blue-btn span {
  font-size: 16px;
  line-height: 1;
}

.cta-blue-note {
  color: #c0ddf8;
  font-size: 12px;
  font-weight: 400;
  margin-bottom: 36px;
}

.cta-blue-cards {
  display: flex;
  justify-content: space-evenly;
  gap: 18px;
  margin-bottom: 48px;
  padding-left: 70px;
  padding-right: 70px;
}

.cta-blue-card {
  flex: 1 1 0;
  max-width: 226px;
  min-height: 284px;
  background: linear-gradient(180deg, #3196d7 0%, #2c8dcd 100%);
  border-radius: 14px;
  padding: 18px 16px 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-blue-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #3FCBFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.cta-blue-icon img {
  width: 28px;
  height: 28px;
}

.cta-blue-card h3 {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}

.cta-blue-card p {
  color: #D1E8F6;
  font-size: 14px;
  line-height: 1.45;
  margin-bottom: 26px;
}

.cta-blue-card a {
  margin-top: auto;
  color: #ffffff;
  font-size: 13px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cta-blue-benefits {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  padding-left: 50px;
  padding-right: 50px;
}

.cta-blue-benefits li {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.cta-blue-check {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #4bc8f2;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  line-height: 1;
}

.cta-blue-benefits p {
  max-width: 280px;
  color: #e5f3ff;
  font-size: 16px;
  line-height: 1.45;
}

.cta-blue-check img {
  width: 25px;
  height: 25px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .cta-blue-cards {
    flex-wrap: wrap;
  }

  .cta-blue-card {
    flex: 1 1 calc(50% - 9px);
    max-width: none;
  }

  .cta-blue-benefits {
    flex-wrap: nowrap;
    justify-content: center;
    gap: 16px;
    padding-left: 0;
    padding-right: 0;
  }

  .cta-blue-benefits li {
    flex: 1 1 0;
    max-width: none;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .cta-blue-container h2 {
    font-size: 36px;
  }

  .cta-blue-subtitle {
    font-size: 20px;
  }

  .cta-blue-btn {
    width: 100%;
    max-width: 360px;
    font-size: 22px;
  }

  .cta-blue-card {
    flex: 1 1 100%;
  }
}

/* =========================================================
   FIN NUEVA SECCION (CTA AZUL)
   ========================================================= */

/* =========================================================
   INICIO NUEVA SECCION (FOOTER)
   ========================================================= */

.site-footer {
  background: #050607;
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  border-top: 2px solid #118dd5;
  color: #9da4af;
  padding: 74px 0 34px;
}

.site-footer-inner {
  width: 100%;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 104px;
  margin-top: 50px;
}

.site-footer-top {
  display: flex;
  justify-content: space-between;
  gap: 56px;
  padding-bottom: 52px;
  border-bottom: 1px solid #20242a;
}

.site-footer-brand {
  max-width: 440px;
}

.site-footer-brand > img {
  width: 207px;
  height: 100px;
  margin-bottom: 20px;
}

.site-footer-brand > p {
  color: #757575;
  max-width: 330px;
  font-size: 18px;
  line-height: 1.85;
  margin-bottom: 32px;
}

.site-footer-contact {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 0;
}

.site-footer-contact li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #757575;
  font-size: 15px;
}

.site-footer-contact li img {
  width: 16px;
  height: 16px;
  filter: grayscale(1) brightness(2.4);
  opacity: 0.8;
}

.site-footer-links {
  flex: 1 1 auto;
  display: flex;
  justify-content: flex-end;
  gap: 90px;
  margin-bottom: 150px;
}

.site-footer-links h4 {
  color: #f2f6fb;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 19px;
}

.site-footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 0;
}

.site-footer-links a {
  color: #757575;
  text-decoration: none;
  font-size: 15px;
  line-height: 1.75;
}

.site-footer-links a:hover {
  color: #eef6ff;
}

.site-footer-security {
  padding: 38px 0;
  border-bottom: 1px solid #20242a;
  text-align: center;
}

.site-footer-security > p {
  color: #e7edf4;
  font-size: 16px;
  margin-bottom: 26px;
}

.site-footer-security ul {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 36px;
  padding: 0;
}

.site-footer-security li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #757575;
  font-size: 15px;
}

.site-footer-security li img {
  width: 16px;
  height: 16px;
  filter: grayscale(1) brightness(2.2);
  opacity: 0.75;
}

.site-footer-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
  padding: 50px 0;
  border-bottom: 1px solid #20242a;
}

.site-footer-social {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0;
}

.site-footer-social a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #2c3036;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer-social img {
  width: 18px;
  height: 18px;
  filter: grayscale(1) brightness(2.7);
}

.site-footer-legal {
  list-style: none;
  display: flex;
  gap: 30px;
  padding: 0;
}

.site-footer-legal a {
  color: #757575;
  text-decoration: none;
  font-size: 15px;
}

.site-footer-legal a:hover {
  color: #eef6ff;
}

.site-footer-copy {
  padding-top: 30px;
  text-align: center;
  color: #757575;
  font-size: 15px;
  line-height: 1.4;
}

.site-footer-copy span {
  margin: 0 8px;
}

@media (max-width: 1000px) {
  .site-footer-top {
    flex-wrap: wrap;
    gap: 34px;
  }

  .site-footer-links {
    width: 100%;
    justify-content: space-between;
    gap: 28px;
  }

  .site-footer-meta {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .site-footer-links {
    flex-wrap: wrap;
  }

  .site-footer-links > div {
    min-width: 160px;
  }

  .site-footer-legal {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px 22px;
  }
}

/* =========================================================
   FIN NUEVA SECCION (FOOTER)
   ========================================================= */

/* =========================================================
   RESPONSIVE GLOBAL (DESKTOP-FIRST)
   Breakpoints: 1200 / 1024 / 768 / 576 / 390
   ========================================================= */

@media (max-width: 1200px) {
  :root {
    --hero-h: 860px;
    --nav-left: 36px;
    --nav-width: 540px;
  }

  .top-bar-inner {
    padding: 0 36px;
  }

  nav a {
    font-size: 16px;
  }

  .hero-containt {
    top: calc(var(--top-bar-h) + 82px);
  }

  .hero-logo {
    width: 290px;
  }

  .hero-containt h1 {
    font-size: 32px;
  }

  .hero-containt > p {
    font-size: 16px;
  }

  .hero-list li p {
    font-size: 16px;
  }

  .hero-btn {
    width: 260px;
    flex: 0 0 260px;
    font-size: 15px;
  }

  .backoffice-container {
    padding: 0 90px;
  }

  .backoffice-grid {
    gap: 36px;
  }

  .backoffice-copy {
    margin-top: 150px;
    padding-left: 20px;
  }

  .backoffice-copy h2 {
    font-size: 32px;
    margin-bottom: 32px;
  }

  .copy-intro {
    font-size: 16px;
    margin-bottom: 36px;
  }

  .backoffice-callout {
    width: 90%;
    max-width: 100%;
    padding: 30px 28px;
  }

  .backoffice-callout h3 {
    font-size: 30px;
    padding: 0;
  }

  .backoffice-callout p {
    font-size: 16px;
  }

  .hardware-container {
    padding: 0 80px;
    margin-top: 0;
  }

  .hardware-highlights {
    flex-wrap: nowrap;
  }

  .hardware-highlight-main {
    flex: 1 1 56%;
    margin-right: 0;
  }

  .hardware-highlight-side {
    flex: 1 1 44%;
  }

  .hardware-main-icon {
    margin-bottom: 34px;
  }

  .hardware-highlight-main h3 {
    font-size: 28px;
  }

  .hardware-highlight-side article h4 {
    font-size: 20px;
    margin-bottom: 12px;
  }

  .hardware-highlight-side article p {
    font-size: 60%;
  }

  .hardware-content {
    max-width: 100%;
    padding: 0 20px;
    gap: 24px;
  }

  .hardware-copy {
    flex: 1 1 54%;
  }

  .hardware-image-wrap {
    flex: 1 1 43%;
  }

  .hardware-image-wrap > img {
    width: 100%;
  }

  .hardware-intro > p {
    font-size: 18px;
    margin-bottom: 64px;
  }

  .hardware-brand-grid {
    flex-wrap: wrap;
  }

  .hardware-brand-card {
    flex: 0 0 226px;
    margin-right: 0;
  }

  .cta-blue-container {
    padding: 0 24px;
  }

  .cta-blue-cards {
    padding-left: 0;
    padding-right: 0;
  }

  .site-footer-inner {
    padding: 0 80px;
  }

  .site-footer-links {
    gap: 50px;
    margin-bottom: 80px;
  }
}

@media (max-width: 1100px) {
  .backoffice-copy {
    margin-top: 30px;
  }
  .cta-blue-cards {
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    padding: 0 90px;
  }

  .cta-blue-card {
    flex: 0 0 226px;
    width: 226px;
    max-width: 226px;
  }
}

@media (max-width: 1000px) {
  .hero {
    background: linear-gradient(180deg, #2f84c6 0%, #2380ca 100%);
  }

  .hero-bg,
  .hero-foreground {
    display: none;
  }

  .linea-puntada {
    width: 100%;
    object-fit: cover;
  }

  nav ul {
    left: 50%;
    transform: translateX(-50%);
    width: min(92%, 760px);
    top: calc(var(--top-bar-h) + 28px);
    justify-content: center;
    gap: clamp(14px, 2.4vw, 28px);
  }

  .hero-containt {
    left: 50%;
    transform: translateX(-50%);
    width: min(90%, 760px);
    top: calc(var(--top-bar-h) + 86px);
    bottom: 24px;
    align-items: center;
    text-align: center;
  }

  .hero-logo {
    width: clamp(220px, 34vw, 341px);
    margin-inline: auto;
  }

  .hero-list {
    width: min(90%, 640px);
    max-width: 640px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 22px;
    align-items: start;
    justify-items: start;
    margin-left: 120px;
  }

  .hero-list p {
    margin-bottom: 5px;
  }
  .hero-expertos {
    margin-right: 100px;
  }

  .hero-list li {
    width: 100%;
    justify-content: flex-start;
  }

  .hero-list li p {
    text-align: left;
  }

  .hero-list li:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: fit-content;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hero-btn {
    width: 45%;
    flex: 0 0 auto;
    max-width: 640px;
  }
  .hero-btn-primary {
    margin-bottom: 5px;
  }

  .backoffice-container {
    padding: 0 24px;
  }

  .backoffice-grid {
    flex-direction: column;
    gap: 28px;
    align-items: stretch;
  }

  .dashboard-card {
    flex: 1 1 auto;
    width: 90%;
    max-width: none;
    margin: 0 auto;
    padding: 30px 22px;
  }

  .backoffice-copy {
    width: 100%;
    max-width: none;
    margin-top: 0;
    padding-left: 0;
  }

  .backoffice-copy h2,
  .copy-intro{
    max-width: none;
  }
  .backoffice-copy h2{
    margin-left: 80px;
}
.backoffice-copy p{
    max-width: 80%;
    margin-left: 80px;
}
.benefit-list {
  margin-left: 80px;
}
.benefit-list li > div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.benefit-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.benefit-icon img {
  display: block;
  margin: 0 auto;
}

.benefit-list li h4,
.benefit-list li p {
  margin-left: 0;
  text-align: left;
  max-width: none;
}

.hardware-copy h3,
.hardware-copy > p {
  width: 90%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.hardware-list {
  width: 90%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-left: auto;
  margin-right: auto;
}

.hardware-list li {
  width: 100%;
}

.hardware-image-wrap {
  width: 80%;
  margin-left: auto;
  margin-right: auto;
}

.site-footer-brand {
  max-width: 100%;
  margin-top: -50px;
}
.site-footer-brand > img {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.site-footer-brand > p {
  width: 100%;
  max-width: 100%;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.site-footer-contact {
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 22px;
}

.site-footer-contact li {
  justify-content: center;
}

.site-footer-links {
  margin: 0 auto;
  max-width: 80%;
  margin-top: 20px;
}

}

@media (max-width: 924px) {
  .hero-btn {
    margin-left: 40px;
  }

  .hardware-highlight-side article h4 {
    font-size: 100%;
  }
}

@media (max-width: 836px) {
  .hero-list {
    width: min(100%, 640px);
    margin-left: 25%;
    margin-right: 10%;
  }

  .hardware-highlights {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: stretch;
  }

  .hardware-highlight-main {
    width: 100%;
    flex: 1 1 auto;
    min-height: 230px;
    height: auto;
    margin: 0;
    padding: 24px;
  }

  .hardware-highlight-side {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    width: 100%;
  }

  .hardware-highlight-side .hardware-kpi-card {
    width: 100%;
    margin: 0;
    padding: 14px;
    aspect-ratio: 1.45 / 1;
    min-height: 140px;
    height: auto;
    justify-content: flex-start;
    gap: 8px;
  }

  .hardware-highlight-side .hardware-kpi-icon {
    width: 38px;
    height: 38px;
    margin-bottom: 6px;
  }

  .hardware-highlight-side .hardware-kpi-icon img {
    width: 20px;
    height: 20px;
  }

  .hardware-highlight-side .hardware-kpi-card h4 {
    font-size: 18px;
    margin: 0;
    line-height: 1.2;
  }

  .hardware-highlight-side .hardware-kpi-card p {
    margin-top: 0;
    font-size: 13px;
    line-height: 1.35;
  }
}

@media (max-width: 768px) {
  .backoffice-copy {
    padding-right: 6.5%; 
  }
}

@media (max-width: 697px) {
  .hardware-list {
    margin-left: 6.5%; 
  }

  .site-footer-links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .site-footer-links > div {
    width: 100%;
    text-align: center;
  }

  .site-footer-links h4 {
    text-align: center;
  }

  .site-footer-links ul {
    align-items: center;
  }

  .site-footer-links li {
    width: 100%;
    text-align: center;
  }

  .site-footer-links a {
    width: 100%;
    display: block;
    text-align: center;
  }

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

  .site-footer-legal li,
  .site-footer-legal a {
    width: 100%;
    text-align: center;
  }

  .site-footer-legal a {
    display: block;
  }

  .cta-blue-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 10px;
    padding: 0;
  }

  .cta-blue-card {
    flex: 0 1 230px;
    width: 230px;
    max-width: 230px;
    min-height: 230px;
    padding: 14px 12px;
  }

  .cta-blue-icon {
    width: 46px;
    height: 46px;
  }

  .cta-blue-icon img {
    width: 22px;
    height: 22px;
  }

  .cta-blue-card h3 {
    font-size: 16px;
  }

  .cta-blue-card p {
    font-size: 12px;
  }

  .cta-blue-card a {
    font-size: 12px;
  }
}

@media (max-width: 576px) {
  .hero-nav {
    position: absolute;
    top: calc(var(--top-bar-h) + 12px);
    left: 0;
    right: 0;
    z-index: 1104;
    display: flex;
    justify-content: flex-end;
    padding: 0 16px;
  }

  .nav-toggle {
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 10px;
    background: rgba(2, 128, 202, 0.95);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
    z-index: 1106;
  }

  .nav-toggle span {
    width: 20px;
    height: 2px;
    border-radius: 99px;
    background: #fff;
    transition: transform 0.22s ease, opacity 0.22s ease;
  }

  .hero-nav-menu {
    position: absolute;
    top: 52px;
    right: 16px;
    left: auto;
    transform: none;
    z-index: 1105;
    width: min(250px, calc(100vw - 32px));
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    gap: 4px;
    padding: 10px 12px;
    border-radius: 12px;
    background: rgba(0, 0, 0, 0.97);
    box-shadow: 0 12px 26px rgba(0, 0, 0, 0.24);
  }

  .hero-nav-menu li {
    width: 100%;
  }

  .hero-nav-menu a {
    width: 100%;
    display: block;
    font-size: 16px;
    text-align: left;
    padding: 10px 8px;
  }

  .hero-nav.is-open .hero-nav-menu {
    display: flex;
  }

  .hero-nav.is-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .hero-nav.is-open .nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .hero-nav.is-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .hero-containt {
    left: 50%;
    transform: translateX(-50%);
    width: min(94%, 520px);
    align-items: center;
    text-align: center;
  }

  .hero-logo {
    width: min(70%, 300px);
    margin-inline: auto;
  }

  .hero-list {
    width: min(92%, 480px);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
  }

  .hero-list li {
    width: min(100%, 420px);
    margin: 0 auto;
    justify-content: flex-start;
  }

  .hero-list li p {
    text-align: left;
  }

  .hero-list li:nth-child(5) {
    grid-column: auto;
    justify-self: auto;
    width: min(100%, 420px);
  }

  .hero-expertos {
    margin-right: 0;
  }

  .hero-actions {
    width: 100%;
    align-items: center;
    gap: 10px;
  }

  .hero-btn {
    width: min(92%, 420px);
    max-width: 420px;
    margin-left: 0;
  }

  .backoffice-container {
    padding-left: 4%;
    padding-right: 4%;
  }

  .dashboard-card {
    width: 100%;
    flex: 1 1 auto;
    margin: 0 auto;
    padding: 5%;
    border-radius: 14px;
  }

  .dashboard-card::after {
    top: 6%;
    right: 6%;
  }

  .dashboard-card h3 {
    font-size: clamp(22px, 5.2vw, 28px);
    margin-bottom: 4%;
  }

  .dashboard-kpis {
    display: flex;
    flex-direction: column;
    gap: 3%;
    margin-bottom: 6%;
  }

  .kpi-box {
    width: 100%;
    flex: 1 1 100%;
    padding: 5% 4%;
    margin-bottom: 10px;
  }

  .kpi-title {
    font-size: clamp(11px, 2.8vw, 13px);
  }

  .kpi-value {
    font-size: clamp(22px, 5vw, 28px);
  }

  .chart-card {
    width: 100%;
    padding: 4.5% 4%;
    margin-bottom: 5%;
  }

  .bar-chart {
    height: clamp(110px, 28vw, 150px);
    gap: 2.2%;
  }

  .bar-days {
    gap: 2.2%;
  }

  .bar-days span {
    font-size: clamp(10px, 2.5vw, 12px);
  }

  .line-chart-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .sync-note {
    width: 100%;
    margin: 0;
    padding: 3.5% 4%;
    font-size: clamp(12px, 2.8vw, 14px);
  }

  .backoffice-copy {
    margin-left: -10px;
  }

  .hardware-list {
    margin-left: 20px;
  }

  .hardware-list h4 {
    font-size: 15px;
  }

  .hardware-brand-grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .hardware-brand-card {
    width: 90%;
    max-width: none;
    flex: 0 0 auto;
    margin-right: 0;
    height: auto;
  }

  .cta-blue-cards {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 0;
  }

  .cta-blue-card {
    width: 70%;
    max-width: none;
    flex: 0 0 auto;
    min-height: 0;
    height: auto;
  }

  .cta-blue-benefits {
    gap: 10px;
    padding-left: 0;
    padding-right: 0;
  }

  .cta-blue-benefits li {
    gap: 8px;
  }

  .cta-blue-check {
    width: 38px;
    height: 38px;
  }

  .cta-blue-check img {
    width: 18px;
    height: 18px;
  }

  .cta-blue-benefits p {
    font-size: 13px;
    line-height: 1.35;
    max-width: 220px;
  }

}

@media (max-width: 475px) {
  .top-bar-inner {
    padding: 0 10px;
  }

  .top-bar-elements {
    align-items: center;
    gap: 6px;
    font-size: 12px;
  }

  .top-bar-elements > img {
    width: 14px;
    height: 14px;
    margin-right: 0;
  }

  .hero-nav {
    top: calc(var(--top-bar-h) + 8px);
    padding: 0 10px;
  }

  .nav-toggle {
    width: 38px;
    height: 38px;
    border-radius: 9px;
  }

  .nav-toggle span {
    width: 18px;
  }

  .hero-nav-menu {
    right: 10px;
    width: min(220px, calc(100vw - 20px));
  }

  .hero-containt {
    width: 100%;
    max-width: 100%;
    top: calc(var(--top-bar-h) + 72px);
    bottom: 16px;
    padding: 0 10px 12px;
    text-align: center;
    align-items: center;
  }

  .hero-logo {
    width: min(60%, 260px);
    max-width: min(60%, 260px);
    margin-left: auto;
    margin-right: auto;
  }

  .hero-containt h1,
  .hero-containt > p,
  .hero-list,
  .hero-actions {
    width: 95%;
    max-width: 95%;
    margin-left: 0;
    margin-right: 0;
  }

  .hero-containt h1 {
    font-size: 24px;
    line-height: 1.2;
    text-align: left;
  }

  .hero-containt > p {
    font-size: 14px;
    line-height: 1.45;
    text-align: left;
  }

  .hero-list {
    gap: 8px;
    align-items: stretch;
    padding-left: 0;
  }

  .hero-list li {
    width: 100%;
    display: grid;
    grid-template-columns: 20px minmax(0, 1fr);
    align-items: center;
    justify-content: flex-start;
    column-gap: 9px;
  }

  .hero-list li p {
    font-size: 14px;
    line-height: 1.35;
    text-align: left;
    width: 100%;
  }

  .hero-list li:nth-child(5) {
    width: 100%;
  }

  .hero-icon-wrap {
    width: 20px;
    height: 20px;
  }

  .hero-icon-wrap img {
    width: 12px;
    height: 12px;
  }

  .hero-actions { gap: 8px; }

  .hero-btn {
    width: 100%;
    max-width: 100%;
    min-height: 46px;
    font-size: 14px;
    padding: 0 14px;
  }

  .hardware-container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .hardware-highlights {
    gap: 10px;
    align-items: center;
  }

  .hardware-highlight-main {
    width: 80%;
    max-width: 80%;
    min-height: 0;
    margin: 0 auto;
    padding: 16px 14px;
    text-align: center;
  }

  .hardware-main-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 10px;
  }

  .hardware-main-icon img {
    width: 22px;
    height: 22px;
  }

  .hardware-highlight-main h3 {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
  }

  .hardware-highlight-main p {
    max-width: 100%;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.45;
    text-align: center;
  }

  .hardware-highlight-side {
    width: 80%;
    max-width: 80%;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hardware-highlight-side .hardware-kpi-card {
    min-height: 0;
    height: auto;
    aspect-ratio: auto;
    padding: 12px;
    align-items: center;
    text-align: center;
    gap: 6px;
  }

  .hardware-highlight-side .hardware-kpi-icon {
    width: 34px;
    height: 34px;
    margin-bottom: 4px;
  }

  .hardware-highlight-side .hardware-kpi-icon img {
    width: 16px;
    height: 16px;
  }

  .hardware-highlight-side .hardware-kpi-card h4 {
    font-size: 18px;
  }

  .hardware-highlight-side .hardware-kpi-card p {
    font-size: 12px;
    line-height: 1.35;
    margin-top: 0;
  }

  .hardware-intro {
    margin-top: 50px;
    margin-bottom: 40px;
  }

  .hardware-intro > .hardware-chip {
    font-size: 12px;
    padding: 8px 12px;
    gap: 6px;
    margin-bottom: 12px;
  }

  .hardware-chip img {
    width: 14px;
    height: 14px;
  }

  .hardware-intro h2 {
    font-size: 24px;
    line-height: 1.2;
    margin-top: 12px;
    margin-bottom: 12px;
  }

  .hardware-intro > p {
    max-width: 100%;
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 24px;
    padding: 0 2px;
  }

  .hardware-content {
    padding: 0;
    gap: 16px;
    margin-bottom: 32px;
  }

  .hardware-copy {
    width: 100%;
    max-width: 100%;
  }

  .hardware-copy h3 {
    width: 100%;
    max-width: 100%;
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
    text-align: center;
  }

  .hardware-copy > p {
    width: 100%;
    max-width: 100%;
    margin-bottom: 24px;
    font-size: 14px;
    line-height: 1.45;
    text-align: center;
  }

  .hardware-list {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    gap: 10px;
    align-items: stretch;
  }

  .hardware-list li {
    width: 100%;
    max-width: none;
    display: grid;
    grid-template-columns: 32px minmax(0, 1fr);
    align-items: center;
    justify-content: center;
    align-content: center;
    column-gap: 10px;
  }

  .hardware-list li > div {
    width: 100%;
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .hardware-list-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    justify-self: center;
    align-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .hardware-list-icon img {
    width: 15px;
    height: 15px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
    object-position: center;
  }

  .hardware-list h4 {
    font-size: 14px;
    margin-bottom: 2px;
    width: 100%;
    text-align: left;
  }

  .hardware-list p {
    font-size: 12px;
    line-height: 1.4;
    width: 100%;
    text-align: left;
  }

  .hardware-image-wrap {
    width: 100%;
    max-width: 100%;
    margin-top: 0;
    border-radius: 16px;
  }

  .hardware-image-wrap img {
    width: 100%;
    height: auto;
  }

  .hardware-brands h3 {
    font-size: 24px;
    margin-bottom: 18px;
  }

  .hardware-brand-card {
    width: 80%;
    padding: 24px 12px 12px;
  }

  .hardware-brand-card h4 {
    font-size: 20px;
    padding-bottom: 10px;
    margin-bottom: 10px;
  }

  .hardware-brand-card ul {
    gap: 8px;
  }

  .hardware-brand-card li {
    font-size: 12px;
    gap: 6px;
  }

  .hardware-brand-card li img {
    width: 14px;
    height: 14px;
  }

  .backoffice-copy {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    padding-left: 0;
    text-align: center;
  }

  .backoffice-copy h2 {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 20px;
    line-height: 1.2;
    text-align: center;
  }

  .backoffice-copy .copy-intro {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: 14px;
    line-height: 1.55;
    text-align: center;
  }

  .backoffice-callout h3 {
    font-size: 20px;
  }
  .backoffice-callout p {
    font-size: 15px;
  }

  .benefit-list {
    width: 90%;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    align-items: center;
  }

  .benefit-list li {
    width: 100%;
    justify-content: center;
  }

  .benefit-list li > div {
    align-items: center;
  }

  .benefit-list h4,
  .benefit-list p {
    text-align: center;
  }
  .cta-blue-container h2 {
    font-size: 25px;
  }
  .cta-blue-container p {
    font-size: 15px;
  }
  .cta-blue-actions a {
    font-size: 80%;
  }
  .cta-blue-card{
    width: 90%;
  }
  .cta-blue-cards article h3 {
    font-size: 14px;
  }
  .cta-blue-cards article p {
    font-size: 10px;
  }

  .cta-blue-benefits {
    gap: 6px;
  }

  .cta-blue-benefits li {
    flex: 0 1 31%;
    max-width: 31%;
    min-width: 0;
    gap: 6px;
  }

  .cta-blue-check {
    width: 30px;
    height: 30px;
  }

  .cta-blue-check img {
    width: 14px;
    height: 14px;
  }

  .cta-blue-benefits p {
    font-size: 11px;
    line-height: 1.25;
    max-width: none;
  }

  .site-footer-brand {
    width: 100%;
  }

  .site-footer-brand img {
    width: 120px;
    height: 80px;
  }

  .site-footer-brand p {
    font-size: 13px;
  }

  .site-footer-security li {
    font-size: 11px;
  }
  .site-footer-legal li a {
    font-size: 11px;
  }
  .site-footer-links h4 {
    font-size:14px;
  }
  .site-footer-links a {
    font-size: 12px;
  }
  .site-footer-brand ul li {
    font-size: 10px;
  }
  .site-footer-copy {
    font-size: 12px;
  
  }
}
