:root {
  --ink: #14213d;
  --muted: #657086;
  --line: #e7ecf4;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --cyan: #00a6d6;
  --cyan-dark: #007fa8;
  --green: #20b978;
  --yellow: #ffc857;
  --coral: #f46d75;
  --violet: #7f6ce6;
  --shadow: 0 24px 70px rgba(20, 33, 61, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  background: var(--paper);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

a:focus-visible,
button:focus-visible {
  outline: 3px solid rgba(0, 166, 214, 0.42);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid rgba(231, 236, 244, 0.9);
  backdrop-filter: blur(16px);
}

.header__inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 150px;
  height: auto;
}

.header__menu {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
}

.main-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  color: #2f3d55;
  font-size: 15px;
  font-weight: 700;
}

.main-nav a {
  transition: color 160ms ease;
}

.main-nav a:hover {
  color: var(--cyan-dark);
}

.header__actions,
.hero__actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.header__toggle {
  width: 44px;
  height: 44px;
  display: none;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}

.header__toggle span {
  width: 20px;
  height: 2px;
  display: block;
  margin: 3px 0;
  background: var(--ink);
}

.btn {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  padding: 0 18px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 800;
  white-space: nowrap;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn--accent {
  color: #fff;
  background: var(--green);
  box-shadow: 0 12px 26px rgba(32, 185, 120, 0.24);
}

.btn--ghost {
  color: var(--cyan-dark);
  border-color: #b9eaf7;
  background: #fff;
}

.btn--soft {
  color: var(--ink);
  background: #eef8fb;
}

.language-switcher {
  position: relative;
  flex: 0 0 auto;
  color: var(--ink);
}

.language-switcher[open] {
  z-index: 30;
}

.language-switcher__summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 4px 9px 4px 4px;
  background: #fff;
  cursor: pointer;
  list-style: none;
  box-shadow: 0 8px 20px rgba(20, 33, 61, 0.06);
}

.language-switcher__summary::-webkit-details-marker {
  display: none;
}

.language-switcher__summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid #7a8798;
  border-bottom: 2px solid #7a8798;
  transform: translateY(-2px) rotate(45deg);
  transition: transform 160ms ease;
}

.language-switcher[open] .language-switcher__summary::after {
  transform: translateY(2px) rotate(225deg);
}

.language-switcher__current {
  min-width: 52px;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 4px;
  color: #fff;
  background: var(--ink);
  font-size: 12px;
  font-weight: 900;
}

.language-switcher__flag {
  width: 18px;
  height: 18px;
  display: block;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(20, 33, 61, 0.08);
}

.language-switcher__name {
  color: #4b576b;
  font-size: 13px;
  font-weight: 800;
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 174px;
  display: grid;
  gap: 4px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 38px rgba(20, 33, 61, 0.16);
}

.language-switcher__link {
  min-height: 38px;
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 8px;
  border-radius: 6px;
  padding: 0 9px 0 4px;
  color: #4b576b;
  font-size: 13px;
  font-weight: 800;
}

.language-switcher__link > span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: 4px;
  background: #f1f5f9;
  color: #647084;
  font-size: 11px;
  font-weight: 900;
}

.language-switcher__link strong {
  font-size: 13px;
  font-weight: 800;
}

.language-switcher__link:hover {
  background: #f4f9fb;
}

.language-switcher__link.is-active {
  color: var(--ink);
  background: #edf9fd;
}

.language-switcher__link.is-active > span {
  color: #fff;
  background: var(--cyan-dark);
}

.hero {
  overflow: hidden;
  padding: 70px 0 58px;
  /* degradados base; la imagen principal se coloca como overlay para permitir ver personas por huecos */
  background: radial-gradient(circle at 78% 28%, rgba(0, 166, 214, 0.12), transparent 34%), linear-gradient(180deg, #f8fbfd 0%, #ffffff 70%);
  position: relative;
}

.clients-login {
  min-height: calc(100vh - 86px);
  padding: 156px 0 116px;
  background: linear-gradient(180deg, #f3f6f9 0%, #f1f1f1 58%);
}

.clients-login__inner {
  display: grid;
  gap: 62px;
}

.clients-login__intro {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}

.clients-login__intro h1 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.clients-login__intro p:last-child {
  max-width: 560px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 56px 42px;
  align-items: start;
}

.clients-login__thanks {
  margin: 54px 0 0;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.45;
  text-align: center;
}

.client-card {
  min-width: 0;
  display: grid;
  justify-items: center;
  gap: 18px;
  text-align: center;
}

.client-card__logo {
  width: min(172px, 100%);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 33, 61, 0.08);
}

@media (min-width: 1180px) {
  .clients-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.client-card__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.client-card h2 {
  min-height: 46px;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4f5663;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.25;
}

.client-card__actions {
  min-height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.client-card__action {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: #0c1118;
  transition: background 160ms ease, transform 160ms ease;
}

.client-card__action:hover {
  background: var(--cyan-dark);
  transform: translateY(-1px);
}

.client-card__action svg {
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.hero__grid {
  /* ocupar la mayor parte de la pantalla: restar la altura del header para cubrir viewport */
  min-height: calc(100vh - 86px);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(480px, 1.1fr);
  align-items: center;
  gap: 42px;
}

.hero__content {
  max-width: 470px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan-dark);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: 58px;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 span {
  color: var(--cyan);
  display: block;
}

.hero__copy {
  margin: 24px 0 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.55;
}

.hero__logos {
  width: min(360px, 100%);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 38px;
}

.hero__logos span {
  min-height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: #8792a6;
  background: #fff;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-art {
  position: relative;
  min-height: 610px;
  isolation: isolate;
}

.hero-art__base {
  position: absolute;
  inset: 0 0 auto auto;
  width: min(100%, 720px);
  min-height: 560px;
  object-fit: contain;
  filter: drop-shadow(var(--shadow));
  z-index: 1;
}

.hero-art__person,
.hero-art__icon {
  position: absolute;
  display: block;
}

.hero-art__person {
  border-radius: 48% 48% 12px 12px;
  box-shadow: var(--shadow);
  background-size: cover;
  background-position: center;
  /* la animación de aparición se añade aquí */
  animation: riseUp 0.9s cubic-bezier(.2,.8,.2,1) forwards;
  transform-origin: center;
}

/* posiciones de iconos */
.hero-art__icon--plus { left: 4%; top: 30%; }
.hero-art__icon--cloud { right: 6%; top: 16%; }
.hero-art__icon--like { right: 16%; top: 42%; }
.hero-art__icon--smile { left: 18%; top: 21%; }
.hero-art__icon--mobile { left: 72%; top: 74%; }

/* Animaciones específicas */
@keyframes spinThenBack {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(360deg); }
  100% { transform: rotate(0deg); }
}

@keyframes quarterTilt {
  0%   { transform: rotate(0deg); }
  50%  { transform: rotate(25deg); }
  100% { transform: rotate(0deg); }
}

@keyframes nudgeRight {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(10px); }
  100% { transform: translateX(0); }
}

@keyframes scalePulse {
  0%   { transform: scale(1); }
  50%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

@keyframes vibrate {
  0% { transform: translateX(0); }
  20% { transform: translateX(-2px); }
  40% { transform: translateX(2px); }
  60% { transform: translateX(-2px); }
  80% { transform: translateX(2px); }
 100% { transform: translateX(0); }
}

/* Asignaciones de animación a iconos */
.hero-art__icon--plus { animation: spinThenBack 8s ease-in-out infinite; transform-origin: center; }
.hero-art__icon--smile { animation: quarterTilt 4s ease-in-out infinite; transform-origin: center; }
.hero-art__icon--like { animation: nudgeRight 3.5s ease-in-out infinite; }
.hero-art__icon--cloud { animation: scalePulse 5s ease-in-out infinite; transform-origin: center; }
.hero-art__icon--mobile { animation: vibrate 0.7s linear infinite; }

@keyframes riseUp {
  0% { transform: translateY(40px) scale(0.98); opacity: 0; }
  100% { transform: translateY(0) scale(1); opacity: 1; }
}

.hero-art__person::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 140%;
  height: 140%;
  border-radius: 50%;
  z-index: 2;
  background: rgba(255,255,255,0.65);
}

/* delays para aparición secuencial (de abajo hacia arriba) */
.hero-art__person--01 { animation-delay: 0.6s; }
.hero-art__person--02 { animation-delay: 0.8s; }
.hero-art__person--03 { animation-delay: 1.0s; }
.hero-art__person--04 { animation-delay: 1.2s; }

/* Si quieres reemplazar las personas por "lapices", cambia aquí las URLs a las imágenes de lápiz */
/* .hero-art__person--01 { background-image: url('/assets/img/hero/pencil-01.png'); } */

/* Overlay/underlay and icon positioning moved to `hero.css` (scoped to #inicio)
   to avoid conflicts with other sections. */

.advantages,
.growth,
.modules,
.integrations {
  padding: 78px 0;
}

.growth {
  padding-top: 86px;
  padding-bottom: 86px;
}

.advantages {
  position: relative;
  background: var(--soft);
  overflow: hidden;
}

.advantages::after {
  content: "";
  position: absolute;
  top: 0;
  right: 10px;
  bottom: 0;
  width: 325px;
  background: #117197;
}

.advantages .container {
  position: relative;
  z-index: 1;
}

/* Nueva sección 'why-start' - banda azul con 3 iconos */
.why-start {
  background: linear-gradient(90deg, rgba(8,171,214,1) 0%, rgba(11,133,187,1) 100%);
  color: #fff;
  padding: 46px 0;
  position: relative;
  z-index: 3;
}
.why-inner {
  display: grid;
  grid-template-columns: minmax(280px, 0.62fr) minmax(720px, 1.38fr);
  align-items: center;
  gap: 34px;
}
.why-left h2 {
  font-size: 40px;
  font-weight: 400;
  line-height: 1.12;
  margin: 0 0 0 18px;
}
.why-left h2 span {
  display: block;
}
.why-left h2 strong {
  display: inline-block;
  font-weight: 800;
  letter-spacing: 0;
  transform-origin: center;
}
.why-items {
  display: flex;
  justify-content: center;
  gap: clamp(42px, 5vw, 92px);
  padding: 0 18px;
}
.why-item {
  width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  text-align: center;
}
.why-icon {
  width: 162px;
  height: 162px;
  object-fit: contain;
}
.why-item p {
  margin: 0;
  opacity: 0.95;
  font-size: 18px;
  line-height: 1.18;
}

@media (max-width: 992px) {
  .why-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .why-left h2 {
    margin-left: 0;
  }

  .why-items {
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 0;
  }
}

.section-heading {
  width: min(780px, 100%);
  margin-bottom: 34px;
}

.section-heading__title span {
  color: var(--cyan);
}

h2 {
  margin: 0;
  font-size: 40px;
  line-height: 1.14;
}

.advantages__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 280px));
  gap: 18px;
}

