:root {
  /* mbx*/
  --sidebar: #2b3137;
  --sidebar-hover: #343b42;
  --sidebar-active: #d0da34;

  --sidebar-text-primary: #1d1f23;
  --sidebar-text-active: #1d1f23;

  --primary: #d0da34;
  --primary-dark: #c7d62f;
  --secondary: #88898c;
  --background-light: #f5f6f8;
  --background: #f0f0f0;
  --surface: #ffffff;
  --text-primary: #2b3137;
  --text-secondary: #6b7076;
  --text-disabled: #88898c;
  --border: #d9dadd;
  --border-secondary: #6b7076;

  --box-shadow: #0f172a29;
  /* cards */
  --success: #c7d62f;
  --danger: #f25572;
  --warning: #f4c400;
  --info: #6ec6d9;
  --sla: #687068;

  /*    texto */
  --text-color: #c7cdd3;
  --text-size: 1rem;

  /* espaçamentos */
  --gap: 18px;
  --padding: 12px;
  --border-radius: 8px;
  --main-border: 1px solid var(--border);
  --main-box-shadow: 0 8px 24px var(--box-shadow);
}

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

html {
  scroll-behavior: smooth;
}

#inicio,
#sistema,
#solucoes,
#integracoes,
#contato {
  scroll-margin-top: 80px;
}

body {
  margin: 0;
  background: linear-gradient(180deg, #f9fafc 0%, var(--background) 100%);
  color: var(--text-primary);
  font-family: "Manrope", "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.page-glow {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 12%, rgb(208 218 52 / 24%) 0%, transparent 35%),
    radial-gradient(circle at 82% 18%, rgb(110 198 217 / 18%) 0%, transparent 30%),
    radial-gradient(circle at 50% 100%, rgb(43 49 55 / 10%) 0%, transparent 45%);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(10px);
  background: rgb(43 49 55 / 94%);
  border-bottom: 1px solid rgb(208 218 52 / 26%);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand {
  /*width: 210px;*/
  width: 164px;
}

.top-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.top-nav a {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--background-light);
  opacity: 0.82;
  transition: opacity 0.22s ease, color 0.22s ease;
}

.top-nav a:hover,
.top-nav a:focus-visible {
  opacity: 1;
  color: var(--primary);
}

.btn {
  border: 0;
  border-radius: 999px;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
  letter-spacing: 0.01em;
  padding: 0.82rem 1.3rem;
  font-size: 0.9rem;
  white-space: nowrap;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(160deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: var(--sidebar-text-active);
  box-shadow: 0 10px 20px rgb(199 214 47 / 35%);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 14px 24px rgb(199 214 47 / 45%);
}

.btn-ghost {
  background: var(--surface);
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.hero {
  padding: 4.25rem 0 3rem;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 2rem;
  align-items: start;
}

.eyebrow {
  display: inline-block;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--sidebar);
  background: rgb(208 218 52 / 28%);
  border: 1px solid rgb(208 218 52 / 62%);
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  margin-bottom: 1rem;
}

.hero-copy h1,
.section-head h2,
.integration-grid h2,
.lead-copy h2 {
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 800;
  line-height: 1.15;
  margin: 0;
}

.hero-copy h1 {
  font-size: clamp(1.95rem, 3.5vw, 3rem);
  max-width: 18ch;
}

.hero-copy p {
  color: var(--text-secondary);
  margin: 1.1rem 0 0;
  max-width: 60ch;
}

.hero-points {
  margin: 1.25rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.62rem;
}

.hero-points li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text-primary);
  font-weight: 600;
}

.hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 1.2rem;
  height: 1.2rem;
  border-radius: 999px;
  background: rgb(208 218 52 / 34%);
  display: grid;
  place-content: center;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.mini-proof {
  margin-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.mini-proof strong {
  font-size: 0.82rem;
  color: var(--sidebar);
  background: var(--surface);
  padding: 0.32rem 0.62rem;
  border-radius: 999px;
  border: 1px solid var(--border);
}

.mini-proof strong.logo-pill {
  padding: 0.5rem 0.88rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 38px;
  border-radius: 12px;
  box-shadow: 0 6px 14px rgb(15 23 42 / 8%);
}

.mini-proof .logo-pill img {
  width: 100%;
  max-width: 100px;
  height: 22px;
  object-fit: contain;
}

.mini-proof .logo-pill.logo-pill-wide img {
  max-width: 112px;
}

.mini-proof .logo-pill.logo-pill-long {
  min-width: 152px;
}

.mini-proof .logo-pill.logo-pill-long img {
  max-width: 128px;
}

.hero-panel {
  background: linear-gradient(165deg, rgb(43 49 55 / 98%), rgb(52 59 66 / 96%));
  color: #ebedf0;
  border-radius: 24px;
  border: 1px solid rgb(255 255 255 / 12%);
  box-shadow: 0 22px 45px rgb(15 23 42 / 28%);
  padding: 1.2rem;
  position: relative;
  overflow: hidden;
}

.hero-panel::before {
  content: "";
  position: absolute;
  inset: -25% auto auto -25%;
  width: 180px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgb(208 218 52 / 45%) 0%, transparent 72%);
}

.panel-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}

.panel-head p {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 700;
}

.panel-head span {
  background: rgb(208 218 52 / 18%);
  border: 1px solid rgb(208 218 52 / 30%);
  color: var(--primary);
  border-radius: 999px;
  padding: 0.25rem 0.6rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.monitor-live {
  padding: 1rem;
}

.monitor-stage {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 12%);
  aspect-ratio: 2994 / 1738;
  min-height: 0;
  background: rgb(8 12 18 / 92%);
}

.monitor-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(12 16 22 / 8%), rgb(12 16 22 / 22%));
  z-index: 1;
  pointer-events: none;
}

.monitor-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: contain;
  object-position: center;
  display: block;
  position: relative;
  z-index: 0;
}

.fade-up {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

.section {
  padding: 4rem 0;
}

#integracoes {
  padding: 6rem 0;
}

.section-alt {
  background: linear-gradient(180deg, rgb(255 255 255 / 72%), rgb(245 246 248 / 70%));
  border-top: 1px solid rgb(217 218 221 / 70%);
  border-bottom: 1px solid rgb(217 218 221 / 70%);
}

.section-head {
  margin-bottom: 1.8rem;
}

.section-head h2,
.integration-grid h2,
.lead-copy h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.25rem);
}

.section-copy {
  color: var(--text-secondary);
  margin-top: 1rem;
}

.showcase-section {
  padding-top: 1rem;
}

.showcase-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}

.showcase-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  max-width: 1040px;
  margin-inline: auto;
}

.showcase-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.showcase-shot {
  position: relative;
  margin: 0;
  overflow: hidden;
  --shot-frame-side: clamp(0.7rem, 1.05vw, 0.92rem);
  --shot-frame-top: clamp(1.35rem, 2vw, 1.75rem);
  padding: var(--shot-frame-top) var(--shot-frame-side) var(--shot-frame-side);
  border-radius: 26px;
  border: 1px solid rgb(255 255 255 / 16%);
  background: linear-gradient(165deg, rgb(46 54 62 / 98%), rgb(34 40 47 / 98%));
  box-shadow: 0 18px 34px rgb(15 23 42 / 18%);
}

.showcase-shot:nth-child(3) {
  grid-column: 1 / -1;
  width: min(100%, calc((100% - 1rem) / 2));
  justify-self: center;
}

.showcase-shot img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 13px;
  border: 1px solid rgb(244 246 249);
  background: rgb(244 246 249);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.95rem;
}

.feature-card {
  background: linear-gradient(180deg, var(--surface), rgb(252 252 253));
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 14px 28px rgb(15 23 42 / 6%);
}

.feature-card h3 {
  margin: 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1.04rem;
  line-height: 1.3;
}

.feature-card p {
  margin: 0.75rem 0 0;
  color: var(--text-secondary);
  font-size: 0.95rem;
}

.integration-grid {
  display: grid;
  grid-template-columns: 1fr 0.92fr;
  gap: 1.2rem;
  align-items: start;
}

.integration-market {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  align-items: center;
  gap: 1.3rem;
  position: relative;
  --market-burst-top: -0.18rem;
  --market-burst-right: -0.35rem;
  --market-burst-size: 108px;
}

.integration-market-copy h2 {
  margin: 0;
}

.integration-market-copy .section-copy {
  max-width: 55ch;
}

