:root {
  --landing-brand: #ff5300;
  --landing-brand-dark: #d84600;
  --landing-ink: #171a1f;
  --landing-ink-soft: #404651;
  --landing-muted: #6f7682;
  --landing-line: rgba(23, 26, 31, 0.08);
  --landing-surface: #ffffff;
  --landing-surface-soft: #f6f7f9;
  --landing-dark: #0f1115;
  --landing-dark-soft: #181c22;
  --landing-shadow: 0 18px 44px rgba(12, 18, 28, 0.14);
  --landing-radius-lg: 32px;
  --landing-radius-md: 22px;
  --landing-radius-sm: 16px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body.landing-v2-body {
  margin: 0;
  font-family: "Rubik", sans-serif;
  color: var(--landing-ink);
  background: var(--landing-surface);
}

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

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

.landing-v2 {
  overflow-x: clip;
}

.landing-shell {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
}

.landing-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(18px);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(23, 26, 31, 0.06);
}

.landing-header__inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.landing-header__brand img {
  width: 154px;
  height: auto;
}

.landing-header__nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.landing-header__countries {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: 6px;
  padding-left: 14px;
  border-left: 1px solid rgba(23, 26, 31, 0.14);
  pointer-events: none;
  user-select: none;
}

.landing-header__country-flag {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(23, 26, 31, 0.12);
  flex: 0 0 auto;
  pointer-events: none;
}

.landing-mobile-nav__countries {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(23, 26, 31, 0.08);
  pointer-events: none;
  user-select: none;
}

.landing-mobile-nav__countries .landing-header__country-flag {
  width: 26px;
  height: 26px;
}

.landing-header__link {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--landing-ink);
  transition: color 0.2s ease;
}

.landing-header__link:hover {
  color: var(--landing-brand);
}

.landing-header__link--active {
  padding: 9px 18px;
  border-radius: 4px;
  background: linear-gradient(180deg, #ff7c33 0%, var(--landing-brand) 100%);
  color: #fff;
  box-shadow: 0 8px 18px rgba(255, 83, 0, 0.18);
}

.landing-header__link--active:hover {
  color: #fff;
}

.landing-header__username {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--landing-ink-soft);
}

.landing-header__menu-button {
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  cursor: pointer;
}

.landing-header__menu-button span {
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: var(--landing-ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.landing-mobile-nav {
  display: none;
  padding: 0 20px 20px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid rgba(23, 26, 31, 0.06);
}

.landing-mobile-nav__link {
  display: block;
  padding: 14px 0;
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-family: "Montserrat", sans-serif;
  border-bottom: 1px solid rgba(23, 26, 31, 0.08);
}

.landing-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 10px 26px;
  border: 1px solid #e6653b;
  border-radius: 4px;
  background: var(--landing-brand);
  color: #fff;
  font-family: "Rubik", sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease, color 0.2s ease;
}

.landing-button:hover {
  background: var(--landing-brand-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(255, 83, 0, 0.22);
}

.landing-button--secondary {
  background: #1a1c22;
  border-color: #1a1c22;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

.landing-button--secondary:hover {
  background: #0f1115;
  box-shadow: 0 6px 14px rgba(20, 25, 33, 0.22);
}

.landing-button--full {
  width: 100%;
  margin-top: 20px;
}

.landing-section {
  position: relative;
  padding: 88px 0;
}

.landing-section.landing-section--flush {
  padding: 0;
}

.landing-section--light {
  background: linear-gradient(180deg, #ffffff 0%, #fafbfc 100%);
}

.landing-section--dark {
  color: #fff;
  background: linear-gradient(180deg, #111418 0%, #090b0e 100%);
}

.landing-eyebrow {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--landing-brand);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.section-heading {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-bottom: 42px;
}

.section-heading--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading--compact {
  margin-bottom: 28px;
}

.section-heading--light,
.section-heading--light h2,
.section-heading--light p {
  color: #fff;
}

.section-heading h2,
.hero-section h1,
.split-section__copy h2,
.closing-section__copy h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.section-heading p,
.hero-section p,
.split-section__copy p,
.workflow-card p,
.testimonial-card p,
.feature-card p,
.icon-stat p,
.platform-pill p,
.metric-ring-card p,
.metric-text-card p,
.dark-mini-card span,
.modular-section p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.72;
  color: var(--landing-ink-soft);
}

.landing-section--dark .feature-card p,
.landing-section--dark .split-section__copy p,
.landing-section--dark .metric-ring-card p,
.landing-section--dark .metric-text-card p,
.landing-section--dark .dark-mini-card span,
.landing-section--dark .section-heading p {
  color: rgba(255, 255, 255, 0.8);
}

.hero-section {
  min-height: 586px;
  min-height: clamp(410px, 40.7vw, 640px);
  display: flex;
  align-items: stretch;
}

.hero-section__bg,
.quality-section__bg,
.issue-section__bg,
.bot-section__bg,
.platform-section__bg,
.impact-section__bg,
.modular-section__bg,
.support-section__bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-section__bg::after,
.quality-section__bg::after,
.issue-section__bg::after,
.bot-section__bg::after,
.platform-section__bg::after,
.impact-section__bg::after,
.modular-section__bg::after,
.support-section__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero-section__bg::after {
  background:
    linear-gradient(90deg, rgba(11, 14, 20, 0.72) 0%, rgba(11, 14, 20, 0.55) 36%, rgba(11, 14, 20, 0.25) 70%, rgba(11, 14, 20, 0.1) 100%);
}

.hero-section__devices {
  position: static;
  z-index: 1;
  top: auto;
  right: auto;
  transform: none;
  flex: 0 0 auto;
  width: clamp(300px, 36vw, 520px);
  max-width: 46%;
  height: auto;
  max-height: none;
  object-fit: contain;
  pointer-events: none;
  user-select: none;
  filter: drop-shadow(0 22px 40px rgba(0, 0, 0, 0.4));
}

.quality-section__bg::after {
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.45) 0%,
    rgba(255, 255, 255, 0.2) 55%,
    rgba(255, 255, 255, 0) 100%
  );
}

.issue-section__bg::after {
  background: linear-gradient(90deg, rgba(7, 8, 11, 0.22) 0%, rgba(7, 8, 11, 0.68) 48%, rgba(7, 8, 11, 0.9) 100%);
}

.bot-section__bg::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 1) 40%, rgba(255, 255, 255, 0.72) 58%, rgba(255, 255, 255, 0.06) 82%, rgba(255, 255, 255, 0) 100%);
}