.advantages__grid {
  justify-content: start;
  gap: 34px;
}

.modules__grid {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  justify-content: center;
}

.advantage-card,
.module-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.advantage-card:hover,
.module-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 166, 214, 0.24);
  box-shadow: 0 18px 44px rgba(20, 33, 61, 0.1);
}

.advantage-card {
  min-height: 255px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.advantage-card__icon {
  display: block;
  width: 86px;
  height: 86px;
  margin-bottom: 20px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.module-card__icon {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 8px;
  margin-bottom: 18px;
}

.advantage-card__icon--1 {
  background-image: url("../img/icons/process.svg");
}

.advantage-card__icon--2 {
  background-image: url("../img/icons/reports.svg");
}

.advantage-card__icon--3 {
  background-image: url("../img/icons/modules.svg");
}

.advantage-card h3,
.module-card h3 {
  margin: 0;
  font-size: 21px;
  text-align: center;
}

.advantage-card p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.35;
}

.growth,
.modules {
  position: relative;
}

.growth {
  overflow: visible;
  z-index: 1;
}

.growth::after {
  display: none;
}

.modules::after {
  display: none;
}

.growth::before {
  display: none;
}

.growth__decor {
  position: absolute;
  right: clamp(10px, 3vw, 48px);
  width: clamp(210px, 22vw, 325px);
  height: clamp(260px, 27vw, 403px);
  top: 0;
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-170px);
  transition:
    opacity 260ms ease,
    transform 1580ms cubic-bezier(0.16, 1, 0.3, 1);
}

.growth__decor-bar,
.growth__decor-circle {
  position: absolute;
  display: block;
}

.growth__decor-bar {
  top: 0;
  right: 0;
  width: 100%;
  height: 59.55%;
  background: #117197;
}