.integration-market-cloud {
  position: relative;
  padding: 0.2rem 0 0.2rem;
  overflow: visible;
}

.market-grid-clip {
  overflow: hidden;
  margin-right: 118px;
}

.market-burst {
  position: absolute;
  right: var(--market-burst-right);
  top: var(--market-burst-top);
  width: var(--market-burst-size);
  height: var(--market-burst-size);
  clip-path: polygon(
    50% 0%, 58% 10%, 70% 4%, 74% 17%, 88% 15%, 84% 29%, 100% 35%, 89% 45%,
    100% 50%, 89% 55%, 100% 65%, 84% 71%, 88% 85%, 74% 83%, 70% 96%, 58% 90%,
    50% 100%, 42% 90%, 30% 96%, 26% 83%, 12% 85%, 16% 71%, 0% 65%, 11% 55%,
    0% 50%, 11% 45%, 0% 35%, 16% 29%, 12% 15%, 26% 17%, 30% 4%, 42% 10%
  );
  /*background: linear-gradient(155deg, rgb(208 218 52 / 96%), rgb(199 214 47 / 96%));*/
  /*border: 1px solid rgb(208 218 52 / 62%);*/
  background: var(--primary);
  border: 1px solid rgb(208 218 52 / 62%);
  color: #1d1f23;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.68rem;
  line-height: 1.1;
  letter-spacing: 0.01em;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem;
  z-index: 4;
}

.market-burst-label {
  width: 84%;
  margin: 0 auto;
  display: block;
  text-align: center;
  line-height: 1.14;
}

.market-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: center;
  /*gap: 0.78rem;*/
  column-gap: 0rem;
  row-gap: 1rem;
  padding-right: 0;
}

.market-pill {
  width: 150px;
  min-height: 56px;
  border-radius: 999px;
  border: 1px solid rgb(199 204 210 / 90%);
  background: rgb(255 255 255 / 64%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.42rem 1rem;
  margin-right: 26px;
}

.market-pill-mobile-extra {
  display: none;
}

.market-pill img {
  width: 100%;
  max-width: 128px;
  height: 32px;
  object-fit: contain;
}

.market-pill.market-ghost {
  background: transparent;
  border-style: solid;
  border-color: rgb(201 205 210 / 72%);
  box-shadow: none;
}

.market-pill.market-ghost-left {
  transform: translateX(-35%);
}

.market-pill.market-ghost-left-b {
  transform: translateX(-15%);
}

.market-pill.market-ghost-right {
  transform: translateX(35%);
}

.market-ghost-move-a {
  transform: translateX(55%);
}

.market-ghost-move-b {
  transform: translateX(20%);
}

.market-grid .market-pill:nth-child(2) {
  transform: translateX(-31px);
}

.market-grid .market-pill:nth-child(5) {
  transform: translateX(20px);
}

.market-grid .market-pill:nth-child(8) {
  transform: translateX(-6px);
}

.market-grid .market-pill:nth-child(11) {
  transform: translateX(12px);
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.95rem;
}

.step-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.2rem;
  box-shadow: 0 12px 25px rgb(15 23 42 / 6%);
}

.step-card span {
  display: inline-flex;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  background: var(--primary);
  color: var(--sidebar-text-primary);
  align-items: center;
  justify-content: center;
  font-family: "Sora", "Manrope", sans-serif;
  font-weight: 800;
  font-size: 0.8rem;
}

.step-card h3 {
  margin: 0.85rem 0 0;
  font-family: "Sora", "Manrope", sans-serif;
  font-size: 1rem;
}

.step-card p {
  margin: 0.55rem 0 0;
  color: var(--text-secondary);
  font-size: 0.92rem;
}

.lead-section {
  padding-top: 4.4rem;
}

.lead-grid {
  display: grid;
  grid-template-columns: 1fr 0.95fr;
  gap: 1.2rem;
  align-items: start;
}

.lead-copy p {
  margin-top: 1rem;
  max-width: 55ch;
  color: var(--text-secondary);
}

.lead-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 1.35rem;
  box-shadow: 0 18px 35px rgb(15 23 42 / 9%);
}