.bot-section__bg img {
  object-position: right center;
}

@media (min-width: 721px) {
  .bot-section__bg {
    background: url('../images/web/Image%20IAOnstage%20v2.png') right center / auto 100% no-repeat;
  }

  .bot-section__bg picture,
  .bot-section__bg img {
    display: none;
  }
}

.platform-section__bg::after {
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72) 0%, rgba(255, 255, 255, 0.48) 38%, rgba(255, 255, 255, 0.08) 100%);
}

.modular-section__bg::after {
  background: none;
}

.impact-section__bg::after,
.support-section__bg::after {
  background: linear-gradient(90deg, rgba(10, 11, 14, 0.9) 0%, rgba(10, 11, 14, 0.74) 48%, rgba(10, 11, 14, 0.24) 100%);
}

.hero-section__bg img,
.quality-section__bg img,
.issue-section__bg img,
.bot-section__bg img,
.platform-section__bg img,
.impact-section__bg img,
.modular-section__bg img,
.support-section__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-section__bg picture,
.quality-section__bg picture,
.issue-section__bg picture,
.bot-section__bg picture,
.platform-section__bg picture,
.impact-section__bg picture,
.modular-section__bg picture,
.support-section__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-section__content,
.impact-section__content {
  position: relative;
  z-index: 1;
}

.landing-shell.hero-section__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.impact-section__content {
  display: flex;
  align-items: center;
  gap: 0;
}

.impact-section__left {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-right: 32px;
}

.impact-section__left h2 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-transform: none;
}

.impact-section__eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  opacity: 0.7;
  text-transform: uppercase;
}

.impact-rings {
  display: flex;
  gap: 24px;
}

.impact-section__right {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.impact-section__right .metric-text-card {
  padding: 16px 0;
}

.impact-section__divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  margin: 0;
  width: 100%;
}

.hero-section__copy-wrap {
  flex: 1;
}

.hero-section__dots {
  display: grid;
  gap: 20px;
  gap: clamp(14px, 1.4vw, 20px);
  padding-top: 78px;
  padding-top: clamp(56px, 5.4vw, 78px);
  flex: 0 0 auto;
}

.hero-section__dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb27f 0%, var(--landing-brand) 100%);
  box-shadow: 0 0 14px rgba(255, 83, 0, 0.35);
}

.hero-section__copy {
  max-width: 520px;
  padding: clamp(48px, 5.7vw, 82px) 0 clamp(42px, 5.8vw, 84px);
  color: #fff;
}

.hero-section__copy h1 span,
.hero-section__subtitle span {
  display: block;
}

.hero-section__subtitle span {
  white-space: nowrap;
}

.hero-section__copy h1 {
  font-size: 2.55rem;
  font-size: clamp(1.7rem, 3vw, 2.55rem);
  line-height: 1.12;
  font-weight: 700;
  letter-spacing: 0;
}

.hero-section__copy p.hero-section__subtitle {
  margin: 14px 0 26px;
  max-width: 560px;
  color: #f19b63;
  font-family: "Montserrat", sans-serif;
  font-size: 1.6rem;
  font-size: clamp(1.15rem, 1.85vw, 1.6rem);
  line-height: 1.18;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-section__cta {
  display: inline-block;
  width: 272px;
  width: clamp(194px, 18.95vw, 272px);
  transition: transform 0.2s ease, filter 0.2s ease;
}

.hero-section__cta:hover {
  transform: translateY(-1px) scale(1.01);
  filter: drop-shadow(0 16px 26px rgba(255, 83, 0, 0.24));
}

.hero-section__cta img {
  width: 100%;
  height: auto;
}

.hero-section__cta.hero-section__cta--button {
  width: auto;
  min-width: 200px;
  filter: none;
  font-size: 1.05rem;
}

.hero-section__cta.hero-section__cta--button:hover {
  transform: translateY(-1px);
  filter: none;
}

.feature-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

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

.quality-section {
  background: transparent;
  padding: 72px 0 76px;
}

.quality-section .section-heading {
  max-width: 760px;
  margin-bottom: 48px;
}

.quality-section .section-heading h2 {
  color: var(--landing-brand);
  font-size: clamp(1.55rem, 2.2vw, 1.95rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  white-space: normal;
}

.quality-section .section-heading p {
  margin-top: 18px;
  padding: 0;
  font-size: 1.1rem;
  line-height: 1.7;
}

.quality-section .feature-grid--2col {
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  gap: 20px 24px;
}

.quality-section .feature-card--inline {
  background: transparent;
  border: none;
  box-shadow: none;
  align-items: flex-start;
  padding: 0;
  gap: 14px;
}

.quality-section .feature-card h3 {
  font-size: 0.84rem;
  line-height: 1.5;
  font-weight: 400;
  margin: 0;
}

.feature-card,
.workflow-card,
.icon-stat,
.platform-pill,
.testimonial-card,
.metric-ring-card,
.metric-text-card {
  border-radius: var(--landing-radius-md);
  box-shadow: var(--landing-shadow);
}

.feature-card--inline {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 24px 22px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(23, 26, 31, 0.06);
}

.feature-card--inline img,
.icon-stat img,
.platform-pill img,
.dark-mini-card img {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.feature-card h3,
.workflow-card h3,
.icon-stat h3,
.platform-pill h3,
.testimonial-card h3,
.metric-ring-card h3,
.metric-text-card span {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 1.06rem;
  line-height: 1.3;
}

.issue-section__dots {
  position: absolute;
  left: clamp(20px, 8vw, 140px);
  top: 88px;
  z-index: 1;
  display: grid;
  gap: 20px;
}

.issue-section__dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: linear-gradient(180deg, #ffb27f 0%, var(--landing-brand) 100%);
  box-shadow: 0 0 14px rgba(255, 83, 0, 0.35);
}

.issue-section {
  padding-bottom: 0;
  min-height: 420px;
}

@media (min-width: 721px) {
  .issue-section .landing-shell {
    width: min(1200px, calc(100% - 40px));
  }
}

.issue-section__inner {
  position: relative;
  z-index: 1;
  padding-bottom: 52px;
}

.issue-section__copy {
  max-width: 580px;
  margin-left: auto;
}

.issue-section__heading {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.8rem, 3.2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--landing-brand);
}

.issue-section__heading img {
  flex: 0 0 auto;
  width: auto;
  height: 100%;
  max-height: 120px;
  object-fit: contain;
}

.issue-section__copy p {
  margin-top: 20px;
  font-size: 1.1rem;
  line-height: 1.72;
  color: rgba(255, 255, 255, 0.78);
}

.issue-highlight {
  color: #ffaa6e;
}

.issue-grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  width: 100%;
  background: #2b2f38;
  padding-inline: 60px;
}

.dark-mini-card {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px 60px;
}

.dark-mini-card::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 50%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.dark-mini-card:last-child::after {
  display: none;
}

.dark-mini-card span {
  font-size: 0.96rem;
}

.workflow-section .section-heading h2 {
  font-size: clamp(1.4rem, 2.6vw, 2.2rem);
}

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

.workflow-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 26px 22px 22px;
  background: #cacdd2;
  overflow: hidden;
  min-height: 380px;
}