.growth__decor-circle {
  top: 19.35%;
  right: 0;
  width: 100%;
  aspect-ratio: 1;
  height: auto;
  border-radius: 50%;
  background: #1684a7;
  background-image: url("../img/icons/icono1.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 46% auto;
}

.growth.is-visible .growth__decor {
  opacity: 1;
  transform: translateY(0);
}

.growth .container,
.modules .container {
  position: relative;
  z-index: 2;
}

.growth__grid {
  width: min(900px, calc(100% - 380px));
  margin-left: 0;
  margin-right: auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 42px;
  align-items: center;
  text-align: center;
}

.growth__intro,
.growth__copy {
  opacity: 0;
  transform: translateY(30px);
}

.growth.is-visible .growth__intro,
.growth.is-visible .growth__copy {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 620ms ease,
    transform 820ms cubic-bezier(0.16, 1, 0.3, 1);
}

.growth.is-visible .growth__copy {
  transition-delay: 180ms;
}

.growth__eyebrow {
  width: min(820px, 100%);
  display: block;
  margin: 0 auto 34px;
  text-align: left;
}

.growth__title {
  font-weight: 800;
  line-height: 1.34;
}

.growth__title span {
  position: relative;
  z-index: 2;
  display: inline-block;
  color: var(--cyan);
  font-size: 1.25em;
  transform-origin: center;
}

.growth.is-visible .growth__title span {
  animation: growthWordPulse 1380ms cubic-bezier(0.16, 1, 0.3, 1) 420ms both;
}

.growth__copy {
  width: min(820px, 100%);
  margin: 0 auto;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.65;
  text-align: left;
}

@keyframes growthWordPulse {
  0% {
    transform: scale(1);
  }

  30% {
    transform: scale(1.85);
  }

  52% {
    transform: scale(1);
  }

  72% {
    transform: scale(1.42);
  }

  100% {
    transform: scale(1);
  }
}

.modules {
  padding-top: 0;
  overflow: hidden;
}

.modules::before {
  display: none;
}

.modules h2 {
  width: min(1120px, 100%);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 26px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0;
}

.js-ready .modules h2,
.js-ready .modules .module-card,
.js-ready .modules .modules-app__intro,
.js-ready .modules .modules-app__download {
  opacity: 0;
}

.js-ready .integrations .eyebrow,
.js-ready .integrations h2,
.js-ready .integrations .integration-card {
  opacity: 0;
}

.js-ready .news__title-card .eyebrow,
.js-ready .news__title-card h2 {
  opacity: 0;
}

.js-ready .demo-section__media,
.js-ready .demo-section__content {
  opacity: 0;
}

.module-card {
  aspect-ratio: 1 / 1;
  min-height: 0;
  padding: 0;
  border: 0;
  background: transparent;
  perspective: 1200px;
  position: relative;
}

.module-card:hover,
.module-card:focus-within {
  z-index: 10;
}

.module-card__inner {
  width: 100%;
  height: 100%;
  min-height: 0;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.module-card:hover .module-card__inner,
.module-card:focus-within .module-card__inner {
  transform: rotateY(180deg);
}

.module-card__face {
  position: absolute;
  inset: 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 20px 18px 32px;
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 8px;
  backface-visibility: hidden;
  box-shadow: 0 18px 42px rgba(20, 33, 61, 0.14);
  overflow: hidden;
}

.module-card__front {
  color: #fff;
  background: linear-gradient(180deg, #0988ab 0%, #087391 100%);
}

.module-card:nth-child(4n + 2) .module-card__front,
.module-card:nth-child(4n + 5) .module-card__front {
  background: linear-gradient(180deg, #0988ab 0%, #087391 100%);
}

.module-card:nth-child(4n + 3) .module-card__front,
.module-card:nth-child(4n + 8) .module-card__front {
  background: linear-gradient(180deg, #0988ab 0%, #087391 100%);
}

.module-card__back {
  color: #fff;
  background: linear-gradient(180deg, #117197 0%, #075c7b 100%);
  gap: 16px;
  overflow: visible;
  padding: 22px 28px 30px;
  transform: rotateY(180deg);
}

.module-card__back h3 {
  font-size: 22px;
  line-height: 1.12;
  text-align: center;
}

.module-card__title-line {
  display: inline;
}

.module-card__title-line--2 {
  display: inline-block;
  font-size: 0.82em;
  line-height: 1.1;
  margin-top: 4px;
}

.module-card__back p {
  max-width: 230px;
  margin: 0;
  text-align: center;
  font-size: 17px;
  line-height: 1.35;
}

.module-card__back ul {
  width: 100%;
  margin: 0;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.94);
  font-size: 14px;
  line-height: 1.34;
}

.module-card__back li + li {
  margin-top: 6px;
}

.module-card__feature {
  cursor: help;
  outline: 0;
  position: relative;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.36);
  text-decoration-style: dotted;
  text-underline-offset: 3px;
}

.module-card__tooltip {
  background: #fff;
  border-radius: 8px;
  bottom: calc(100% + 8px);
  box-sizing: border-box;
  box-shadow: 0 14px 34px rgba(4, 38, 56, 0.26);
  color: #14314f;
  display: block;
  font-size: 12px;
  font-weight: 700;
  left: 50%;
  line-height: 1.35;
  opacity: 0;
  padding: 10px 12px;
  pointer-events: none;
  position: absolute;
  text-align: left;
  transform: translate(-50%, 6px);
  transition: opacity 160ms ease, transform 160ms ease;
  visibility: hidden;
  white-space: normal;
  width: min(320px, 82vw);
  z-index: 5;
}

.module-card__tooltip::after {
  border: 7px solid transparent;
  border-top-color: #fff;
  content: "";
  left: 50%;
  position: absolute;
  top: 100%;
  transform: translateX(-50%);
}

.module-card__feature:hover .module-card__tooltip,
.module-card__feature:focus-visible .module-card__tooltip {
  opacity: 1;
  transform: translate(-50%, 0);
  visibility: visible;
}

.module-card__button {
  margin-top: auto;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #087391;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  border-radius: 6px;
  background: #fff;
}

.module-card__button:hover,
.module-card__button:focus-visible {
  color: #075c7b;
  background: #e9f7fb;
}

.module-card .module-card__icon {
  display: block;
  width: 75%;
  max-width: none;
  aspect-ratio: 1;
  height: auto;
  margin: 0;
  flex: 0 0 auto;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.module-card__icon--1 {
  background-image: url("../img/icons/modules/iconomedio1.png");
}

.module-card__icon--2 {
  background-image: url("../img/icons/modules/iconomedio3.png");
}

.module-card__icon--3 {
  background-image: url("../img/icons/modules/iconomedio4.png");
}

.module-card__icon--4 {
  background-image: url("../img/icons/modules/iconomedio5.png");
}

.module-card__icon--5 {
  background-image: url("../img/icons/modules/iconomedio6.png");
}

.module-card__icon--6 {
  background-image: url("../img/icons/modules/iconomedio7.png");
}

.module-card__icon--7 {
  background-image: url("../img/icons/modules/iconomedio8.png");
}

.module-card__icon--8 {
  background-image: url("../img/icons/modules/iconomedio10.png");
}

.module-card__icon--9 {
  background-image: url("../img/icons/modules/iconomedio9.png");
}

.module-card__icon--10 {
  background-image: url("../img/icons/modules/iconomedio11.png");
}

.module-card__icon--11 {
  background-image: url("../img/icons/modules/iconomedio12.png");
}

.module-card__icon--12 {
  background-image: url("../img/icons/modules/iconomedio17.png");
}

.module-card__icon--13 {
  background-image: url("../img/icons/modules/iconomedio13.png");
}

.module-card__icon--14 {
  background-image: url("../img/icons/modules/iconomedio14.png");
}

.module-card__icon--15 {
  background-image: url("../img/icons/modules/iconomedio15.png");
}

.integrations {
  position: relative;
  background: #f5f8fc;
  overflow: visible;
}

.integrations::before {
  content: "";
  position: absolute;
  left: -150px;
  top: -150px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: #08abd6;
  z-index: 1;
  transform-origin: center;
  animation: sectionBridgeCircle 6.4s ease-in-out infinite;
  will-change: transform;
}

.integrations::after {
  content: "";
  position: absolute;
  right: clamp(28px, 4vw, 74px);
  top: -92px;
  width: 40px;
  height: 184px;
  border-radius: 999px;
  background: #ffc247;
  z-index: 1;
  transform-origin: center;
  animation: sectionBridgeBar 6.4s ease-in-out infinite;
  will-change: transform;
}

@keyframes sectionBridgeCircle {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(14px) scale(0.985);
  }
}

@keyframes sectionBridgeBar {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }

  50% {
    transform: translateY(14px) scaleY(1.08);
  }
}

.integrations .container {
  position: relative;
  z-index: 2;
}

.integrations__heading {
  width: min(1120px, 100%);
  margin: 0 auto 30px;
  text-align: center;
}

.integrations__heading .eyebrow {
  color: #087391;
}

.integrations__heading h2 {
  color: #081a45;
  font-weight: 800;
}

.integrations__grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}

.integration-card {
  min-height: 270px;
  padding: 0;
  border: 0;
  background: transparent;
  perspective: 1200px;
}

.integration-card__inner {
  width: 100%;
  min-height: 270px;
  position: relative;
  transform-style: preserve-3d;
  transition: transform 680ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.integration-card:hover .integration-card__inner,
.integration-card:focus-within .integration-card__inner {
  transform: rotateY(180deg);
}

.integration-card__face {
  position: absolute;
  inset: 0;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  border: 6px solid #087391;
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 33, 61, 0.14);
  backface-visibility: hidden;
  overflow: hidden;
}

.integration-card__front {
  justify-content: space-between;
  color: #fff;
  background: #fff;
}

.integration-card__back {
  justify-content: center;
  gap: 18px;
  padding: 28px 22px;
  color: #fff;
  background: #087391;
  transform: rotateY(180deg);
}

.integration-card__logo {
  width: 100%;
  min-height: 198px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  background: #fff;
}

.integration-card__logo img {
  display: block;
  width: 100%;
  max-height: 74px;
  object-fit: contain;
}

.integration-card__logo img.is-small {
  width: 62%;
  max-height: 34px;
}

.integration-card h3 {
  width: 100%;
  min-height: 66px;
  margin: 0;
  padding: 18px 16px;
  color: #fff;
  background: #087391;
  font-size: 21px;
  font-weight: 800;
  line-height: 1.2;
}

.integration-card__back h3 {
  min-height: auto;
  padding: 0;
  background: transparent;
}

.integration-card__back p {
  max-width: 230px;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 16px;
  line-height: 1.35;
}

.integration-card__button {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  color: #087391;
  font-weight: 800;
  text-decoration: none;
  border-radius: 6px;
  background: #fff;
}

.integration-card__button:hover,
.integration-card__button:focus-visible {
  color: #075c7b;
  background: #e9f7fb;
}

.modules-app {
  width: min(1120px, 100%);
  margin: 72px auto 0;
  display: grid;
  gap: 60px;
}

.modules-app__intro {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.modules-app__intro-icon {
  width: 126px;
  height: auto;
  flex: 0 0 auto;
}

.modules-app__intro h3 {
  margin: 0 0 20px;
  color: #111;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.2;
}

.modules-app__intro ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #111;
  font-size: 16px;
  line-height: 1.65;
}

.modules-app__intro li::before {
  content: "• ";
}

.modules-app__download {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 36px;
}

.modules-app__download p {
  margin: 0;
  color: #565656;
  font-size: 24px;
  line-height: 1.35;
}

.modules-app__download strong {
  font-weight: 800;
}

.modules-app__download-link {
  color: inherit;
  font-weight: 800;
  text-decoration: none;
}

.modules-app__download-link:hover,
.modules-app__download-link:focus-visible {
  text-decoration: underline;
}

.modules-app__download-badge {
  display: inline-flex;
  transition: transform 160ms ease, filter 160ms ease;
}

.modules-app__download-badge:hover,
.modules-app__download-badge:focus-visible {
  transform: translateY(-1px);
  filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.14));
}

.modules-app__download-badges {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 12px;
}

.modules-app__download-badge img {
  width: 240px;
  height: auto;
}