.lead-form label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.83rem;
  font-weight: 800;
  color: var(--sidebar);
  letter-spacing: 0.02em;
}

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 0.94rem;
  color: var(--text-primary);
  background: rgb(245 246 248 / 70%);
  padding: 0.74rem 0.82rem;
  min-height: 46px;
  font-family: inherit;
  margin-bottom: 0.9rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.lead-form input,
.lead-form select {
  height: 46px;
}

.lead-form input:focus-visible,
.lead-form textarea:focus-visible,
.lead-form select:focus-visible {
  outline: none;
  border-color: var(--primary-dark);
  box-shadow: 0 0 0 4px rgb(208 218 52 / 18%);
}

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 0.56rem;
  margin: 0 0 1.1rem;
}

.checkbox-wrap input {
  width: 1rem;
  height: 1rem;
  margin: 0.18rem 0 0;
}

.checkbox-wrap span {
  font-size: 0.84rem;
  color: var(--text-secondary);
  font-weight: 600;
}

.form-message {
  margin: 0.75rem 0 0;
  min-height: 1.2rem;
  font-size: 0.86rem;
  font-weight: 700;
}

.form-message.success {
  color: #2f6d00;
}

.form-message.error {
  color: #9b1932;
}

.lead-form .btn {
  width: 100%;
  min-height: 48px;
}

.site-footer {
  padding: 1.4rem 0 2rem;
  background: var(--sidebar);
  border-top: 1px solid rgb(208 218 52 / 26%);
}

.footer-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.footer-wrap img {
  width: 190px;
}

.footer-copy {
  margin: 0;
  color: var(--text-color);
  font-size: 0.88rem;
  line-height: 1.42;
}