.workflow-card:nth-child(1),
.workflow-card:nth-child(2),
.workflow-card:nth-child(3),
.workflow-card:nth-child(4) {
  background-size: cover;
  background-position: center;
}

.workflow-card:nth-child(1) {
  background-image: url("../images/web/obra%20Bim%204.jpg");
}

.workflow-card:nth-child(2) {
  background-image: url("../images/web/obra%20Bim%202.jpg");
}

.workflow-card:nth-child(3) {
  background-image: url("../images/web/obra%20Bim%203.jpg");
}

.workflow-card:nth-child(4) {
  background-image: url("../images/web/obra%20Bim%204.jpg");
}

.workflow-card__header {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin: -26px -22px 16px;
  padding: 16px 22px;
  background: #1a1c22;
  color: #fff;
  min-height: 80px;
}

.workflow-card__step {
  flex-shrink: 0;
  font-family: "Montserrat", sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--landing-brand);
  line-height: 1;
}

.workflow-card h3 {
  position: relative;
  z-index: 1;
  margin: 0;
}

.workflow-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 18px;
}

.workflow-card__lead {
  position: relative;
  z-index: 1;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  margin: 10px 0 8px;
  line-height: 1.4;
}

.workflow-card__sublead {
  position: relative;
  z-index: 1;
  font-size: 0.78rem;
  font-weight: 700;
  margin: 8px 0 6px;
  line-height: 1.4;
  text-align: center;
}

.workflow-card__attrs {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 12px;
  margin-top: 8px;
}

.workflow-card__attr {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
}

.workflow-card__bullets {
  position: relative;
  z-index: 1;
  list-style: none;
  padding-left: 0;
  margin: 14px 0 8px;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.7;
}

.workflow-card__bullets--light {
  font-weight: 400;
}

.workflow-card__bullets--icons li {
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
}

.workflow-card__bullets--icons li::before {
  display: none;
}

.workflow-card__split {
  position: relative;
  z-index: 1;
  flex: 1;
  margin-top: 8px;
}

.workflow-card__split .workflow-card__bullets {
  position: relative;
  z-index: 2;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  width: 75%;
}

.workflow-card__side-img {
  position: absolute !important;
  right: -55px;
  bottom: -22px;
  width: auto !important;
  height: 260px;
  max-height: none !important;
  object-fit: contain;
  object-position: bottom right;
  z-index: 1;
}

.workflow-card__bullets li {
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.workflow-card__bullets li::before {
  content: "•";
  color: var(--landing-brand);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.workflow-card__note {
  position: relative;
  z-index: 1;
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--landing-ink-soft);
  margin: 0;
}

.workflow-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  max-height: 140px;
  object-fit: contain;
  margin-top: auto;
}

.workflow-card__hero-img {
  max-height: none !important;
  height: 240px;
  width: 100% !important;
  object-fit: contain;
  margin: 14px 0 16px;
}

.workflow-card__caption {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.workflow-card__caption span {
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.4;
}

.split-section {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 36px;
  align-items: center;
}

.split-section--wide {
  min-height: 420px;
}

.split-section__copy {
  max-width: 540px;
  padding-right: 32px;
}

.split-section__copy--narrow {
  max-width: 500px;
}

.split-section__copy p {
  margin: 18px 0 0;
}

.split-section__spacer {
  min-height: 280px;
}

.bullet-list__label {
  display: block;
  margin-top: 22px;
  font-size: 1rem;
  color: var(--landing-brand);
}

.bullet-list,
.bullet-list--light {
  display: grid;
  gap: 12px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.bullet-list li,
.bullet-list--light li {
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--landing-ink-soft);
}

.bullet-list--light li {
  color: rgba(255, 255, 255, 0.84);
}

.bullet-list li::before,
.bullet-list--light li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--landing-brand);
  box-shadow: 0 0 0 6px rgba(255, 83, 0, 0.12);
}

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

.icon-stat {
  padding: 28px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid rgba(23, 26, 31, 0.08);
}

.icon-stat img {
  margin: 0 auto 16px;
}

.icon-stat h3 {
  margin-bottom: 10px;
}

.platform-pills {
  display: grid;
  gap: 14px;
  margin: 24px 0 28px;
}

.platform-pill {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 18px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(23, 26, 31, 0.08);
}

.platform-section {
  padding: 0;
  background: linear-gradient(180deg, #f5f2ef 0%, #ffffff 100%);
}

.platform-section__stage {
  position: relative;
  display: grid;
  align-items: center;
  min-height: clamp(420px, 44vw, 636px);
  overflow: hidden;
}

/* Platform cols — two side-by-side cards */
.platform-cols {
  display: flex;
  gap: 20px;
  margin: 28px 0 0;
}

.platform-section .split-section__copy h2 {
  font-size: clamp(1.3rem, 2.4vw, 2rem);
  max-width: 520px;
}

.platform-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 0;
  background: none;
  border: none;
  border-radius: 0;
}

.platform-col img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  flex-shrink: 0;
}

.platform-col h3 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.4rem);
  font-weight: 700;
  color: var(--landing-ink);
  line-height: 1.3;
}

.platform-col p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--landing-brand);
  flex: 1;
}

.impact-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.metric-ring-card,
.metric-text-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
  padding: 0;
  background: none;
  border: none;
}