.community {
  position: relative;
  overflow: hidden;
  padding: 112px 0 72px;
  color: #fff;
  background:
    radial-gradient(circle at -3% -4%, rgba(8, 171, 214, 0.95) 0 20%, rgba(8, 171, 214, 0.7) 27%, rgba(8, 171, 214, 0) 38%),
    radial-gradient(circle at 52% -9%, rgba(244, 198, 38, 0.96) 0 14%, rgba(244, 198, 38, 0.74) 20%, rgba(244, 198, 38, 0) 31%),
    radial-gradient(circle at 102% 22%, rgba(57, 177, 189, 0.32) 0 18%, rgba(57, 177, 189, 0) 38%),
    linear-gradient(90deg, #5aba83 0%, #45b894 45%, #40b4aa 100%);
}

.community::before,
.community::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: 50%;
  filter: blur(34px);
  z-index: 0;
}

.community::before {
  left: -120px;
  top: -120px;
  width: 520px;
  height: 520px;
  background: rgba(8, 171, 214, 0.38);
}

.community::after {
  left: 38%;
  top: -190px;
  width: 560px;
  height: 420px;
  background: rgba(244, 198, 38, 0.34);
}

.community__inner {
  position: relative;
  z-index: 1;
}

.community__title {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  margin-bottom: 90px;
  color: #fff;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
}

.community__title img {
  width: clamp(150px, 18vw, 257px);
  height: auto;
  filter: brightness(0) invert(1);
}

.community__stats {
  width: min(1120px, 100%);
  margin: 0 auto 86px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.community-stat {
  display: grid;
  justify-items: center;
  text-align: center;
}

.community-stat__icon {
  width: 54px;
  height: 54px;
  display: block;
  margin-bottom: 18px;
  background: #fff;
  mask-position: center;
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-position: center;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
}

.community-stat--building .community-stat__icon {
  mask-image: url("../img/icons/modules.svg");
  -webkit-mask-image: url("../img/icons/modules.svg");
}

.community-stat--modules .community-stat__icon {
  mask-image: url("../img/icons/reports.svg");
  -webkit-mask-image: url("../img/icons/reports.svg");
}

.community-stat--users .community-stat__icon {
  mask-image: url("../img/icons/users.svg");
  -webkit-mask-image: url("../img/icons/users.svg");
}

.community-stat::before {
  content: "";
  width: 100%;
  height: 1px;
  display: block;
  order: 2;
  margin: 0 0 8px;
  border-top: 1px dotted rgba(255, 255, 255, 0.88);
}

.community-stat strong {
  order: 3;
  font-size: 40px;
  font-weight: 400;
  line-height: 1;
}

.community-stat span:not(.community-stat__icon) {
  order: 4;
  margin-top: 28px;
  font-size: 21px;
  font-weight: 700;
  letter-spacing: 2px;
}

.community-testimonials {
  width: min(1180px, 100%);
  margin: 0 auto;
  position: relative;
}

.community-testimonials__slides {
  min-height: 520px;
  position: relative;
}

.community-testimonials__slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(230px, 0.62fr) minmax(230px, 0.62fr);
  gap: 48px;
  align-items: start;
  opacity: 0;
  visibility: hidden;
  transform: translateY(18px);
  transition: opacity 360ms ease, transform 360ms ease, visibility 360ms ease;
}

.community-testimonials__slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.community-testimonial {
  display: grid;
  gap: 20px;
}

.community-testimonial p {
  position: relative;
  margin: 0;
  padding: 28px;
  color: #fff;
  background: rgba(25, 96, 63, 0.44);
  border-radius: 3px;
  font-size: 18px;
  font-style: italic;
  font-weight: 700;
  line-height: 1.55;
}

.community-testimonial--tall p::after {
  content: "";
  position: absolute;
  left: 28px;
  bottom: -14px;
  width: 0;
  height: 0;
  border-left: 16px solid transparent;
  border-right: 16px solid transparent;
  border-top: 16px solid rgba(25, 96, 63, 0.44);
}

.community-testimonial__person {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  gap: 18px;
  color: #fff;
}

.community-testimonial__person img {
  width: 86px;
  height: 86px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.28);
  object-fit: cover;
}

.community-testimonial--tall .community-testimonial__person {
  order: -1;
}

.community-testimonial--tall .community-testimonial__person img {
  width: 62px;
  height: 62px;
  border-width: 5px;
}

.community-testimonial__person h3 {
  margin: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 900;
  text-transform: uppercase;
}

.community-testimonial__person span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.3;
}

.community-testimonial__stars {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  letter-spacing: 2px;
}

.community-slider__btn {
  width: 42px;
  height: 42px;
  position: absolute;
  top: 44%;
  z-index: 3;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: #0b3d45;
  background: rgba(255, 255, 255, 0.16);
  font-size: 40px;
  line-height: 1;
  cursor: pointer;
}

.community-slider__btn--prev {
  left: -58px;
}

.community-slider__btn--next {
  right: -58px;
}

.community-partners {
  width: min(1120px, 100%);
  margin: 70px auto 0;
  padding-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, 0.76);
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  align-items: center;
  gap: 30px;
}

.community-partners__heading h3 {
  margin: 0;
  color: #1b4b45;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}

.community-partners__viewport {
  overflow: hidden;
}

.community-partners__track {
  display: flex;
  width: max-content;
  gap: 12px;
  animation: communityPartners 34s linear infinite;
}

.community-partners__track span {
  width: 170px;
  height: 82px;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: transparent;
  box-shadow: none;
}

.community-partners__track img {
  width: 132px;
  height: auto;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1) invert(1) contrast(3) brightness(1.45);
  mix-blend-mode: screen;
  opacity: 0.98;
}

.community__cta {
  width: min(1120px, 100%);
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 34px auto 0;
  border-radius: 999px;
  color: #fff;
  background: rgba(19, 117, 70, 0.72);
  font-size: 22px;
  font-weight: 700;
  text-align: center;
}

@keyframes communityPartners {
  from {
    transform: translateX(0);
  }

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

.demo-section {
  position: relative;
  overflow: hidden;
  padding: 104px 0 96px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.76) 39%, rgba(255, 255, 255, 0) 40%),
    linear-gradient(90deg, #35bfd5 0%, #12a9cf 48%, #0788ad 100%);
}

.demo-section::before {
  content: "";
  position: absolute;
  left: -90px;
  top: 34%;
  width: 190px;
  height: 300px;
  border-radius: 0 999px 999px 0;
  background: rgba(96, 189, 121, 0.86);
  box-shadow: 0 26px 60px rgba(8, 60, 86, 0.12);
  animation: demoShapeLeft 7.4s ease-in-out infinite;
  pointer-events: none;
}

.demo-section::after {
  content: "";
  position: absolute;
  right: -54px;
  top: 70px;
  width: 126px;
  height: 262px;
  border-radius: 999px 0 0 999px;
  background: rgba(255, 200, 87, 0.92);
  box-shadow: 0 26px 60px rgba(8, 60, 86, 0.16);
  animation: demoShapeRight 6.8s ease-in-out infinite;
  pointer-events: none;
}

.demo-section__inner::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: 22px;
  width: 54px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(244, 109, 117, 0.88);
  box-shadow: 0 18px 42px rgba(8, 60, 86, 0.15);
  animation: demoShapeDot 5.8s ease-in-out infinite;
  pointer-events: none;
}

.demo-section__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(390px, 0.98fr) minmax(420px, 0.88fr);
  align-items: center;
  gap: clamp(44px, 6vw, 92px);
}

.demo-section__media {
  min-height: 520px;
  position: relative;
  display: grid;
  align-items: center;
  z-index: 1;
}

.demo-showcase {
  width: min(760px, 100%);
  position: relative;
  aspect-ratio: 1071 / 732;
}

.demo-showcase__placa {
  width: 100%;
  height: auto;
  margin-left: 0;
  opacity: 0.82;
  filter: drop-shadow(0 24px 38px rgba(8, 60, 86, 0.2));
}

.demo-showcase__video {
  position: absolute;
  left: 10.6%;
  top: 25.4%;
  z-index: 2;
  width: 84.6%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 8px solid rgba(255, 255, 255, 0.86);
  border-radius: 7px;
  background: #07183f;
  box-shadow: 0 32px 72px rgba(5, 43, 60, 0.28);
}

.demo-showcase__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.demo-section__content {
  max-width: 760px;
  position: relative;
  z-index: 2;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.74);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 28px 78px rgba(8, 60, 86, 0.22);
  backdrop-filter: blur(12px);
}

.demo-section__content .eyebrow {
  color: var(--cyan-dark);
}

.demo-section__content h2 {
  max-width: 620px;
  color: #081b42;
  font-size: clamp(25px, 2.35vw, 34px);
  font-weight: 800;
  line-height: 1.12;
}