.footer-copy span {
  display: block;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  border: 1px solid rgb(208 218 52 / 36%);
  background: rgb(255 255 255 / 4%);
  color: var(--background-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.footer-social-link:hover,
.footer-social-link:focus-visible {
  color: var(--primary);
  border-color: rgb(208 218 52 / 70%);
  background: rgb(208 218 52 / 12%);
  transform: translateY(-1px);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.footer-social-link svg path:last-child {
  fill: currentColor;
  stroke: none;
}

.floating-proposal-btn {
  display: none;
}

.floating-proposal-btn.is-hidden {
  display: none;
}

@media (max-width: 1070px) {
  .showcase-layout {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 768px) {
  .market-burst {
    display: none;
  }
}

@media (max-width: 900px) {
  .top-nav {
    display: none;
  }

  .nav-wrap {
    justify-content: center;
  }

  .brand {
    width: 184px;
  }

  .hero-grid,
  .showcase-head,
  .integration-market,
  .lead-grid {
    grid-template-columns: 1fr;
  }

  .showcase-head {
    display: grid;
    align-items: start;
  }

  .btn-nav {
    display: none;
  }

  .btn-hide-mobile {
    display: none;
  }

  .floating-proposal-btn {
    display: inline-flex;
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 30;
    box-shadow: 0 16px 30px rgb(15 23 42 / 26%);
  }

  .hero {
    padding-top: 2.9rem;
  }

  .hero-copy h1 {
    max-width: 100%;
  }

  .integration-market-cloud {
    padding: 0.15rem 0;
  }

  .showcase-layout {
    max-width: 100%;
  }

  .showcase-gallery {
    gap: 0.85rem;
  }

  .showcase-shot {
    --shot-frame-side: 0.64rem;
    --shot-frame-top: 1.2rem;
    border-radius: 22px;
  }

  .showcase-shot img {
    border-radius: 11px;
  }

  .market-burst {
    --market-burst-size: 92px;
    --market-burst-right: -0.15rem;
    --market-burst-top: -0.08rem;
    font-size: 0.62rem;
  }

  .market-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding-right: 0;
    gap: 0.68rem;
  }

  .market-grid-clip {
    margin-right: 104px;
  }

  .market-pill {
    min-height: 50px;
    padding-inline: 0.62rem;
  }

  .market-pill img {
    height: 30px;
  }
}

@media (max-width: 680px) {
  .container {
    width: min(1120px, calc(100% - 1.15rem));
  }

  .brand {
    width: 164px;
  }

  .feature-grid,
  .steps {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.25rem 0;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .mini-proof {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.2rem;
    scrollbar-width: thin;
  }

  .mini-proof span,
  .mini-proof strong {
    flex: 0 0 auto;
  }

  .monitor-stage,
  .monitor-video {
    min-height: 0;
  }

  .mini-proof strong.logo-pill {
    min-width: 118px;
    min-height: 34px;
    padding: 0.42rem 0.72rem;
  }

  .mini-proof .logo-pill img {
    height: 19px;
  }

  .mini-proof .logo-pill.logo-pill-wide img {
    max-width: 104px;
  }

  .mini-proof .logo-pill.logo-pill-long {
    min-width: 134px;
  }

  .mini-proof .logo-pill.logo-pill-long img {
    max-width: 114px;
  }

  .integration-market-copy .section-copy {
    max-width: 100%;
  }

  .integration-market {
    grid-template-columns: 1fr;
    grid-template-areas:
      "copy"
      "cloud";
    align-items: start;
  }

  .integration-market-copy {
    grid-area: copy;
  }

  .market-burst {
    display: none;
  }

  .integration-market-cloud {
    grid-area: cloud;
  }

  .market-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-right: 0;
    gap: 0.5rem;
  }

  .showcase-gallery {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }

  .showcase-shot:nth-child(3) {
    grid-column: auto;
    width: 100%;
  }

  .showcase-shot {
    --shot-frame-side: 0.52rem;
    --shot-frame-top: 0.95rem;
    border-radius: 18px;
  }

  .showcase-shot img {
    border-radius: 10px;
  }

  .market-grid-clip {
    margin-right: 0;
  }

  .market-pill {
    min-width: 0;
    min-height: 44px;
    border-radius: 999px;
    padding: 0.48rem 0.56rem;
  }

  .market-grid .market-pill {
    transform: none;
  }

  .market-pill img {
    height: 27px;
  }

  .market-pill.market-ghost {
    display: none;
  }

  .market-pill.market-wide,
  .market-pill.market-long {
    grid-column: span 2;
  }

  .lead-form {
    padding: 1rem;
  }

  .lead-form input,
  .lead-form select {
    font-size: 16px;
  }

  .footer-wrap,
  .footer-copy {
    text-align: center;
  }
}

@media (max-width: 1070px) and (min-width: 681px) {
  .integration-market {
    grid-template-columns: 1fr;
  }

  .integration-market-cloud {
    display: flex;
    justify-content: center;
    padding: 0.2rem 0;
    overflow-x: auto;
    overflow-y: visible;
    -webkit-overflow-scrolling: touch;
  }

  .market-grid-clip {
    width: 709px;
    max-width: 709px;
    min-width: 709px;
    margin-right: 0;
    margin-inline: auto;
    overflow: hidden;
  }

  .market-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    column-gap: 0;
    row-gap: 1rem;
    min-width: 709px;
  }

  .market-pill {
    width: 150px;
    min-height: 56px;
    padding: 0.42rem 1rem;
    margin-right: 26px;
  }

  .market-pill img {
    max-width: 128px;
    height: 32px;
  }

  .market-pill.market-ghost {
    display: inline-flex;
  }

  .market-grid > .market-pill {
    order: 20;
  }

  .market-grid > .market-pill:nth-child(6) {
    display: none;
  }

  .market-grid > .market-pill:nth-child(1) {
    order: 1;
  }

  .market-grid > .market-pill:nth-child(2) {
    order: 2;
  }

  .market-grid > .market-pill:nth-child(3) {
    order: 3;
  }

  .market-grid > .market-pill:nth-child(4) {
    order: 4;
  }

  .market-grid > .market-pill:nth-child(5) {
    order: 5;
  }

  .market-grid > .market-pill:nth-child(8) {
    order: 6;
  }

  .market-grid > .market-pill:nth-child(9) {
    order: 7;
  }

  .market-grid > .market-pill:nth-child(12) {
    order: 8;
  }

  .market-grid > .market-pill:nth-child(7) {
    order: 9;
  }

  .market-grid > .market-pill:nth-child(10) {
    order: 10;
  }

  .market-grid > .market-pill:nth-child(11) {
    order: 11;
  }

  .market-grid > .market-pill-mobile-extra {
    display: inline-flex;
    order: 12;
  }

  .market-pill.market-ghost-left {
    transform: translateX(-35%);
  }

  .market-pill.market-ghost-left-b {
    transform: translateX(-15%);
  }

  .market-pill.market-ghost-right {
    transform: translateX(35%);
  }

  .market-ghost-move-a {
    transform: translateX(55%);
  }

  .market-ghost-move-b {
    transform: translateX(20%);
  }

  .market-grid > .market-pill:nth-child(1) {
    transform: translateX(-35%);
  }

  .market-grid > .market-pill:nth-child(6) {
    transform: translateX(20%);
  }

  .market-grid > .market-pill:nth-child(7) {
    transform: translateX(-15%);
  }

  .market-grid > .market-pill:nth-child(12) {
    transform: translateX(55%);
  }

  .market-grid .market-pill:nth-child(2) {
    transform: translateX(-31px);
  }

  .market-grid .market-pill:nth-child(5) {
    transform: translateX(20px);
  }

  .market-grid .market-pill:nth-child(8) {
    transform: translateX(-6px);
  }

  .market-grid .market-pill:nth-child(11) {
    transform: translateX(12px);
  }
}

@media (max-width: 480px) {
  .integration-market-cloud {
    display: flex;
    justify-content: center;
    overflow: visible;
  }

  .market-grid-clip {
    /*width: 300px;*/
    width: 400px;
    min-width: 300px;
    margin-right: 0;
    margin-inline: auto;
    overflow: hidden;
  }

  .market-grid {
    grid-template-columns: repeat(2, 150px);
    width: 300px;
    min-width: 300px;
    justify-items: center;
  }

  .market-grid > .market-pill {
    order: 0;
  }

  .market-grid > .market-pill:nth-child(n) {
    order: 0;
  }

  .market-grid > .market-pill:nth-child(6) {
    display: inline-flex;
  }

  .market-grid > .market-pill-mobile-extra {
    display: none;
  }

  .market-grid .market-pill {
    margin-right: 0;
    transform: none;
  }

  .market-grid > .market-pill:nth-child(1),
  .market-grid > .market-pill:nth-child(7) {
    transform: translateX(-50%);
  }

  .market-grid > .market-pill:nth-child(6),
  .market-grid > .market-pill:nth-child(12) {
    transform: translateX(50%);
  }
}

@media (max-width: 708px) {
  .integration-market-cloud {
    display: block;
    overflow: hidden;
  }

  .market-grid-clip {
    width: 100%;
    min-width: 0;
    margin-right: 0;
    margin-inline: 0;
    overflow: hidden;
  }

  .market-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
    min-width: 0;
    column-gap: 0.45rem;
    row-gap: 0.7rem;
    justify-items: stretch;
  }

  .market-grid > .market-pill,
  .market-grid > .market-pill:nth-child(n) {
    order: 0;
  }

  .market-grid > .market-pill {
    width: 100%;
    min-width: 0;
    min-height: 44px;
    margin-right: 0;
    padding: 0.48rem 0.56rem;
  }

  .market-pill img {
    max-width: 102px;
    height: 27px;
  }

  .market-pill.market-ghost,
  .market-grid > .market-pill.market-ghost {
    display: inline-flex;
  }

  .market-grid > .market-pill-mobile-extra {
    display: none;
  }

  .market-grid > .market-pill:nth-child(1) {
    transform: translateX(-35%);
  }

  .market-grid > .market-pill:nth-child(6) {
    transform: translateX(20%);
  }

  .market-grid > .market-pill:nth-child(7) {
    transform: translateX(-15%);
  }

  .market-grid > .market-pill:nth-child(12) {
    transform: translateX(55%);
  }

  .market-pill.market-ghost-left {
    transform: translateX(-35%);
  }

  .market-pill.market-ghost-left-b {
    transform: translateX(-15%);
  }

  .market-pill.market-ghost-right {
    transform: translateX(35%);
  }

  .market-ghost-move-a {
    transform: translateX(55%);
  }

  .market-ghost-move-b {
    transform: translateX(20%);
  }

  .market-grid .market-pill:nth-child(2) {
    transform: translateX(-31px);
  }

  .market-grid .market-pill:nth-child(5) {
    transform: translateX(20px);
  }

  .market-grid .market-pill:nth-child(8) {
    transform: translateX(-6px);
  }

  .market-grid .market-pill:nth-child(11) {
    transform: translateX(12px);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