.metric-ring-card img {
  width: 110px !important;
  height: 110px !important;
  max-height: none !important;
  object-fit: contain;
}

.metric-ring {
  --ring-value: 0.5turn;
  width: 124px;
  height: 124px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background:
    radial-gradient(circle at center, rgba(15, 17, 21, 0.92) 54%, transparent 55%),
    conic-gradient(var(--landing-brand) 0 var(--ring-value), rgba(255, 255, 255, 0.14) var(--ring-value) 1turn);
  display: grid;
  place-items: center;
}

.metric-ring span {
  font-family: "Montserrat", sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
}

.metric-ring--84 {
  --ring-value: 0.84turn;
}

.metric-ring--99 {
  --ring-value: 0.99turn;
}

.metric-text-card {
  display: grid;
  place-items: center;
  gap: 6px;
}

.metric-text-card strong {
  font-family: "Montserrat", sans-serif;
  font-size: 3.1rem;
  color: var(--landing-brand);
  line-height: 1;
}

.metric-text-card span {
  color: #fff;
  margin-bottom: 2px;
}

.modular-section {
  padding: 40px 0;
}

.modular-section__wrap {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.modular-section__content {
  display: flex;
  align-items: center;
  gap: 32px;
}

.modular-section__app-img {
  flex: 0 0 auto;
  width: 180px !important;
  max-height: none !important;
  object-fit: contain;
}

.modular-section__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;
}

.modular-section__body h2 {
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  margin: 0 0 12px;
  text-align: left;
}

.modular-tags {
  display: grid;
  grid-template-columns: auto auto;
  gap: 4px 16px;
  justify-content: start;
}

.modular-tags span {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  background: none;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--landing-ink);
  letter-spacing: 0.02em;
}

.modular-tags span img,
.modular-tags__icon-svg {
  width: 24px !important;
  height: 24px !important;
  max-height: none !important;
  flex-shrink: 0;
  object-fit: contain;
}

.modular-tags__icon-svg {
  display: block;
}

.modular-section__footer {
  font-size: 1.25rem !important;
  text-align: left;
  color: var(--landing-ink-soft);
  margin-top: 4px;
}

.testimonials-section {
  background: #eef0f4;
  border-top: 4px solid var(--landing-brand);
  border-bottom: 4px solid var(--landing-brand);
  padding: 112px 0 100px;
}

.testimonials-section__carousel {
  position: relative;
  margin-top: 124px;
}

.testimonials-section__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(23, 26, 31, 0.12);
  border-radius: 50%;
  background: #fff;
  color: var(--landing-ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(13, 18, 27, 0.1);
  transition: background 0.2s ease, color 0.2s ease;
}

.testimonials-section__arrow:hover {
  background: var(--landing-brand);
  color: #fff;
  border-color: var(--landing-brand);
}

.testimonials-section__arrow--prev {
  left: -8px;
}

.testimonials-section__arrow--next {
  right: -8px;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.testimonial-card {
  position: relative;
  padding: 88px 28px 30px;
  background: linear-gradient(180deg, #252b33 0%, #161a20 100%);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 6px;
  border-radius: 8px;
  overflow: visible;
}

.testimonial-card__avatar {
  position: absolute;
  top: -72px;
  left: 50%;
  transform: translateX(-50%);
  width: 144px;
  height: 144px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--landing-brand);
  background: #252b33;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.testimonial-card__avatar--mauricio img {
  object-position: 15% 28%;
  transform: scale(1.18);
}

.testimonial-card h3 {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 0;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--landing-brand);
}

.country-flag {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  object-fit: cover;
  flex: 0 0 auto;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.8);
}

.testimonial-card__role {
  display: block;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
  margin-bottom: 8px;
}

.testimonial-card > p {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 8px 0 0;
  font-style: italic;
}

.testimonial-card .testimonial-card__emphasis {
  display: block;
  margin: 14px 0;
  padding: 12px 16px;
  border-left: 3px solid var(--landing-brand);
  background: rgba(255, 255, 255, 0.08);
  font-style: normal;
  font-weight: 600;
  color: #fff;
}

.trusted-section {
  padding-top: 42px;
}

.trusted-row {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 54px;
  gap: 16px;
  align-items: center;
}

.trusted-row--marquee {
  display: block;
}

.trusted-row--marquee .trusted-row__viewport {
  overflow: hidden;
}

.trusted-row--marquee .trusted-row__track {
  justify-content: flex-start;
  flex-wrap: nowrap;
  width: max-content;
}

.trusted-row__arrow {
  width: 54px;
  height: 54px;
  border: 1px solid rgba(23, 26, 31, 0.1);
  border-radius: 50%;
  background: #fff;
  color: var(--landing-ink);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(13, 18, 27, 0.08);
  flex-shrink: 0;
}

.trusted-row__viewport {
  overflow: auto hidden;
  scrollbar-width: none;
}

.trusted-row__viewport::-webkit-scrollbar {
  display: none;
}

.trusted-row__track {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  padding: 12px 6px;
  min-width: 100%;
}

.trusted-row__track img {
  height: 64px;
  width: auto;
  flex-shrink: 0;
  object-fit: contain;
  filter: grayscale(1);
  opacity: 0.75;
  transition: opacity 0.2s;
}

.trusted-row__track img:hover {
  opacity: 1;
}

.trusted-row__text-item {
  display: inline-flex;
  align-items: center;
  height: 64px;
  padding: 4px 18px;
  border: 1px solid rgba(23, 26, 31, 0.14);
  border-radius: 4px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: var(--landing-ink-soft);
  white-space: nowrap;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.trusted-row__text-item:hover {
  opacity: 1;
}

/* Section title accent colors */
.support-section__title {
  color: var(--landing-brand);
}

.support-section {
  padding: 72px 0;
}

.trusted-section__title {
  color: var(--landing-brand);
}

.closing-section__highlight {
  display: block;
  color: var(--landing-brand);
}

.closing-section {
  position: relative;
  padding: 0;
  background-color: #13171e;
  background-image: url('../images/web/Footer%20Web.png');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
}

.closing-section__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 60px 0;
  text-align: center;
}

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

.closing-section__copy h2 {
  font-size: clamp(1.75rem, 3vw, 2.45rem);
  margin-bottom: 14px;
}