.demo-section__content > p:not(.eyebrow) {
  max-width: 560px;
  margin: 16px 0 26px;
  color: #4f5f74;
  font-size: 16px;
  line-height: 1.55;
}

.demo-form {
  display: grid;
  gap: 16px;
}

.demo-form__grid,
.demo-form__call {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.demo-form label {
  min-width: 0;
  display: grid;
  gap: 7px;
  color: #30435b;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.demo-form input,
.demo-form textarea {
  width: 100%;
  border: 1px solid #d7e2eb;
  border-radius: 6px;
  padding: 0 15px;
  color: #16314a;
  background: #f7fbfd;
  font: inherit;
  font-size: 15px;
  font-weight: 600;
  outline: 0;
  transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.demo-form input {
  min-height: 52px;
}

.demo-form textarea {
  min-height: 96px;
  padding-top: 14px;
  resize: vertical;
}

.demo-form input:focus,
.demo-form textarea:focus {
  border-color: rgba(0, 166, 214, 0.68);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(0, 166, 214, 0.14);
}

.demo-form fieldset {
  min-width: 0;
  margin: 0;
  border: 1px solid #d7e2eb;
  border-radius: 6px;
  padding: 10px 12px 12px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.demo-form legend {
  padding: 0 6px;
  color: #30435b;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.demo-form fieldset label,
.demo-form__consent {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-transform: none;
}

.demo-form input[type="checkbox"] {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--green);
}

.demo-form__consent {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  align-items: stretch;
  gap: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(0, 166, 214, 0.22);
  border-radius: 6px;
  background: #eef9fc;
  color: #31475f;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

.demo-form__consent input {
  align-self: center;
  justify-self: start;
}

.demo-form__consent span {
  min-height: 34px;
  display: flex;
  align-items: center;
  border-left: 1px solid rgba(0, 166, 214, 0.22);
  padding-left: 14px;
}

.demo-form__submit {
  min-height: 54px;
  border: 0;
  border-radius: 6px;
  color: #fff;
  background: linear-gradient(90deg, #20b978 0%, #00a6d6 100%);
  font-size: 16px;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(0, 166, 214, 0.22);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.demo-form__submit:hover,
.demo-form__submit:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(90deg, #18a96a 0%, #008fba 100%);
  box-shadow: 0 22px 40px rgba(0, 143, 186, 0.28);
}

.demo-form__notice {
  margin-bottom: 16px;
  border-radius: 6px;
  padding: 13px 15px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.demo-form__notice--success {
  background: rgba(31, 145, 84, 0.84);
}

.demo-form__notice--error {
  background: rgba(190, 64, 82, 0.86);
}

.demo-form__trap {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@keyframes demoShapeRight {
  0%,
  100% {
    transform: translateY(0) scaleY(1);
  }

  50% {
    transform: translateY(22px) scaleY(0.96);
  }
}

@keyframes demoShapeLeft {
  0%,
  100% {
    transform: translateY(0) translateX(0);
  }

  50% {
    transform: translateY(-18px) translateX(8px);
  }
}

@keyframes demoShapeDot {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-16px) scale(1.08);
  }
}

.news {
  padding: 92px 0 84px;
  background: #f6f7f8;
}

.news__inner {
  display: grid;
  gap: 44px;
}

.news__grid {
  display: grid;
  grid-template-columns: 0.92fr 1.88fr;
  gap: 24px;
}

.news__title-card {
  min-height: 320px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 44px;
  color: #fff;
  background: linear-gradient(135deg, #60bd79 0%, #49aa68 100%);
}

.news__title-card .eyebrow {
  color: rgba(255, 255, 255, 0.78);
}

.news__title-card h2 {
  max-width: 340px;
  color: #fff;
  font-size: clamp(28px, 2.55vw, 38px);
  font-weight: 800;
  line-height: 1.12;
}

.news-card {
  min-height: 292px;
  position: relative;
  overflow: hidden;
  color: #fff;
  background: #123;
}

.news-card--featured {
  min-height: 320px;
}

.news-card__media {
  position: absolute;
  inset: 0;
  display: block;
}

.news-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  transition: transform 500ms ease;
}

.news-card:hover .news-card__media img {
  transform: scale(1.06);
}

.news-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.18) 32%, rgba(0, 0, 0, 0.76) 100%),
    linear-gradient(90deg, rgba(5, 27, 36, 0.25), transparent 54%);
}

.news-card__body {
  min-height: inherit;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.news-card--featured .news-card__body {
  padding: 30px;
}

.news-card__meta {
  position: absolute;
  top: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
  letter-spacing: 0;
}

.news-card h3 {
  max-width: 760px;
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
}

.news-card--featured h3 {
  font-size: clamp(24px, 2.35vw, 34px);
}

.news-card h3::after {
  content: "";
  width: 70px;
  height: 3px;
  display: block;
  margin-top: 14px;
  background: #6ccf82;
}

.news-card__summary {
  max-width: 660px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.5;
}

.news-card:not(.news-card--featured) {
  min-height: 292px;
}

.news-card:not(.news-card--featured) h3 {
  font-size: 19px;
}

.news-card--featured {
  grid-column: 2;
}

.news-card:not(.news-card--featured) {
  grid-column: span 1;
}

.news__grid .news-card:nth-of-type(n + 3) {
  grid-column: span 1;
}

.news__grid {
  grid-auto-flow: dense;
}

.news__grid .news-card:not(.news-card--featured) {
  grid-column: span 1;
}

.news__grid .news-card:nth-of-type(3),
.news__grid .news-card:nth-of-type(4),
.news__grid .news-card:nth-of-type(5),
.news__grid .news-card:nth-of-type(6) {
  min-height: 300px;
}

.news__grid {
  grid-template-areas:
    "title featured featured"
    "small1 small2 small3"
    "small4 small4 small4";
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.news__title-card {
  grid-area: title;
}

.news-card--featured {
  grid-area: featured;
}

.news__grid .news-card:nth-of-type(2) { grid-area: small1; }
.news__grid .news-card:nth-of-type(3) { grid-area: small2; }
.news__grid .news-card:nth-of-type(4) { grid-area: small3; }
.news__grid .news-card:nth-of-type(5) { grid-area: small4; min-height: 280px; }

.news__cta {
  width: min(320px, 100%);
  min-height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  border-radius: 999px;
  color: #fff;
  background: #72c982;
  font-size: 22px;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease;
}

.news__cta:hover {
  transform: translateY(-1px);
  background: #53b96c;
}

.news-page,
.news-detail {
  padding: 142px 0 84px;
  background: #f6f7f8;
}

.news-page__heading {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.news-page__heading h1,
.news-detail h1 {
  margin: 0;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
}

.news-page__grid {
  display: grid;
  gap: 22px;
}

.news-list-card {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.news-list-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: #0b1526;
}

.news-list-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.12) 58%, rgba(0, 0, 0, 0.16) 100%);
}

.news-list-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  display: block;
  transition: transform 500ms ease;
}

.news-list-card:hover img {
  transform: scale(1.04);
}

.news-list-card__media .news-card__meta {
  top: 18px;
  left: 18px;
  right: 18px;
}

.news-list-card h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 2.2vw, 30px);
  font-weight: 500;
  line-height: 1.18;
}

.news-list-card p:last-child,
.news-detail p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
}

.news-detail__inner {
  width: min(1140px, 100%);
}

.news-detail__back {
  display: inline-flex;
  margin-bottom: 22px;
  color: var(--cyan-dark);
  font-weight: 800;
}

.news-detail__hero {
  overflow: hidden;
  background: #fff;
}

.news-detail__media {
  position: relative;
  aspect-ratio: 2560 / 1640;
  min-height: 360px;
  overflow: hidden;
  background: #0b1526;
}

.news-detail__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.news-detail__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 15, 27, 0.08) 0%, rgba(5, 15, 27, 0.08) 58%, rgba(5, 15, 27, 0.56) 100%);
}

.news-detail__meta {
  position: absolute;
  left: 44px;
  bottom: 30px;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}

.news-detail__hero > div:not(.news-detail__media) {
  padding: 38px 60px 32px;
}

.news-detail__hero h1 {
  max-width: 980px;
  margin: 0;
  color: #020817;
  font-size: clamp(34px, 3vw, 42px);
  font-weight: 400;
  line-height: 1.12;
}

.news-detail__content {
  width: min(980px, 100%);
  padding: 0 60px;
}

.news-detail__content p,
.news-detail__content li {
  color: #3e4857;
  font-size: 17px;
  line-height: 1.8;
}