.closing-section__brand-mark {
  width: 100px;
  justify-self: end;
  opacity: 0.9;
}

.platform-more {
  margin-top: 24px;
}

.platform-more__shell {
  position: relative;
  z-index: 1;
}

.platform-more__toggle {
  gap: 10px;
  padding-inline: 18px;
  box-shadow: none;
  cursor: pointer;
}

.platform-more__plus {
  display: inline-grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.platform-more__panel {
  display: grid;
  grid-template-rows: 0fr;
  width: 100%;
  max-width: 560px;
  opacity: 0;
  transition: grid-template-rows 0.3s ease, opacity 0.3s ease, margin-top 0.3s ease;
  margin-top: 0;
}

.platform-more__panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 18px;
  margin-bottom: 28px;
}

.platform-more__toggle[aria-expanded="true"] .platform-more__plus {
  transform: rotate(45deg);
}

.platform-more__items {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.platform-more__item {
  padding: 18px 20px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(23, 26, 31, 0.08);
}

.platform-more__item h4 {
  margin: 0 0 8px;
  font-family: "Montserrat", sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--landing-ink);
}

.platform-more__item p {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--landing-ink-soft);
}

.platform-more__subtitle {
  margin: 0 0 10px;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--landing-brand) !important;
  font-weight: 600;
}

.platform-more__bullets {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}

.platform-more__bullets li {
  position: relative;
  padding-left: 16px;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--landing-ink-soft);
}

.platform-more__bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--landing-brand);
  font-size: 1rem;
  line-height: 1;
}

.platform-more__visual {
  margin-top: 12px !important;
  font-size: 0.82rem !important;
  line-height: 1.45 !important;
  color: var(--landing-muted) !important;
}

@media (max-width: 1366px) and (min-width: 981px) {
  .issue-section {
    min-height: 560px;
  }

  .issue-section__bg::after {
    background: linear-gradient(90deg,
      rgba(7, 8, 11, 0.18) 0%,
      rgba(7, 8, 11, 0.45) 45%,
      rgba(7, 8, 11, 0.82) 75%,
      rgba(7, 8, 11, 0.94) 100%
    );
  }

  .issue-section__bg img {
    object-fit: cover;
    object-position: left center;
  }

  .landing-shell.hero-section__content {
    justify-content: center;
    gap: 64px;
  }

  .hero-section__copy-wrap {
    flex: 0 0 auto;
  }

  .modular-section__bg img {
    object-position: 75% center;
  }

  .modular-section__footer {
    font-size: 1rem !important;
    max-width: 540px;
  }

  .support-section__bg img {
    object-position: 95% center;
  }

  .platform-section {
    background: #ffffff;
  }

  .platform-section__stage {
    background: url("../images/web/Image%20PlataformaOnstage.png") center bottom / cover no-repeat;
    min-height: 460px;
  }

  .platform-section__bg picture,
  .platform-section__bg img {
    display: none;
  }

  .platform-section__bg {
    background: transparent;
  }
}

@media (max-width: 1120px) {
  .feature-grid,
  .benefits-grid,
  .impact-grid,
  .workflow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonials-section__carousel {
    margin-top: 112px;
    padding: 0 12px;
  }

  .testimonials-section__arrow {
    display: grid;
    place-items: center;
  }

  .testimonials-grid {
    display: flex;
    grid-template-columns: none;
    gap: 0;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    padding: 80px 12px 16px;
    margin-top: -80px;
  }

  .testimonials-grid::-webkit-scrollbar {
    display: none;
  }

  .testimonials-grid > .testimonial-card {
    flex: 0 0 calc(100% - 80px);
    margin: 0 40px;
    scroll-snap-align: center;
  }
}