.news-detail__intro {
  color: #526071;
  margin: 0 0 58px;
  font-size: 16px;
  font-style: italic;
  line-height: 1.85;
}

.news-detail__content h2 {
  margin: 62px 0 18px;
  font-size: 18px;
  font-weight: 900;
}

.news-detail__content ul {
  display: grid;
  gap: 20px;
  margin: 24px 0 44px;
  padding-left: 28px;
}

.news-detail__content blockquote {
  margin: 46px 0;
  padding: 28px 32px;
  border-left: 5px solid var(--green);
  background: #fff;
  border-radius: 0 8px 8px 0;
}

.news-detail__content blockquote p {
  margin-top: 0;
  font-style: italic;
}

.news-detail__content cite {
  color: #2f3d55;
  font-style: normal;
  font-weight: 900;
}

.news-detail__share {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 48px 0 56px;
  color: #7a8494;
  flex-wrap: wrap;
}

.news-detail__share a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: transparent;
  transition: transform 180ms ease, background 180ms ease;
}

.news-detail__share a:hover {
  transform: translateY(-1px);
}

.news-detail__share img {
  width: 42px;
  height: 42px;
}

.privacy-page {
  padding: 142px 0 84px;
  background: #f6f7f8;
}

.privacy-page__inner {
  width: min(1040px, 100%);
}

.privacy-page__header {
  margin-bottom: 36px;
}

.privacy-page__header h1 {
  max-width: 860px;
  margin: 0;
  color: #07183f;
  font-size: clamp(38px, 5vw, 62px);
  line-height: 1.02;
}

.privacy-page__header p:last-child {
  max-width: 820px;
  margin: 18px 0 0;
  color: #526071;
  font-size: 18px;
  line-height: 1.7;
}

.privacy-page__content {
  display: grid;
  gap: 18px;
}

.privacy-page__section {
  background: #fff;
  border: 1px solid rgba(20, 49, 79, 0.08);
  border-radius: 8px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 18px 48px rgba(8, 58, 92, 0.08);
}

.privacy-page__section h2 {
  margin: 0 0 18px;
  color: #14314f;
  font-size: 22px;
  font-weight: 900;
}

.privacy-page__section h3 {
  margin: 0 0 8px;
  color: #14314f;
  font-size: 16px;
  font-weight: 900;
}

.privacy-page__section p,
.privacy-page__section li,
.privacy-page__section address {
  color: #3e4857;
  font-size: 16px;
  line-height: 1.8;
}

.privacy-page__section p,
.privacy-page__section address {
  margin: 0 0 16px;
}

.privacy-page__section p:last-child,
.privacy-page__section address:last-child {
  margin-bottom: 0;
}

.privacy-page__section ul,
.privacy-page__section ol {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
  padding-left: 22px;
}

.privacy-page__section a {
  color: var(--cyan-dark);
  font-weight: 800;
}

.privacy-page__note {
  margin: 18px 0;
  padding: 18px 20px;
  border-left: 4px solid var(--green);
  border-radius: 8px;
  background: #eef8fb;
}

.news-next {
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.news-next h2 {
  margin-bottom: 22px;
  font-size: 24px;
}

.news-next__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.news-next-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(20, 33, 61, 0.08);
}

.news-next-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.news-next-card h3 {
  padding: 16px;
  font-size: 17px;
  line-height: 1.35;
}

.site-footer {
  position: relative;
  padding: 58px 0 22px;
  color: #506174;
  background:
    linear-gradient(180deg, #ffffff 0%, #f4f8fb 100%);
  border-top: 1px solid rgba(8, 171, 214, 0.16);
}

.site-footer__inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.25fr) minmax(160px, 0.7fr) minmax(220px, 0.85fr);
  align-items: start;
  gap: clamp(34px, 6vw, 92px);
  font-size: 14px;
}

.site-footer__brand {
  max-width: 430px;
}

.site-footer__brand img {
  width: 174px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}

.site-footer__brand p {
  max-width: 390px;
  margin: 0;
  color: #637184;
  font-size: 17px;
  line-height: 1.55;
}

.site-footer__nav,
.site-footer__contact {
  display: grid;
  gap: 12px;
}

.site-footer__nav span,
.site-footer__contact > span {
  margin-bottom: 4px;
  color: #07183f;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.site-footer__nav a,
.site-footer__bottom a {
  color: #5c6979;
  font-weight: 700;
}

.site-footer__nav a:hover,
.site-footer__nav a:focus-visible,
.site-footer__bottom a:hover,
.site-footer__bottom a:focus-visible {
  color: var(--cyan);
}

.site-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.site-footer__social a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(8, 171, 214, 0.2);
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 10px 26px rgba(8, 58, 92, 0.08);
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.site-footer__social a:hover,
.site-footer__social a:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(8, 171, 214, 0.52);
  box-shadow: 0 14px 30px rgba(8, 58, 92, 0.14);
}

.site-footer__social img {
  width: 18px;
  height: 18px;
}

.site-footer__demo {
  width: fit-content;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  background: #5cc875;
  font-weight: 800;
  box-shadow: 0 14px 30px rgba(92, 200, 117, 0.26);
}

.site-footer__demo:hover,
.site-footer__demo:focus-visible {
  transform: translateY(-1px);
  background: #4db866;
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 42px;
  padding-top: 18px;
  border-top: 1px solid rgba(8, 171, 214, 0.14);
  color: #718093;
  font-size: 13px;
}

.site-footer__legal-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 16px;
}