@media (max-width: 980px) {
  .landing-header__nav {
    display: none;
  }

  .landing-header__menu-button {
    display: block;
  }

  .landing-mobile-nav.is-open {
    display: block;
  }

  .landing-header__menu-button.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .landing-header__menu-button.is-open span:nth-child(2) {
    opacity: 0;
  }

  .landing-header__menu-button.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .issue-section {
    padding: 0;
    display: grid;
    background: #111418;
  }

  .issue-section__bg {
    grid-area: 1 / 1;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    min-height: 480px;
    background: url("../images/mobile/Recurso%2063Onstage.png") center top / cover no-repeat;
  }

  .issue-section__bg picture,
  .issue-section__bg img {
    display: none;
  }

  .issue-section__bg::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.76) 78%, rgba(0, 0, 0, 0.96) 100%);
  }

  .issue-section__inner {
    grid-area: 1 / 1;
    align-self: end;
    position: relative;
    z-index: 2;
    padding: 0 32px 28px;
  }

  .issue-section__copy {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
  }

  .issue-section__heading {
    display: block;
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  }

  .issue-section__heading span {
    display: block;
  }

  .issue-section__heading img {
    display: none;
  }

  .issue-section__copy p {
    text-align: center;
  }

  .issue-grid {
    flex-wrap: wrap;
  }

  .issue-grid .dark-mini-card {
    flex: 1 1 45%;
  }

  .issue-grid .dark-mini-card::after {
    top: auto;
    left: 0;
    right: 0;
    bottom: 0;
    height: 1px;
    width: auto;
  }

  .issue-grid .dark-mini-card:nth-child(odd)::after {
    display: block;
  }

  .issue-grid .dark-mini-card:nth-last-child(-n+2)::after {
    display: none;
  }

  .split-section,
  .closing-section__content {
    grid-template-columns: 1fr;
  }

  .split-section__spacer {
    min-height: 180px;
  }

  .hero-section {
    min-height: clamp(510px, 65vw, 620px);
  }

  .hero-section__devices {
    display: none;
  }

  .hero-section__bg::after,
  .issue-section__bg::after,
  .platform-section__bg::after,
  .impact-section__bg::after,
  .support-section__bg::after {
    background:
      linear-gradient(180deg, rgba(14, 17, 22, 0.12) 0%, rgba(14, 17, 22, 0.52) 100%);
  }

  .bot-section {
    padding: 0 0 44px;
    background: #fff;
  }

  .bot-section__bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 301;
    background: url("../images/mobile/Recurso%2067Onstage.png") center top / cover no-repeat;
  }

  .bot-section__bg picture,
  .bot-section__bg img {
    display: none;
  }

  .bot-section__bg::after {
    background: none;
  }

  .bot-section .split-section__copy {
    padding-top: 26px;
  }

  .bot-section .split-section__copy h2 {
    max-width: 480px;
    margin: 0 auto;
  }

  .quality-section__bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.88));
  }

  .modular-section__bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.84), rgba(255, 255, 255, 0.94));
  }

  .hero-section__copy,
  .split-section__copy {
    max-width: 100%;
  }

  .hero-section__copy {
    margin: 0 auto;
  }

  .split-section__copy {
    padding-right: 0;
  }

  .bot-section .split-section__copy,
  .platform-section .split-section__copy,
  .support-section .split-section__copy,
  .impact-section__content {
    position: relative;
    z-index: 1;
  }

  .closing-section__brand-mark {
    justify-self: start;
  }

  .platform-more__items {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .landing-shell {
    width: 100%;
  }

  .landing-header {
    background: #fff;
    backdrop-filter: none;
    border-bottom: 1px solid rgba(23, 26, 31, 0.08);
  }

  .landing-header__inner {
    min-height: 74px;
    padding: 0 20px;
  }

  .landing-header__brand img {
    width: 126px;
  }

  .landing-header__menu-button {
    width: 40px;
    height: 40px;
    border-radius: 8px;
  }

  .landing-mobile-nav {
    padding: 0 20px 20px;
  }

  .landing-mobile-nav__link {
    font-size: 0.8rem;
  }

  .landing-section {
    padding: 44px 0;
  }

  .section-heading {
    max-width: 350px;
    margin: 0 auto 28px;
    padding: 0 24px;
  }

  .section-heading h2,
  .hero-section h1,
  .split-section__copy h2,
  .closing-section__copy h2 {
    font-size: clamp(1.95rem, 8.6vw, 2.55rem);
    line-height: 1.08;
  }

  .split-section {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .split-section__copy {
    max-width: none;
    padding: 28px 24px 0;
    text-align: center;
  }

  .split-section__copy p {
    margin-top: 14px;
    font-size: 0.94rem;
    line-height: 1.68;
  }

  .split-section__spacer {
    display: none;
  }

  .hero-section {
    min-height: 0;
    display: grid;
    background: #111418;
  }

  .hero-section__bg {
    grid-area: 1 / 1;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 402 / 460;
    background: url("../../images/puente.jpg") center center / cover no-repeat;
  }

  .hero-section__bg picture,
  .hero-section__bg img {
    display: none;
  }

  .hero-section__bg::after {
    background: linear-gradient(180deg, rgba(15, 17, 21, 0.08) 0%, rgba(15, 17, 21, 0.48) 76%, rgba(15, 17, 21, 0.96) 100%);
  }

  .hero-section__devices {
    display: none;
  }

  .landing-shell.hero-section__content {
    grid-area: 1 / 1;
    display: block;
    align-self: end;
    position: relative;
    z-index: 2;
    gap: 0;
    justify-content: unset;
    padding: 0;
  }

  .hero-section__copy-wrap {
    display: block;
    padding: 0 24px 28px;
  }

  .hero-section__dots {
    display: none;
  }

  .hero-section__copy {
    width: 100%;
    max-width: 340px;
    margin: 0 auto;
    padding: 0;
    text-align: center;
  }

  .hero-section__copy h1 {
    font-size: clamp(2rem, 9vw, 2.6rem);
    line-height: 1.08;
    font-weight: 800;
  }

  .hero-section__copy p.hero-section__subtitle {
    max-width: 290px;
    margin: 12px auto 24px;
    font-size: clamp(1rem, 4.5vw, 1.16rem);
    line-height: 1.35;
  }

  .hero-section__subtitle span {
    white-space: normal;
  }

  .hero-section__cta {
    display: block;
    width: min(190px, 62vw);
    margin: 0 auto;
  }

  .hero-section__cta.hero-section__cta--button {
    width: auto;
    min-width: 0;
    display: inline-flex;
    padding: 10px 22px;
    min-height: 46px;
    font-size: 0.95rem;
  }

  .closing-section__copy .hero-section__cta.hero-section__cta--button {
    margin-left: auto;
    margin-right: 0;
  }

  .quality-section {
    padding: 42px 0 46px;
    background: #f5f4f1;
  }

  .quality-section__bg {
    display: none;
  }

  .quality-section .landing-shell {
    padding: 0 24px;
  }

  .quality-section .section-heading {
    max-width: 340px;
    margin-bottom: 28px;
    padding: 0;
  }

  .workflow-section .section-heading,
  .benefits-section .section-heading,
  .testimonials-section .section-heading,
  .trusted-section .section-heading {
    padding: 0;
  }

  .quality-section .section-heading h2 {
    font-size: clamp(1.9rem, 8vw, 2.45rem);
    white-space: normal;
  }

  .quality-section .section-heading p {
    font-size: 0.94rem;
    line-height: 1.72;
  }

  .feature-grid,
  .feature-grid--2col,
  .benefits-grid,
  .workflow-grid,
  .impact-grid {
    grid-template-columns: 1fr;
  }

  .quality-section .feature-grid--2col {
    max-width: 340px;
    gap: 18px;
  }

  .quality-section .feature-card--inline {
    gap: 12px;
  }

  .quality-section .feature-card--inline img {
    width: 38px;
    height: 38px;
  }

  .quality-section .feature-card h3 {
    font-size: 0.95rem;
    line-height: 1.4;
  }

  .issue-section {
    padding: 0;
    display: grid;
    background: #111418;
  }

  .issue-section__bg {
    grid-area: 1 / 1;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 401 / 712;
    background: url("../images/mobile/Recurso%2063Onstage.png") center top / cover no-repeat;
  }

  .issue-section__dots {
    display: none;
  }

  .issue-section__bg::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.08) 20%, rgba(0, 0, 0, 0.76) 78%, rgba(0, 0, 0, 0.96) 100%);
  }

  .issue-section__bg picture,
  .issue-section__bg img {
    display: none;
  }

  .issue-section__inner {
    grid-area: 1 / 1;
    align-self: end;
    position: relative;
    z-index: 2;
    padding: 0 24px 28px;
  }

  .issue-section__copy {
    max-width: 340px;
    margin: 0 auto;
    position: relative;
    padding-top: 0;
    text-align: center;
  }

  .issue-section__heading {
    display: block;
    font-size: clamp(1.9rem, 8vw, 2.35rem);
    line-height: 1.05;
  }

  .issue-section__heading span {
    display: block;
  }

  .issue-section__heading img {
    position: absolute;
    top: -126px;
    right: 8px;
    max-height: 84px;
  }

  .issue-section__copy p {
    margin-top: 16px;
    font-size: 0.94rem;
    line-height: 1.6;
    text-align: center;
  }

  .issue-grid {
    display: block;
    width: 100%;
    padding: 18px 24px 24px;
    background: #2b2f38;
  }

  .dark-mini-card {
    padding: 16px 0;
    justify-content: flex-start;
    gap: 14px;
  }

  .dark-mini-card::after {
    top: auto;
    bottom: 0;
    left: 52px;
    right: 0;
    width: auto;
    height: 1px;
    transform: none;
  }

  .dark-mini-card:last-child::after {
    display: none;
  }

  .dark-mini-card span {
    font-size: 0.92rem;
    line-height: 1.35;
  }

  .workflow-section {
    padding: 42px 0;
  }

  .workflow-section .landing-shell {
    padding: 0 24px;
  }

  .workflow-grid {
    max-width: 340px;
    margin: 0 auto;
    gap: 20px;
  }

  .workflow-card {
    min-height: 0;
    padding: 0 0 18px;
    border-radius: 18px;
    overflow: hidden;
  }

  .workflow-card__header {
    margin: 0 0 14px;
    min-height: 70px;
    padding: 14px 16px;
  }

  .workflow-card h3 {
    font-size: 1.1rem;
    line-height: 1.2;
  }

  .workflow-card > img {
    width: 100%;
    max-height: none;
    margin-top: 0;
    padding: 0 18px;
  }

  .workflow-card:nth-child(1) > img,
  .workflow-card:nth-child(3) > img {
    width: 88%;
    margin: 0 auto;
    padding: 0;
  }

  .workflow-card__lead,
  .workflow-card__sublead,
  .workflow-card__note,
  .workflow-card__bullets,
  .workflow-card__attrs {
    padding-left: 18px;
    padding-right: 18px;
  }

  .workflow-card__lead {
    margin: 8px 0 10px;
  }

  .workflow-card__attrs {
    gap: 10px 12px;
  }

  .workflow-card__attr {
    font-size: 0.75rem;
  }

  .workflow-card__bullets {
    margin-top: 10px;
    font-size: 0.84rem;
    line-height: 1.55;
  }

  .workflow-card__bullets--icons li {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .workflow-card__split {
    min-height: 212px;
    padding-right: 170px;
  }

  .workflow-card__split .workflow-card__bullets {
    width: 100%;
    margin: 0;
    padding-right: 0;
  }

  .workflow-card__side-img {
    right: -8px;
    bottom: 0;
    height: 188px;
  }

  .bot-section {
    padding: 0 0 44px;
    background: #fff;
  }

  .bot-section__bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 400 / 301;
    background: url("../images/mobile/Recurso%2067Onstage.png") center top / cover no-repeat;
  }

  .bot-section__bg picture,
  .bot-section__bg img {
    display: none;
  }

  .bot-section__bg::after {
    background: none;
  }

  .bot-section .split-section__copy {
    padding-top: 26px;
  }

  .bot-section .split-section__copy h2 {
    max-width: 320px;
    margin: 0 auto;
  }

  .bullet-list__label {
    margin-top: 18px;
    text-align: center;
    font-size: 0.95rem;
  }

  .bot-section .bullet-list {
    max-width: 320px;
    margin: 18px auto 0;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px 20px;
    text-align: left;
  }

  .bot-section .bullet-list li {
    font-size: 0.9rem;
    font-weight: 500;
  }

  .bot-section .bullet-list li::before {
    width: 6px;
    height: 6px;
    top: 0.72em;
    box-shadow: none;
  }

  .benefits-section {
    padding: 42px 0 8px;
  }

  .benefits-section .landing-shell {
    padding: 0 24px;
  }

  .benefits-grid {
    max-width: 336px;
    margin: 0 auto;
    gap: 22px;
  }

  .icon-stat {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 0;
    text-align: left;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
  }

  .icon-stat img {
    width: 40px;
    height: 40px;
    margin: 0;
  }

  .icon-stat p {
    font-size: 0.95rem;
    line-height: 1.45;
    color: var(--landing-ink);
  }

  .platform-section {
    position: relative;
    padding: 0;
    display: block;
    background: #f0efed;
  }

  .platform-section__stage {
    display: block;
    min-height: 0;
  }

  .platform-section__bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 401 / 923;
    background: url("../images/mobile/Recurso%2068Onstage.png") center top / cover no-repeat;
  }

  .platform-section__bg picture,
  .platform-section__bg img {
    display: none;
  }

  .platform-section__bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.68) 64%, rgba(255, 255, 255, 0.98) 100%);
  }

  .platform-section .split-section__copy {
    padding-top: 0;
  }

  .platform-section .split-section {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: block;
    z-index: 2;
    padding: 0 24px 28px;
  }

  .platform-section .split-section__copy h2 {
    max-width: 340px;
    font-size: clamp(1.5rem, 6vw, 1.9rem);
    margin: 0 auto;
    text-align: center;
  }

  .platform-cols {
    flex-direction: column;
    gap: 24px;
    max-width: 320px;
    margin: 24px auto 0;
  }

  .platform-col {
    align-items: flex-start;
    text-align: left;
    gap: 8px;
  }

  .platform-col h3 {
    font-size: 1.08rem;
    line-height: 1.25;
  }

  .platform-col p {
    font-size: 0.96rem;
    line-height: 1.45;
  }

  .platform-more {
    max-width: 320px;
    margin: 18px auto 0;
    text-align: center;
  }

  .platform-more__shell {
    padding: 0 24px;
  }

  .platform-more__toggle {
    width: auto;
    min-height: 36px;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 0.74rem;
    letter-spacing: 0;
    text-transform: none;
    margin: 0 auto;
  }

  .platform-more__plus {
    width: 18px;
    height: 18px;
  }

  .platform-more__items {
    grid-template-columns: 1fr;
  }

  .platform-more__panel {
    max-width: 320px;
    margin-left: auto;
    margin-right: auto;
  }

  .platform-more__panel.is-open {
    margin-bottom: 20px;
  }

  .impact-section {
    position: relative;
    padding: 0;
    display: block;
    background: #0f1115;
  }

  .impact-section__bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 401 / 786;
    background: url("../images/mobile/Recurso%2069Onstage.png") center top / cover no-repeat;
  }

  .impact-section__bg picture,
  .impact-section__bg img {
    display: none;
  }

  .impact-section__bg::after {
    background: linear-gradient(180deg, rgba(10, 11, 14, 0.04) 0%, rgba(10, 11, 14, 0.86) 100%);
  }

  .impact-section__content {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding: 0 24px 34px;
    text-align: center;
  }

  .impact-section__left {
    margin-right: 0;
    align-items: center;
    gap: 10px;
  }

  .impact-section__left h2 {
    font-size: clamp(2rem, 8vw, 2.5rem);
  }

  .impact-section__eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.16em;
  }

  .impact-rings {
    gap: 16px;
    justify-content: center;
  }

  .metric-ring-card img {
    width: 94px !important;
    height: 94px !important;
  }

  .impact-section__right {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px 22px;
    margin-top: 24px;
  }

  .impact-section__divider {
    display: none;
  }

  .metric-text-card strong {
    font-size: 2.35rem;
  }

  .metric-text-card p {
    font-size: 0.86rem;
    line-height: 1.45;
  }

  .modular-section {
    position: relative;
    padding: 0;
    display: block;
    background: #fff;
  }

  .modular-section__bg {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 401 / 819;
    background: url("../images/mobile/Recurso%2070Onstage.png") center top / cover no-repeat;
  }

  .modular-section__bg picture,
  .modular-section__bg img {
    display: none;
  }

  .modular-section__bg::after {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.04) 0%, rgba(255, 255, 255, 0.84) 76%, rgba(255, 255, 255, 1) 100%);
  }

  .modular-section__wrap {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    padding: 0 24px 24px;
  }

  .modular-section__content {
    flex-direction: column;
    gap: 14px;
    align-items: center;
  }

  .modular-section__app-img {
    display: block;
    width: min(180px, 52vw) !important;
    margin: 0 auto 8px;
  }

  .modular-section__body {
    align-items: center;
    text-align: center;
  }

  .modular-section__body h2 {
    font-size: clamp(2rem, 8vw, 2.5rem);
    margin-bottom: 20px;
    text-align: center;
  }

  .modular-tags {
    width: 100%;
    max-width: 320px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .modular-tags span {
    width: 100%;
    padding: 0;
    border-radius: 0;
    font-size: 0.86rem;
    justify-content: flex-start;
  }

  .modular-section__footer {
    max-width: 320px;
    font-size: 0.95rem !important;
    text-align: center;
    margin-top: 10px;
  }

  .support-section {
    padding: 0;
    display: grid;
    background: #111418;
  }

  .support-section__bg {
    grid-area: 1 / 1;
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 401 / 724;
    background: url("../images/web/banner%20resutados.jpg") center center / cover no-repeat;
  }

  .support-section__bg picture,
  .support-section__bg img {
    display: none;
  }

  .support-section__bg::after {
    background: linear-gradient(180deg, rgba(10, 11, 14, 0.08) 0%, rgba(10, 11, 14, 0.88) 100%);
  }

  .support-section .split-section__copy {
    padding-top: 0;
  }

  .support-section .split-section {
    grid-area: 1 / 1;
    display: block;
    align-self: end;
    position: relative;
    z-index: 2;
    padding: 0 24px 30px;
  }

  .support-section .bullet-list {
    max-width: 320px;
    margin: 18px auto 0;
    text-align: left;
  }

  .support-section .bullet-list li {
    font-size: 0.92rem;
    line-height: 1.45;
  }

  .support-section .bullet-list li::before {
    box-shadow: none;
    width: 6px;
    height: 6px;
    top: 0.72em;
  }

  .testimonials-section {
    padding: 56px 0 48px;
  }

  .testimonials-section .landing-shell {
    padding: 0 24px;
  }

  .testimonials-section__carousel {
    margin-top: 92px;
    padding: 0;
  }

  .testimonials-grid {
    max-width: none;
    margin: 0;
    gap: 0;
    padding: 70px 8px 12px;
    margin-top: -70px;
  }

  .testimonials-grid > .testimonial-card {
    flex: 0 0 calc(100% - 32px);
    margin: 0 16px;
  }

  .testimonials-section__arrow {
    width: 38px;
    height: 38px;
    font-size: 1.4rem;
  }

  .testimonials-section__arrow--prev {
    left: 4px;
  }

  .testimonials-section__arrow--next {
    right: 4px;
  }

  .testimonial-card {
    padding: 68px 18px 22px;
    gap: 5px;
  }

  .testimonial-card__avatar {
    width: 112px;
    height: 112px;
    top: -56px;
  }

  .testimonial-card h3 {
    font-size: 1rem;
    line-height: 1.25;
  }

  .testimonial-card__role {
    font-size: 0.76rem;
    margin-bottom: 6px;
  }

  .testimonial-card > p {
    font-size: 0.82rem;
    line-height: 1.55;
  }

  .trusted-section {
    padding: 34px 0 38px;
  }

  .trusted-section .landing-shell {
    padding: 0 24px;
  }

  .trusted-row {
    max-width: 330px;
    margin: 0 auto;
    grid-template-columns: 36px minmax(0, 1fr) 36px;
    gap: 8px;
  }

  .trusted-row--marquee {
    max-width: none;
  }

  .trusted-row__arrow {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    box-shadow: none;
    font-size: 2rem;
  }

  .trusted-row__track {
    justify-content: flex-start;
    gap: 24px;
  }

  .trusted-row__track img {
    height: 44px;
  }

  .closing-section {
    min-height: 380px;
    background-position: center center;
  }

  .closing-section__content {
    min-height: 380px;
    gap: 16px;
    justify-content: flex-end;
    align-items: center;
    padding: 32px 24px;
  }

  .closing-section__copy {
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
  }

  .closing-section__copy h2 {
    font-size: clamp(1.35rem, 5.6vw, 1.75rem);
    line-height: 1.18;
    margin-bottom: 14px;
  }

  .closing-section__brand-mark {
    width: 88px;
  }
}