@media (max-width: 1400px) {
  .header__inner {
    grid-template-columns: auto auto;
    min-height: 74px;
    padding: 12px clamp(18px, 4.5vw, 28px);
    gap: 14px;
  }

  .header__toggle {
    display: grid;
    justify-self: end;
    transition: background 160ms ease, border-color 160ms ease;
  }

  .site-header.is-open .header__toggle {
    border-color: rgba(0, 127, 168, 0.24);
    background: #eef9fc;
  }

  .header__menu {
    grid-column: 1 / -1;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 14px;
    max-height: 0;
    overflow: hidden;
    visibility: hidden;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: none;
    transition: max-height 240ms ease, padding 240ms ease, box-shadow 240ms ease, visibility 240ms ease;
  }

  .site-header.is-open .header__menu {
    max-height: min(760px, calc(100vh - 102px));
    padding: 14px;
    overflow-y: auto;
    visibility: visible;
    box-shadow: 0 18px 44px rgba(20, 33, 61, 0.14);
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 6px;
    border-radius: 8px;
    padding: 4px;
    background: #f3f7fa;
  }

  .main-nav a {
    min-height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 0;
    border-radius: 6px;
    padding: 0 10px;
    color: #4f5e70;
    background: transparent;
    text-align: center;
  }

  .main-nav a:hover,
  .main-nav a:focus-visible {
    color: var(--cyan-dark);
    background: #fff;
  }

  .main-nav a:nth-child(2) {
    color: #fff;
    background: var(--cyan);
  }

  .header__actions {
    display: grid;
    grid-template-columns: auto minmax(150px, 1fr) minmax(120px, 0.8fr);
    align-items: stretch;
    gap: 10px;
  }

  .header__actions .btn {
    min-height: 46px;
  }

  .language-switcher__summary {
    width: 100%;
  }

  .language-switcher__menu {
    left: 0;
    right: auto;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero__content {
    max-width: 760px;
  }

  .hero__visual {
    display: none;
  }

  .hero-art {
    min-height: 520px;
    width: min(720px, 100%);
    margin: 0 auto;
  }

  .growth__grid {
    width: 100%;
  }

  .growth__decor {
    right: clamp(8px, 2vw, 22px);
    width: clamp(94px, 13vw, 150px);
    height: clamp(117px, 16.2vw, 186px);
    opacity: 0.82;
    transform: translateY(-36px);
  }

  .growth__decor-bar {
    background: #117197;
  }

  .growth__decor-circle {
    background-color: #b8ecf4;
    background-image: none;
  }

  .growth__decor-circle::after {
    content: "";
    position: absolute;
    inset: 28%;
    display: block;
    background: #117197;
    mask-image: url("../img/icons/icono1.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/icons/icono1.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
  }

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

  .demo-section__inner {
    grid-template-columns: 1fr;
  }

  .demo-section__media,
  .demo-section__content {
    width: min(760px, 100%);
    margin: 0 auto;
  }

  .demo-section::after {
    height: 190px;
  }

  .demo-section::before {
    height: 220px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: static;
  }

  .hero {
    padding: 34px 0 30px;
  }

  .hero__grid {
    min-height: 0;
    display: block;
  }

  .hero__content {
    max-width: 100%;
  }

  .hero h1 {
    font-size: clamp(38px, 10vw, 48px);
    line-height: 1.04;
  }

  .hero__copy {
    margin: 20px 0 22px;
    font-size: 18px;
    line-height: 1.35;
  }

  .hero__actions {
    margin-top: 0;
  }

  .hero__logos {
    margin-top: 24px;
  }

  .growth {
    overflow: hidden;
  }

  .growth__decor {
    right: 4px;
    width: min(64px, 16vw);
    height: min(80px, 20vw);
    opacity: 0.72;
    transform: translateY(-8px);
  }

  .growth__decor-bar {
    background: #117197;
  }

  .growth__decor-circle {
    background-color: #b8ecf4;
    background-image: none;
  }

  .growth__decor-circle::after {
    content: "";
    position: absolute;
    inset: 28%;
    display: block;
    background: #117197;
    mask-image: url("../img/icons/icono1.png");
    mask-repeat: no-repeat;
    mask-position: center;
    mask-size: contain;
    -webkit-mask-image: url("../img/icons/icono1.png");
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    -webkit-mask-size: contain;
  }

  .growth.is-visible .growth__decor {
    transform: translateY(0);
  }

  .growth__grid {
    width: 100%;
    gap: 24px;
    text-align: center;
  }

  .growth__eyebrow,
  .growth__copy {
    text-align: center;
  }

  .growth__title {
    position: relative;
    z-index: 2;
    font-size: clamp(30px, 8vw, 38px);
    line-height: 1.18;
  }

  .growth__copy {
    position: relative;
    z-index: 2;
    font-size: 18px;
    line-height: 1.5;
  }

  .brand img {
    width: 126px;
  }

  .main-nav {
    grid-template-columns: 1fr;
  }

  .main-nav a {
    justify-content: flex-start;
    padding: 0 14px;
  }

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

  .header__actions .btn {
    width: 100%;
  }

  .language-switcher {
    grid-column: 1 / -1;
  }

  .language-switcher__summary {
    justify-content: space-between;
  }

  .language-switcher__menu {
    width: 100%;
  }

  .hero-art {
    position: relative;
    min-height: 610px;
    isolation: isolate;
    /* asegurar que la visual ocupe la parte derecha y se alinee al final */
    justify-self: end;
  }
  .hero-art__base {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: auto;
    min-width: 420px;
    max-width: 65%;
    object-fit: cover;
    filter: drop-shadow(var(--shadow));
    z-index: 1;
  }

  /* Asegurar que el área visual derecha cubra toda la altura del hero */
  .hero-art__visual-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    pointer-events: none;
  }

  /* Ocultar artboard.png si queda referenciado */
  .hero-art__base[src$="artboard.png"] { display: none; }

  /* Imagenes absolutas dentro de la visual */
  .hero-art__img {
    position: absolute;
    display: block;
    object-fit: cover;
    pointer-events: none;
    z-index: 3;
    max-width: 360px; /* seguridad para que ninguna imagen crezca desproporcionada */
    width: auto;
    height: auto;
  }

  /* Personas: usar anchos en px para controlar tamaño absoluto y evitar que queden gigantes */
  .hero-art__person {
    position: absolute;
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    z-index: 4;
    /* tamaño por defecto */
    width: 220px;
    height: 320px;
  }

  .hero-art__person--01 { width: 240px; height: 340px; right: 6%; bottom: 6%; transform: translateY(8%); }
  .hero-art__person--02 { width: 200px; height: 300px; right: 12%; bottom: 18%; transform: translateY(6%); }
  .hero-art__person--03 { width: 180px; height: 260px; right: 18%; bottom: 36%; transform: translateY(4%); }
  .hero-art__person--04 { width: 140px; height: 220px; right: 26%; bottom: 14%; transform: translateY(6%); }

  /* Colocar un fondo circular detrás de cada persona; hacemos un pseudo-elemento mediante un wrapper visual hack
     añadimos un sombra suave para separarlas del fondo */
  .hero-art__person-slide--01::after,
  .hero-art__person-slide--02::after,
  .hero-art__person-slide--03::after,
  .hero-art__person-slide--04::after {
    content: "";
    position: absolute;
    left: -8%;
    top: -8%;
    width: 116%;
    height: 116%;
    border-radius: 50%;
    background: rgba(255,255,255,0.85);
    z-index: -1;
  }

  /* Iconos: posiciones aproximadas sobre la visual derecha */
  .hero-art__icon--plus { width: 54px; right: 38%; top: 10%; z-index: 5; }
  .hero-art__icon--smile { width: 68px; right: 30%; top: 6%; z-index: 5; }
  .hero-art__icon--like { width: 48px; right: 16%; top: 34%; z-index: 6; }
  .hero-art__icon--cloud { width: 100px; right: 8%; top: 12%; z-index: 4; }
  .hero-art__icon--mobile { width: 48px; right: 22%; top: 62%; z-index: 6; }
  .hero-art__yam { width: 220px; right: 4%; top: 20%; z-index: 2; opacity: 0.95; }

  /* Ajustes responsivos: reducir tamaños en pantallas pequeñas */
  @media (max-width: 992px) {
    .hero-art__person--01 { width: 160px; height: 220px; right: 8%; bottom: 6%; }
    .hero-art__person--02 { width: 140px; height: 200px; right: 12%; bottom: 16%; }
    .hero-art__person--03 { width: 130px; height: 180px; right: 18%; bottom: 32%; }
    .hero-art__person--04 { width: 110px; height: 150px; right: 24%; bottom: 12%; }
    .hero-art__icon--plus, .hero-art__icon--smile, .hero-art__icon--like, .hero-art__icon--cloud, .hero-art__icon--mobile { width: auto; }
    .hero-art__yam { display: none; }
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero__logos {
    margin-top: 26px;
  }

  .hero-art {
    min-height: 360px;
  }

  .hero-art__base {
    min-height: 330px;
  }

  .hero-art__person--01,
  .hero-art__icon--cloud,
  .hero-art__icon--mobile {
    display: none;
  }

  .hero-art__person--02 {
    left: 34%;
    top: 54%;
    width: 22%;
  }

  .hero-art__person--03 {
    left: 58%;
    width: 16%;
  }

  .hero-art__person--04 {
    left: 78%;
    width: 13%;
  }

  .advantages,
  .growth,
  .modules,
  .integrations {
    padding: 56px 0;
  }

  .advantages__grid,
  .modules__grid,
  .integrations__grid,
  .growth__grid {
    grid-template-columns: 1fr;
  }

  .modules-app {
    margin-top: 48px;
    gap: 38px;
  }

  .modules-app__intro {
    gap: 18px;
  }

  .modules-app__intro-icon {
    width: 92px;
  }

  .modules-app__download {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .modules-app__download p {
    font-size: 20px;
  }

  .modules-app__download-badges {
    justify-content: center;
  }

  .modules-app__download-badge img {
    width: 220px;
  }

  .js-ready .modules h2,
  .js-ready .modules .module-card,
  .js-ready .modules .modules-app__intro,
  .js-ready .modules .modules-app__download {
    opacity: 1;
  }

  .community {
    padding: 74px 0 54px;
  }

  .community__title {
    flex-direction: column;
    gap: 8px;
    margin-bottom: 58px;
    font-size: 32px;
  }

  .community__stats {
    grid-template-columns: 1fr;
    gap: 34px;
    margin-bottom: 54px;
  }

  .community-testimonials__slides {
    min-height: 0;
  }

  .community-testimonials__slide {
    position: static;
    display: none;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .community-testimonials__slide.is-active {
    display: grid;
  }

  .community-slider__btn {
    top: auto;
    bottom: -58px;
    background: rgba(255, 255, 255, 0.3);
  }

  .community-slider__btn--prev {
    left: calc(50% - 54px);
  }

  .community-slider__btn--next {
    right: calc(50% - 54px);
  }

  .community-partners {
    margin-top: 110px;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .community-partners__track span {
    width: 210px;
  }

  .community__cta {
    min-height: 50px;
    padding: 0 18px;
    font-size: 18px;
  }

  .news {
    padding: 64px 0;
  }

  .demo-section {
    padding: 68px 0;
  }

  .demo-section__media {
    min-height: 0;
  }

  .demo-showcase {
    width: min(560px, 100%);
    margin: 0 auto;
  }

  .demo-showcase__video {
    border-width: 6px;
  }

  .demo-section__content {
    padding: 24px;
  }

  .demo-section__content h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .demo-form__grid,
  .demo-form__call {
    grid-template-columns: 1fr;
  }

  .news__grid {
    grid-template-areas:
      "title"
      "featured"
      "small1"
      "small2"
      "small3"
      "small4";
    grid-template-columns: 1fr;
  }

  .news__title-card,
  .news-card,
  .news-card--featured {
    min-height: 280px;
  }

  .news__title-card {
    padding: 34px;
  }

  .news-card--featured h3,
  .news-card h3 {
    font-size: 24px;
  }

  .news-page,
  .news-detail,
  .privacy-page {
    padding: 92px 0 58px;
  }

  .news-list-card {
    grid-template-columns: 1fr;
  }

  .news-detail__hero > div {
    padding: 26px 24px 30px;
  }

  .news-detail__media,
  .news-detail__image {
    height: 280px;
  }

  .news-detail__meta {
    left: 24px;
    bottom: 24px;
  }

  .news-detail__hero h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .news-detail__content {
    padding: 32px 24px 0;
  }

  .privacy-page__header h1 {
    font-size: clamp(30px, 9vw, 38px);
  }

  .news-next__grid {
    grid-template-columns: 1fr;
  }

  .growth__grid {
    gap: 16px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__brand {
    max-width: 100%;
  }

  .site-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .site-footer__legal-links {
    justify-content: flex-start;
  }
}

@media (max-width: 480px) {
  .main-nav {
    grid-template-columns: 1fr;
  }

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

  .hero {
    padding: 28px 0 28px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .hero__copy {
    font-size: 17px;
  }

  .hero__logos {
    margin-top: 20px;
  }

  .hero-art {
    min-height: 0;
  }

  .hero-art__base {
    min-height: 0;
  }
}

.admin-leads {
  background: #eef8fb;
  min-height: 78vh;
  padding: 148px 0 72px;
}

.admin-leads__inner {
  display: grid;
  gap: 28px;
}

.admin-leads__header {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
}

.admin-leads__header h1 {
  color: #14314f;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1;
  margin: 0 0 10px;
}

.admin-leads__header p:last-child {
  color: #53687d;
  margin: 0;
}

.admin-leads__logout,
.admin-leads__login button,
.admin-leads__table button {
  align-items: center;
  background: #34bfd0;
  border: 0;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  display: inline-flex;
  font-weight: 800;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  text-decoration: none;
}

.admin-leads__login {
  background: #fff;
  border: 1px solid rgba(20, 49, 79, 0.1);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(20, 49, 79, 0.12);
  display: grid;
  gap: 16px;
  justify-self: center;
  margin-top: 6px;
  max-width: 440px;
  padding: 26px;
  width: 100%;
}

.admin-leads__login h2 {
  color: #14314f;
  margin: 0;
}

.admin-leads__login label {
  display: grid;
  gap: 8px;
}

.admin-leads__login span {
  color: #34495f;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.admin-leads__login input {
  border: 1px solid #c8d9e6;
  border-radius: 8px;
  color: #14314f;
  font: inherit;
  min-height: 48px;
  padding: 0 14px;
}

.admin-leads__notice {
  border-radius: 8px;
  font-weight: 800;
  padding: 12px 14px;
}

.admin-leads__notice--error {
  background: #cc596b;
  color: #fff;
}

.admin-leads__stats {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.admin-leads__stats > div {
  background: linear-gradient(145deg, #fff 0%, #f8fcfe 100%);
  border: 1px solid rgba(20, 49, 79, 0.07);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(20, 49, 79, 0.08);
  overflow: hidden;
  padding: 24px 64px 22px 22px;
  position: relative;
}

.admin-leads__stats > div::before {
  background: #34bfd0;
  content: "";
  height: 4px;
  inset: 0 0 auto;
  position: absolute;
}

.admin-leads__stats > div::after {
  background: rgba(52, 191, 208, 0.1);
  border-radius: 999px;
  content: "";
  height: 74px;
  position: absolute;
  right: -18px;
  top: 18px;
  width: 74px;
}

.admin-leads__stats > div:nth-child(2)::before {
  background: #72c878;
}

.admin-leads__stats > div:nth-child(2)::after {
  background: rgba(114, 200, 120, 0.13);
}

.admin-leads__stats > div:nth-child(3)::before {
  background: #9fb4c1;
}

.admin-leads__stats > div:nth-child(3)::after {
  background: rgba(159, 180, 193, 0.17);
}

.admin-leads__stats > div:nth-child(4)::before {
  background: #c2a45d;
}

.admin-leads__stats > div:nth-child(4)::after {
  background: rgba(194, 164, 93, 0.16);
}

.admin-leads__stat-icon {
  align-items: center;
  color: rgba(20, 49, 79, 0.34);
  display: inline-flex;
  height: 58px;
  justify-content: center;
  position: absolute;
  right: 16px;
  top: 24px;
  width: 58px;
  z-index: 1;
}

.admin-leads__stat-icon svg {
  fill: none;
  height: 44px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
  width: 44px;
}

.admin-leads__empty {
  background: #fff;
  border: 1px solid rgba(20, 49, 79, 0.08);
  border-radius: 8px;
  padding: 18px;
}

.admin-leads__stats strong {
  color: #14314f;
  display: block;
  font-size: 40px;
  line-height: 1;
  margin-bottom: 6px;
}

.admin-leads__stats span {
  color: #34495f;
  display: block;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-leads__table-wrap {
  background: #fff;
  border: 1px solid rgba(20, 49, 79, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 55px rgba(20, 49, 79, 0.1);
  overflow-x: auto;
}

.admin-leads__table {
  border-collapse: collapse;
  min-width: 1160px;
  width: 100%;
}

.admin-leads__table th,
.admin-leads__table td {
  border-bottom: 1px solid #e2edf3;
  padding: 16px;
  text-align: left;
  vertical-align: top;
}

.admin-leads__table th {
  background: #f7fbfd;
  color: #34495f;
  font-size: 12px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.admin-leads__table tr.is-new {
  background: #f8fdff;
}

.admin-leads__table td strong,
.admin-leads__table td a,
.admin-leads__table td span {
  display: block;
}

.admin-leads__table td strong {
  color: #14314f;
  margin-bottom: 4px;
}

.admin-leads__table td a {
  color: #0f8fa3;
  text-decoration: none;
}

.admin-leads__table td span {
  color: #53687d;
  margin-top: 4px;
}

.admin-leads__message {
  color: #34495f;
  max-width: 340px;
  white-space: normal;
}

.admin-leads__status {
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  padding: 7px 11px;
  text-transform: uppercase;
}

.admin-leads__status--new {
  background: #dbf6fa;
  color: #0d8397;
}

.admin-leads__status--seen {
  background: #edf1f4;
  color: #647587;
}

.admin-leads__seen-date {
  color: #647587;
  font-size: 13px;
}
.admin-leads__table td .admin-leads__email {
  align-items: center;
  border-radius: 999px;
  display: inline-flex;
  font-size: 12px;
  font-weight: 900;
  justify-content: center;
  line-height: 1;
  min-height: 31px;
  min-width: 88px;
  padding: 0 14px;
  text-align: center;
  text-transform: uppercase;
}

.admin-leads__email--sent {
  background: #e4f8e9;
  color: #287d38;
}

.admin-leads__email--failed {
  background: #ffe7eb;
  color: #b2374b;
}

.admin-leads__email--pending {
  background: #edf1f4;
  color: #647587;
}

.admin-leads__table td .admin-leads__email-date {
  color: #647587;
  font-size: 12px;
  margin-top: 6px;
}

.admin-leads__actions {
  min-width: 132px;
}

.admin-leads__actions form + form,
.admin-leads__actions .admin-leads__seen-date + form {
  margin-top: 8px;
}

.admin-leads__table .admin-leads__archive-button {
  background: #9fb4c1;
  min-height: 34px;
  padding: 0 12px;
}

.admin-leads__table .admin-leads__archive-button:hover,
.admin-leads__table .admin-leads__archive-button:focus-visible {
  background: #7f97a7;
}

@media (max-width: 720px) {
  .admin-leads {
    padding: 118px 0 52px;
  }

  .admin-leads__header {
    display: grid;
  }

  .admin-leads__stats {
    grid-template-columns: 1fr;
  }
}
