:root {
  --navy: #121b48;
  --navy-2: #0b143b;
  --ink: #121214;
  --paper: #fbfbfc;
  --text: #f8f9ff;
  --muted: #b5bfdc;
  --pink: #f3195d;
  --violet: #7225e9;
  --teal: #18b7bc;
  --green: #1ad46e;
  --button-shadow: 0 18px 34px rgba(243,25,93,.3);
  --line: rgba(255, 255, 255, 0.16);
  font-family: var(--global-body-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--navy);
  color: var(--text);
}
.home-main {
  display: flex;
  flex-direction: column;
}
a { color: inherit; text-decoration: none; }
p { line-height: 1.55; }
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 680px;
  font-size: clamp(2.8rem, 6.8vw, 6.6rem);
  line-height: .9;
  margin-bottom: 20px;
}
h2 {
/*  max-width: 860px; */
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  line-height: .98;
  margin-bottom: 16px;
}
h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  line-height: 1.02;
  margin-bottom: 12px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: minmax(118px, 1fr) auto minmax(118px, 1fr);
  align-items: center;
  column-gap: clamp(16px, 3vw, 36px);
  min-height: 60px;
  padding: 12px clamp(18px, 6vw, 72px);
  background: rgba(12, 16, 39, .88);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  align-items: center;
  min-width: 108px;
}
.brand img {
  display: block;
  width: 118px;
  height: auto;
}
nav {
  display: flex;
  gap: clamp(16px, 3vw, 36px);
  justify-self: center;
  color: #d9def7;
  font-size: .88rem;
  font-weight: 800;
}
.site-header nav a {
  text-transform: uppercase;
}
.nav-cta {
  justify-self: end;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  font-size: .82rem;
  font-weight: 850;
  box-shadow: var(--button-shadow);
}

section, .footer {
  padding: clamp(56px, 9vw, 118px) clamp(20px, 7vw, 108px);
}
.dark-panel {
  background:
    radial-gradient(circle at 84% 10%, rgba(243,25,93,.28), transparent 28%),
    radial-gradient(circle at 12% 8%, rgba(114,37,233,.28), transparent 24%),
    linear-gradient(180deg, var(--navy), var(--navy-2));
}
.black-section {
  background:
    radial-gradient(circle at 76% 25%, rgba(24,183,188,.22), transparent 25%),
    linear-gradient(180deg, #171719, #101012);
}
.light-section {
  background: var(--paper);
  color: #12152d;
}
.eyebrow.pink {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.21em;
  color: var(--pink);
  text-transform: uppercase;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  font-weight: 950;
  box-shadow: var(--button-shadow);
}
.button.primary { background: var(--pink); color: #fff; }
.button.green { background: var(--green); color: #04160c; box-shadow: var(--button-shadow); }
.centered { margin-inline: auto; }

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 100%);
  justify-content: center;
  justify-items: center;
  align-items: center;
  gap: clamp(22px, 4vw, 38px);
  min-height: 680px;
  padding-bottom: clamp(104px, 12vw, 156px);
  overflow: visible;

}
.hero > * { position: relative; z-index: 1; }
.hero-bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .72;
  pointer-events: none;
}
.hero-content {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  column-gap: clamp(28px, 6vw, 82px);
  align-items: start;
  text-align: left;
}
.hero-content .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.21em;
  color: #ffffff;
  text-transform: uppercase;
}

.hero-content .color-strip {
  grid-column: 1 / -1;
  margin-bottom: 25px;
}
.hero-title h1,
.hero-description p {
  margin-left: 0;
  margin-right: auto;
}
.hero-description p {
  max-width: 420px;
  color: #d7defb;
  font-size: 1.14rem;
}
.hero-title h1 {
  max-width: 820px;
  margin-bottom: 0;
  text-wrap: balance;
}
.hero-description {
  padding-top: clamp(8px, 1.2vw, 18px);
}
.hero-description .button {
  margin-top: 16px;
}
.hero-copy p:not(.eyebrow) {
  max-width: 580px;
  color: #d7defb;
  font-size: 1.14rem;
}
.hero-copy .button {
  margin-top: 16px;
}
.hero-note {
  align-self: center;
  padding: 24px;
  border-left: 4px solid var(--pink);
  color: #d4dbfb;
}
.product-strip {
  position: relative;
  left: auto;
  right: auto;
  width: 100%;
  max-width: none;
  transform: none;
  bottom: auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(86px, 1fr));
  gap: 10px;
  height: 327px;
  z-index: 2;
}
.photo-card {
  min-height: 202px;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.photo-card.alt,
.photo-card.third {
  background: transparent;
}
.box {
  min-height: 140px;
  display: grid;
  align-content: center;
  justify-items: center;
  border-radius: 5px;
  color: white;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.18);
}
.box::before {
  content: "";
  width: 80%;
  height: 42px;
  margin-bottom: 10px;
  border-radius: 4px;
  background: rgba(255,255,255,.28);
}
.box span { font-size: 2rem; font-weight: 950; }
.box span em { font-size: .55em; font-style: normal; }
.box small {
  max-width: 150px;
  font-weight: 850;
  line-height: 1.08;
  text-align: left;
}
.box.red { background: var(--pink); }
.box.violet { background: var(--violet); }
.box.teal { background: var(--teal); }

.section-title p { max-width: 680px; color: #616a83; }
.problem {
  position: relative;
  z-index: 1;
  margin-top: calc(-1 * clamp(72px, 8vw, 128px));
  padding-top: calc(clamp(56px, 9vw, 118px) + clamp(72px, 8vw, 128px));
}
.problem .section-title h2 { color: #151515; }
.problem .section-title h2 span { color: var(--pink); }
.problem-description-eyebrow {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
  font-size: 30px;
}
.timeline-card {
  margin-top: 34px;
  border-radius: 7px;
  overflow: hidden;
  background: #e6e6eb;
}
.timeline-item {
  border-bottom: 1px solid #d1d2db;
  background: #e6e6eb;
  color: #888;
}
.timeline-item:last-child { border-bottom: 0; }
.timeline-trigger {
  width: 100%;
  min-height: 86px;
  padding: 0 34px;
  border: 0;
  background: transparent;
  color: inherit;
  display: grid;
  grid-template-columns: 70px 48px 1fr;
  align-items: center;
  text-align: left;
  cursor: pointer;
  font: inherit;
  font-size: clamp(1.2rem, 2.7vw, 2.05rem);
  font-weight: 500;
}
.timeline-trigger b {
  font-size: .72em;
}
.timeline-trigger i {
  font-style: normal;
  opacity: .8;
  transition: transform .2s ease;
}
.timeline-panel {
  padding: 0 34px 34px 152px;
}
.timeline-panel p {
  max-width: 760px;
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 450;
  line-height: 1.3;
}
.timeline-trigger b,
.timeline-trigger i {
  color: var(--pain-color, #6d21e6);
}
.timeline-item.is-open {
  background: linear-gradient(90deg, var(--pain-color, #6d21e6), color-mix(in srgb, var(--pain-color, #6d21e6) 72%, #ffffff));
  color: white;
}
.timeline-item.is-open .timeline-trigger b,
.timeline-item.is-open .timeline-trigger i {
  color: white;
}
.timeline-item.is-open .timeline-trigger {
  font-size: clamp(1.45rem, 3vw, 2.4rem);
  line-height: 1.18;
}
.timeline-item.is-open .timeline-trigger i {
  transform: rotate(90deg);
}


.conversion {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(280px, 430px);
  row-gap: 5px;
  column-gap: clamp(28px, 7vw, 90px);
  align-items: center;
}
.conversion .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0.21em;
  color: #ffffff;
  text-transform: uppercase;
}
.conversion .color-strip {
  grid-column: 1 / -1;
  margin-bottom: 5px;
}
.conversion::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 20, 59, .94) 0%, rgba(11, 20, 59, .78) 48%, rgba(11, 20, 59, .42) 100%),
    url("../img/Recurso 2 1.webp") right center / auto 112% no-repeat;
  opacity: .9;
}

.conversion > div:not(.metric-stack) { max-width: 820px; }
.conversion h2 { max-width: 820px; }
.conversion h2 span { color: var(--pink); }
.conversion p { color: #d5dbf8; max-width: 820px; }
.conversion h3 {
  max-width: 820px;
  margin-top: 48px;
  font-size: clamp(1.5rem, 3vw, 3.1rem);
}
.metric-stack {
  display: grid;
  gap: 22px;
}
.metric-stack article {
  padding: 30px;
  background: #090b13;
  border: 1px solid var(--line);
  border-radius: 10px;
}
.metric-stack strong {
  display: block;
  color: var(--pink);
  font-size: clamp(3.4rem, 8vw, 6.8rem);
  line-height: .9;
}
.metric-stack span {
  display: block;
  color: #dfe4f7;
  font-size: clamp(1rem, 2vw, 1.55rem);
  font-weight: 650;
}
.metric-stack small {
  display: block;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.7);
  color: #bdbdbd;
  font-size: .9rem;
  letter-spacing: .12em;
}

.center-title {
  display: grid;
  justify-items: center;
  text-align: center;
}
.center-title p:not(.eyebrow) { max-width: 640px; color: #cbd3f4; }
.shopper .center-title .eyebrow.pink {
  max-width: 1200px;
  margin-bottom: 16px;
  color: var(--pink);
  font-family: inherit;
  font-size: clamp(2rem, 4.5vw, 4.8rem);
  font-weight: 950;
  line-height: .98;
  letter-spacing: 0;
  text-transform: none;
}
.shopper {
  padding-left: clamp(16px, 3vw, 48px);
  padding-right: clamp(16px, 3vw, 48px);
}
.split {
  display: grid;
  grid-template-columns: minmax(260px, .85fr) minmax(280px, 1fr);
  gap: clamp(26px, 7vw, 86px);
  align-items: center;
  margin-top: 44px;
}
.shopper .split {
  grid-template-columns: minmax(620px, 680px) minmax(280px, 1fr);
  gap: clamp(48px, 6vw, 96px);
  align-items: center;
}
.shopper .split > div:last-child {
  position: relative;
  z-index: 2;
}
.product-slider-block {
  display: grid;
  justify-items: stretch;
}
.slider-action-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-top: -42px;
}
.slider-statement {
  max-width: 620px;
  margin: 0;
  color: #ffffff;
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
  font-size: 35px;
  font-weight: 700;
  font-style: normal;
  line-height: 40px;
  letter-spacing: -0.02em;
  text-align: left;
  vertical-align: middle;
}
.slider-copy {
  position: relative;
  min-height: 300px;
}
.slide-copy-panel {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .45s ease, transform .45s ease;
}
.slide-copy-panel.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.slider-copy-cta {
  justify-self: end;
  margin-top: 0;
  white-space: nowrap;
}
.product-fan {
  position: relative;
  width: min(680px, calc(100vw - 40px));
  height: 420px;
  margin: 80px auto;
  perspective: 1200px;
  justify-self: center;
}
.product-fan img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 260px;
  height: auto;
  border-radius: 28px;
  object-fit: cover;
  opacity: 0;
  transform-style: preserve-3d;
  transition: all .6s ease;
  box-shadow:
    0 20px 40px rgba(0,0,0,.25),
    0 8px 18px rgba(0,0,0,.15);
}
.product-fan img.position-1 {
  transform:
    translate(-330px, -50%)
    rotateY(35deg)
    scale(.82);
  z-index: 1;
  opacity: .55;
}
.product-fan img.position-2 {
  transform:
    translate(-235px, -50%)
    rotateY(22deg)
    scale(.9);
  z-index: 2;
  opacity: .75;
}
.product-fan img.position-3 {
  transform:
    translate(-50%, -50%)
    rotateY(0deg)
    scale(1);
  z-index: 5;
  opacity: 1;
}
.product-fan img.position-4 {
  transform:
    translate(-25px, -50%)
    rotateY(-22deg)
    scale(.9);
  z-index: 2;
  opacity: .75;
}
.product-fan img.position-5 {
  transform:
    translate(70px, -50%)
    rotateY(-35deg)
    scale(.82);
  z-index: 1;
  opacity: .55;
}
.shopper p { color: #d7def8; }

.category {
  display: grid;
  grid-template-columns: minmax(220px, .75fr) minmax(220px, 300px) minmax(260px, .95fr);
  gap: clamp(24px, 5vw, 64px);
  align-items: center;
}
.category h2 span, .category h2 { max-width: 450px; }
.category-card {
  min-height: 320px;
  padding: 30px;
  border-left: 5px solid #c7cdf0;
  background: white;
  box-shadow: 0 20px 45px rgba(22,28,60,.08);
}
.category-card strong {
  color: var(--violet);
  font-size: 4.6rem;
  line-height: 1;
}
.category-card h3 { color: var(--violet); }
.category-media {
  min-height: 300px;
  border-radius: 7px;
  background:
    linear-gradient(90deg, rgba(243,25,93,.72), rgba(24,183,188,.45)),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='700' height='460' viewBox='0 0 700 460'%3E%3Crect width='700' height='460' fill='%23223376'/%3E%3Cg fill='white' opacity='.42'%3E%3Ccircle cx='150' cy='150' r='54'/%3E%3Ccircle cx='300' cy='130' r='70'/%3E%3Ccircle cx='465' cy='155' r='62'/%3E%3Crect x='92' y='265' width='500' height='55' rx='28'/%3E%3C/g%3E%3C/svg%3E");
  background-size: cover;
}

.steps .center-title { margin-bottom: 54px; }
.steps article {
  display: grid;
  grid-template-columns: minmax(240px, .75fr) minmax(280px, 1fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: center;
  width: min(calc(100% - 48px), 1380px);
  margin: 0 auto 70px;
}
.steps span {
  display: block;
  color: var(--pink);
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 950;
  line-height: 1;
}
.steps article:nth-of-type(2) span { color: #8c6cff; }
.steps article:nth-of-type(3) span { color: #43d3a2; }
.steps p { color: #c7cce4; }
.steps .button {
  min-height: 34px;
  padding: 0 18px;
  font-size: .78rem;
}
.package-art, .dashboard-art {
  min-height: 285px;
  border-radius: 8px;
  background: #1f2430;
  box-shadow: 0 28px 80px rgba(0,0,0,.38);
}
.red-pack { background: linear-gradient(135deg, #f8ead0 0 35%, #e11846 35% 58%, #305f43 58%); }
.teal-pack { background: linear-gradient(135deg, #d6fff5 0 34%, #19b7ba 34% 58%, #e8fff8 58%); }
.dashboard-art {
  background:
    linear-gradient(90deg, #f4f6ff 0 70%, #182b72 70%),
    linear-gradient(#fff, #fff);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin: 40px 0 28px;
}
.feature-grid article {
  padding: 24px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.045);
  border-radius: 6px;
}
.feature-grid span {
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 3px;
  background: var(--pink);
  margin-bottom: 18px;
}
.feature-grid h3 { font-size: 1rem; margin-bottom: 8px; }
.feature-grid p { color: #bfc8eb; margin-bottom: 0; }

.orbit-section { text-align: center; }
.orbit {
  position: relative;
  width: min(560px, 86vw);
  aspect-ratio: 1;
  margin: 50px auto 0;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
}
.orbit::before {
  content: "";
  position: absolute;
  inset: 23%;
  border: 1px dashed rgba(255,255,255,.22);
  border-radius: 50%;
}
.orbit strong,
.orbit span {
  position: absolute;
  display: grid;
  min-width: 110px;
  min-height: 42px;
  place-items: center;
  border-radius: 4px;
  background: #101737;
  border: 1px solid rgba(255,255,255,.15);
  font-weight: 900;
}
.orbit strong {
  inset: calc(50% - 30px) auto auto calc(50% - 70px);
  min-width: 140px;
  min-height: 60px;
  background: var(--pink);
  text-align: center;
}
.orbit span:nth-child(1) { top: -18px; left: calc(50% - 55px); color: #75ddff; }
.orbit span:nth-child(2) { right: -28px; top: calc(50% - 21px); color: #f7d85e; }
.orbit span:nth-child(4) { bottom: -18px; left: calc(50% - 55px); color: #9d7dff; }
.orbit span:nth-child(5) { left: -28px; top: calc(50% - 21px); color: #4be09d; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.pricing-grid article {
  padding: 28px;
  background: #fff;
  border: 1px solid #e4e6ef;
  border-radius: 7px;
}
.pricing-grid .highlight {
  background: var(--pink);
  color: white;
}
.pricing-grid a {
  display: inline-flex;
  margin-top: 14px;
  font-weight: 950;
  color: var(--pink);
}
.pricing-grid .highlight a { color: white; }

.results {
  display: grid;
  grid-template-columns: minmax(240px, .8fr) minmax(280px, 1fr);
  gap: clamp(28px, 7vw, 86px);
}
.quotes {
  display: grid;
  gap: 18px;
}
blockquote {
  margin: 0;
  padding: 20px 24px;
  border-left: 5px solid var(--pink);
  background: white;
  box-shadow: 0 16px 38px rgba(18,21,45,.08);
  font-weight: 750;
}
cite {
  display: block;
  margin-top: 12px;
  color: #687087;
  font-style: normal;
  font-size: .9rem;
}
.table-card {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, 1fr);
  margin-top: 30px;
  border: 1px solid #d9dce8;
  border-radius: 7px;
  overflow: hidden;
  background: white;
}
.table-card div {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 10px;
  border-right: 1px solid #e7e8ef;
  border-bottom: 1px solid #e7e8ef;
  font-weight: 800;
  text-align: center;
}
.table-card div:nth-child(-n+5) {
  background: #111a42;
  color: white;
}
.table-card .yes::before {
  content: "";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--pink);
}
.table-note {
  max-width: 720px;
  margin: 28px auto 10px;
  color: #373b52;
  text-align: center;
  font-weight: 650;
}
.comparison > h3 {
  max-width: 820px;
  margin: 0 auto;
  color: #151b48;
  text-align: center;
}

.footer,
.contact-section {
  text-align: center;
}
.footer h2,
.contact-section h2 { margin-inline: auto; }
.footer div,
.contact-section div {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}
.footer small,
.contact-section small {
  display: block;
  margin-top: 60px;
  color: #ccd4f2;
  font-weight: 900;
  letter-spacing: -0.04em;
}
.infuse-footer {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 8vw, 96px) clamp(20px, 7vw, 108px) 28px;
  background: linear-gradient(180deg, #10121a 0%, #070911 100%);
  color: #f8f9ff;
}
.infuse-footer .footer-glow {
  position: absolute;
  inset: auto -18% -45% auto;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(243,25,93,.34), rgba(24,183,188,.16) 44%, transparent 70%);
  pointer-events: none;
}
.infuse-footer .footer-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, .9fr) minmax(420px, 1.1fr);
  gap: clamp(36px, 7vw, 96px);
  align-items: start;
}
.infuse-footer .footer-brand h2 {
  margin: 0 0 14px;
  font-size: clamp(42px, 6vw, 82px);
  line-height: .9;
  letter-spacing: 0;
  color: #ffffff;
}
.infuse-footer .footer-eyebrow {
  margin: 0 0 18px;
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  line-height: 1.4;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #f3195d;
}
.infuse-footer .footer-brand h3 {
  max-width: 560px;
  margin: 0 0 16px;
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1;
  color: #ffffff;
}
.infuse-footer .footer-brand p:not(.footer-eyebrow) {
  max-width: 520px;
  margin: 0;
  color: #cfd5ea;
  font-size: 1.04rem;
}
.infuse-footer .footer-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 28px;
  padding: 0 24px;
  border-radius: 999px;
  background: #1ad46e;
  color: #04160c;
  font-weight: 900;
  box-shadow: var(--button-shadow);
}
.infuse-footer .footer-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 42px);
}
.infuse-footer .footer-links > div {
  display: grid;
  align-content: start;
  gap: 10px;
}
.infuse-footer .footer-links h4 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.1;
}
.infuse-footer .footer-links a,
.infuse-footer .footer-links span,
.infuse-footer .footer-bottom a,
.infuse-footer .footer-bottom p {
  color: #bfc7df;
  font-size: .94rem;
  line-height: 1.4;
}
.infuse-footer .footer-links a:hover,
.infuse-footer .footer-bottom a:hover {
  color: #ffffff;
}
.infuse-footer .footer-bottom {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-top: clamp(42px, 7vw, 82px);
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.infuse-footer .footer-bottom p {
  margin: 0;
}
.infuse-footer .footer-bottom div {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
@media (max-width: 900px) {
  .infuse-footer .footer-container,
  .infuse-footer .footer-links {
    grid-template-columns: 1fr;
  }
  .infuse-footer .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 1120px) {
  .shopper .split {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {
  nav { display: none; }
  .hero,
  .conversion,
  .split,
  .category,
  .steps article,
  .results {
    grid-template-columns: 1fr;
  }
  .hero {
    min-height: auto;
    padding-bottom: clamp(56px, 9vw, 96px);
  }
  .hero-content {
    grid-template-columns: 1fr;
  }
  .hero-title h1 {
    margin-bottom: 20px;
  }
  .hero-description {
    padding-top: 0;
  }
  .product-strip {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-strip:not([data-product-slider]) .photo-card { display: none; }
  .feature-grid,
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .table-card {
    min-width: 720px;
  }
  .comparison {
    overflow-x: auto;
  }
}

@media (max-width: 520px) {
  .slider-action-row {
    grid-template-columns: 1fr;
    margin-top: -24px;
  }
  .slider-copy-cta {
    justify-self: start;
  }
  .site-header { gap: 12px; }
  .nav-cta {
    padding-inline: 12px;
    font-size: .76rem;
  }
  .hero {
    min-height: auto;
    padding-bottom: 88px;
  }
  .product-strip {
    gap: 8px;
  }
  .timeline-trigger {
    grid-template-columns: 44px 32px 1fr;
    min-height: 74px;
    padding: 0 18px;
  }
  .timeline-panel {
    padding: 0 18px 26px 94px;
  }
  .product-fan {
    height: 300px;
    margin: 42px auto;
  }
  .product-fan img {
    width: 180px;
    border-radius: 80px 80px 0 0;
  }
  .product-fan img.position-1 {
    transform: translate(-210px, -50%) rotateY(35deg) scale(.78);
  }
  .product-fan img.position-2 {
    transform: translate(-145px, -50%) rotateY(22deg) scale(.88);
  }
  .product-fan img.position-4 {
    transform: translate(-35px, -50%) rotateY(-22deg) scale(.88);
  }
  .product-fan img.position-5 {
    transform: translate(35px, -50%) rotateY(-35deg) scale(.78);
  }
  .box {
    min-height: 118px;
  }
  .orbit span:nth-child(2) { right: -8px; }
  .orbit span:nth-child(5) { left: -8px; }
}

.color-strip {
  grid-column: 1 / -1;
  display: block;
  width: 100%;
  max-width: none;
  height: 2px;
  margin: 0 0 5px;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;

  background: linear-gradient(
    90deg,
    #E8185D,
    #7B2AB5,
    #1B3FA0,
    #009B8E,
    #F5A623,
    #F47520
  );
}


.light-section {
  background: #e9e9e9;
  padding: 50px 6vw;
  position: relative;
  overflow: hidden;
}

.category.light-section {
  display: block;
  padding-top: 18px;
  padding-bottom: 44px;
}

.category > .eyebrow.pink {
  border-bottom: 0;
  padding-bottom: 0;
  margin: 0 0 8px;
  line-height: 1;
  display: block;
}
.category > .eyebrow.pink + .color-strip {
  display: block;
  height: 2px;
  margin-top: 0;
  margin-bottom: 0;
}

.category-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin: 28px 0 56px;
}

.category-intro h2 {
  max-width: 620px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: .95;
  color: #c81046;
  margin: 0;
}

.category-intro p {
  border-left: 1px solid #ef174f;
  padding-left: 40px;
  max-width: 620px;
  font-size: 25px;
  line-height: 1.1;
  color: #111;
}

.category-showcase {
  position: relative;
  display: grid;
  grid-template-columns: 360px 1fr repeat(5, 56px);
  height: 500px;
  box-shadow: 0 18px 28px rgba(0,0,0,.18);
  background: white;
}

.category-card {
  background: #f3f3f3;
  position: relative;
  padding: 70px 55px;
  display: flex;
  align-items: center;
}

.side-label {
  position: absolute;
  left: 24px;
  top: 70px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  text-transform: uppercase;
  font-weight: 800;
  color: #2946ad;
}

.card-copy strong {
  display: block;
  font-size: 92px;
  line-height: .8;
  color: #6414d8;
}

.card-copy h3 {
  font-size: 40px;
  margin: 10px 0 25px;
  color: #6414d8;
}

.card-copy p {
  font-size: 17px;
  line-height: 1.15;
  color: #2946ad;
}

.category-media {
  position: relative;
  overflow: hidden;
}

.category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.category-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 50%, transparent 0 24%, rgba(210,0,40,.55) 25% 31%, transparent 32%),
    radial-gradient(circle at 15% 50%, transparent 0 47%, rgba(210,0,40,.45) 48% 54%, transparent 55%);
}

.category-tab {
  position: relative;
  border: 0;
  border-left: 3px solid white;
  background: #2946ad;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 14px;
}

.category-tab:not(.active) {
  background: #2946ad;
  color: #fff;
}

.category-tab:not(.active) .tab-icon {
  color: #fff;
}

.category-tab:not(.active) .tab-number {
  color: #fff;
}

.category-tab .tab-icon {
  position: absolute;
  bottom: 18px;
  transform: rotate(180deg);
  font-size: 22px;
}

.category-tab .tab-label {
  display: block;
}

.category-tab .tab-number {
  position: absolute;
  top: 12px;
  transform: rotate(0deg);
  font-size: 28px;
  font-weight: 950;
  line-height: 1;
  opacity: .95;
}

.category-tab.active {
  background: #ef174f;
}

.category-tab.active .tab-number {
  display: block;
  opacity: 1;
  color: #fff;
}


.category-cta {
  display: block;
  width: max-content;
  margin: 34px 0 0 auto;
  background: #ef174f;
  color: white;
  text-decoration: none;
  font-weight: 800;
  padding: 18px 60px;
  border-radius: 999px;
  font-size: 18px;
  box-shadow: var(--button-shadow);
}

@media (max-width: 900px) {
  .category-intro {
    grid-template-columns: 1fr;
  }

  .category-intro p {
    border-left: 0;
    padding-left: 0;
  }

  .category-showcase {
    grid-template-columns: 1fr;
    height: auto;
  }

  .category-media {
    height: 320px;
  }

  .category-tab {
    writing-mode: initial;
    transform: none;
    height: 78px;
    padding: 10px 18px;
    gap: 10px;
  }

  .category-tab .tab-icon,
  .category-tab .tab-number {
    position: static;
    transform: none;
  }

  .category-tab .tab-number {
    display: block;
    font-size: 24px;
  }
}

.clients-section {
  background: #ececec;
  padding: 40px 0 80px;
  overflow: hidden;
}

.clients-header {
  width: min(1200px, 90%);
  margin: 0 auto 70px;
}

.clients-header h2 {
  text-align: center;
  font-size: clamp(42px, 5vw, 74px);
  line-height: .95;
  font-weight: 900;
  color: #000;
  margin: 0;
}

.clients-header h2 span {
  color: #d90d4f;
}

/* =========================
   LOGO MARQUEE
========================= */

.logo-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 44px;
  width: max-content;

  animation: scrollLeft 28s linear infinite;
}

.logo-track img {
  height: clamp(132px, 11vw, 188px);
  width: auto;

  opacity: 1;
  filter: none;
  transition: .35s ease;
}

.logo-track img:hover {
  opacity: 1;
  filter: none;
  transform: scale(1.05);
}

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

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

/* fade edges */

.logo-slider::before,
.logo-slider::after {
  content: "";
  position: absolute;
  top: 0;
  width: 180px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.logo-slider::before {
  left: 0;
  background: linear-gradient(to right, #ececec, transparent);
}

.logo-slider::after {
  right: 0;
  background: linear-gradient(to left, #ececec, transparent);
}

/* MOBILE */

@media (max-width: 768px) {
  .logo-track {
    gap: 70px;
  }

  .logo-track img {
    height: 108px;
  }

  .clients-header h2 {
    font-size: 42px;
  }
}

.black-section {
  background: #000;
  color: #fff;
}

.steps {
  overflow: hidden;
}

.steps > .eyebrow,
.steps > .color-strip,
.steps > .center-title {
  width: min(1200px, 90%);
  margin-left: auto;
  margin-right: auto;
}

.steps > .eyebrow {
  padding-top: 50px;
  margin-bottom: 12px;
}

.color-strip {
  height: 2px;
  background: linear-gradient(90deg, #2946ad, #7b2ff7, #ef174f, #ff7a00);
}

.center-title {
  text-align: center;
  padding: 90px 0 100px;
}

.center-title h2 {
  max-width: 900px;
  margin: 0 auto 24px;
  font-size: clamp(44px, 5vw, 82px);
  line-height: .95;
  font-weight: 900;
}

.center-title p {
  max-width: 720px;
  margin: 0 auto;
  font-size: clamp(20px, 2vw, 30px);
  line-height: 1.15;
  color: rgba(255,255,255,.78);
}

.steps .center-title h2 {
  max-width: 1800px;
}

.steps .center-title p {
  max-width: 1440px;
}

.step-panel {
  width: 100%;
  margin: 0;
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #000;
}

.step-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(
      90deg,
      rgba(0,0,0,1) 0%,
      rgba(0,0,0,.94) 24%,
      rgba(0,0,0,.55) 47%,
      rgba(0,0,0,.12) 72%,
      rgba(0,0,0,.82) 100%
    ),
    var(--bg-image);
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
}

.step-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to bottom,
      #000 0%,
      transparent 16%,
      transparent 78%,
      #000 100%
    );
}

.step-content {
  position: relative;
  z-index: 2;
  width: min(1180px, 88%);
  margin: 0 auto;
}

.step-content span {
  display: block;
  font-size: clamp(90px, 10vw, 160px);
  line-height: .8;
  color: #e40046;
  font-weight: 900;
  margin-bottom: 36px;
}

.step-content h3 {
  max-width: 620px;
  margin: 0 0 34px;
  font-size: clamp(48px, 5vw, 82px);
  line-height: .95;
  font-weight: 900;
}

.step-content p {
  max-width: 600px;
  margin: 0 0 80px;
  font-size: clamp(22px, 2vw, 32px);
  line-height: 1.08;
  font-weight: 600;
  color: rgba(255,255,255,.92);
}

.step-content p strong {
  color: #e40046;
}

.step-content .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 380px;
  padding: 22px 44px;
  border-radius: 999px;
  background: #e40046;
  color: #fff;
  text-decoration: none;
  font-size: 24px;
  font-weight: 800;
}

@media (max-width: 768px) {
  .center-title {
    text-align: left;
    padding: 60px 0 70px;
  }

  .step-panel {
    min-height: 680px;
    align-items: flex-end;
    padding-bottom: 60px;
  }

  .step-panel::before {
    background-position: 68% center;
  }

  .step-content p {
    margin-bottom: 40px;
  }

  .step-content .button {
    width: 100%;
    min-width: unset;
    font-size: 18px;
  }
}

.dark-panel {
  background: #01092d;
  padding: 90px 6vw 110px;
}

/* =========================
   HEADER
========================= */

.platform-header {
  margin-bottom: 70px;
  text-align: left;
}

.eyebrow {
  display: inline-block;
  margin: 0 0 14px;

  text-align: left;
  text-transform: uppercase;
  letter-spacing: 5px;

  font-size: 13px;
  color: #ff0a57;
}

.color-strip {
  height: 2px;
  width: 100%;
  margin-bottom: 50px;

  background: linear-gradient(
    90deg,
    #2946ad,
    #7b2ff7,
    #ef174f,
    #ff7a00
  );
}

.section-title h2 {
  max-width: 1100px;

  margin: 0;

  color: #fff;

  font-size: clamp(42px, 5vw, 76px);
  line-height: .95;
  font-weight: 900;
}

/* =========================
   GRID
========================= */

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;

  margin-bottom: 70px;
}

/* =========================
   CARD
========================= */

.feature-card {
  min-height: 240px;

  padding: 34px;

  border-radius: 18px;

  background: #0b142b;

  border: 1px solid rgba(255,255,255,.08);

  color: white;
}

.feature-top {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.feature-icon {
  width: 46px;
  height: 46px;

  border-radius: 12px;

  background: rgba(228,0,70,.18);
  border: 1px solid rgba(228,0,70,.5);

  color: #ff0a57;

  display: grid;
  place-items: center;

  font-size: 22px;

  flex-shrink: 0;
}

.feature-icon img {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
}

.feature-card h3 {
  margin: 2px 0 0;

  font-size: 30px;
  line-height: .95;
  font-weight: 800;
}

.feature-grid .feature-line {
  display: block;
  width: 48px;
  height: 2px;
  min-height: 0;
  border-radius: 999px;
  background: #ff0a57;
  margin: 34px 0 26px;
}

.feature-card p {
  margin: 0;

  max-width: 320px;

  color: rgba(255,255,255,.82);

  font-size: 17px;
  line-height: 1.25;
}

/* =========================
   HIGHLIGHT CARD
========================= */

.feature-card.highlight {
  background: #121022;
}

.feature-card.highlight .feature-icon {
  background: rgba(130,40,210,.2);
  border-color: rgba(168,85,247,.5);
  color: #a855f7;
}

.feature-card.highlight .feature-line {
  background: #a855f7;
}

.feature-card.highlight strong {
  display: block;

  margin-bottom: 12px;

  color: #ff0a57;

  font-size: 24px;
}

/* =========================
   BUTTON
========================= */

.button.centered {
  display: flex;
  justify-content: center;
  align-items: center;

  width: fit-content;

  margin: 0 auto;
}

.button.primary {
  min-width: 360px;

  padding: 22px 42px;

  border-radius: 999px;

  background: #e40046;
  color: #fff;

  text-decoration: none;

  font-size: 22px;
  font-weight: 800;
}

/* =========================
   MOBILE
========================= */

@media (max-width: 980px) {

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

@media (max-width: 680px) {

  .dark-panel {
    padding: 70px 24px 90px;
  }

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

  .section-title h2 {
    font-size: 46px;
  }

  .feature-card h3 {
    font-size: 24px;
  }

  .button.primary {
    width: 100%;
    min-width: unset;

    font-size: 18px;
  }
}

.methodology-image {
  display: block;
  width: min(900px, 100%);
  height: auto;
  margin: 50px auto 0;
}

.orbit-section .platform-header {
  margin-bottom: 0;
}

.orbit-section .methodology-image {
  margin-top: 0;
}

.orbit-section .center-title {
  padding-bottom: 0;
}

.orbit-section .center-title p {
  margin-bottom: 0;
}

#metodologia .center-title h2,
#metodologia .center-title p {
  max-width: 1000px;
}

.steps > .color-strip {
  width: min(1800px, 90%);
  margin-left: auto;
  margin-right: auto;
}

.steps > .color-strip,
.steps > .center-title {
  width: min(1800px, 90%);
}

#solucion > .eyebrow,
#solucion > .solution-strip,
#solucion > .center-title {
  width: min(1200px, 90%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#solucion > .solution-strip {
  display: block;
  height: 2px;
  margin-bottom: 50px;
  background: linear-gradient(90deg, #2946ad, #7b2ff7, #ef174f, #ff7a00);
}

#solucion .center-title h2,
#solucion .center-title p {
  width: 100% !important;
  max-width: none !important;
}

#solucion > .eyebrow {
  display: block !important;
  box-sizing: border-box;
}

#solucion > .center-title {
  box-sizing: border-box;
}

#solucion {
  padding-left: 6vw !important;
  padding-right: 6vw !important;
}

#solucion > .eyebrow,
#solucion > .solution-strip,
#solucion > .center-title {
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#modelo .section-title h2 {
  color: #000 !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
.section-title h2,
.center-title h2,
.hero-title h1,
.category-intro h2,
.card-copy h3,
.clients-header h2,
.step-content h3,
.feature-card h3,
.comparison > h3,
.footer h2 {
  font-family: var(--global-heading-font, ui-sans-serif) !important;
}

body,
p,
a,
button,
input,
textarea,
select,
label,
li,
span,
small,
strong,
b,
em,
cite,
blockquote,
.nav-cta,
.eyebrow,
.button,
.category-tab,
.timeline-trigger,
.card-copy p,
.feature-card p,
.step-content p,
.center-title p,
.section-title p {
  font-family: var(--global-body-font, ui-sans-serif) !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
h1 span,
h2 span,
h3 span,
h4 span,
h5 span,
h6 span,
.section-title h2,
.center-title h2,
.hero-title h1,
.category-intro h2,
.card-copy h3,
.clients-header h2,
.step-content h3,
.feature-card h3,
.comparison > h3,
.footer h2 {
  font-family: var(--global-heading-font, ui-sans-serif) !important;
}

#modelo.light-section {
  background: #e9e9e9;
}

#modelo.model {
  padding: 28px 28px 38px;
  font-family: var(--global-body-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
}

#modelo .section-title {
  max-width: 980px;
}

#modelo .eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: 8px;
  font-weight: 700;
}

#modelo .pink {
  color: #e0093f;
}

#modelo .color-strip {
  width: 100%;
  height: 2px;
  margin: 8px 0 68px;
  background: linear-gradient(
    90deg,
    #e0093f 0%,
    #071033 25%,
    #006bff 50%,
    #18c7b3 72%,
    #ff6a00 100%
  );
}

#modelo .section-title h2 {
  margin: 0;
  max-width: 520px;
  font-size: clamp(44px, 5vw, 58px);
  line-height: 0.92;
  font-weight: 900;
  letter-spacing: -0.06em;
  color: #000 !important;
}

#modelo .section-copy {
  margin: 48px 0 60px;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.05em;
  color: #111;
}

#modelo .pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

#modelo .pricing-card {
  min-height: 210px;
  padding: 36px 18px;
  border: 1px solid #d3d3d3;
  border-radius: 14px;
  background: transparent;
  display: flex;
  flex-direction: column;
}

#modelo .pricing-card .tag {
  width: fit-content;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f1cbd6;
  color: #e0093f;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 1px;
}

#modelo .pricing-card h3 {
  margin: 16px 0 12px;
  font-size: 21px;
  line-height: 1;
  color: #071033;
  font-weight: 900;
}

#modelo .pricing-card p {
  margin: 0 0 26px;
  max-width: 280px;
  color: #6b6f7c;
  font-size: 14px;
  line-height: 1.05;
  letter-spacing: -0.03em;
}

#modelo .pricing-card a {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  border-radius: 5px;
  background: #020a2b;
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  box-shadow: var(--button-shadow);
}

#modelo .pricing-card.highlight {
  background: #e0093f;
  border-color: #e0093f;
  color: #fff;
}

#modelo .pricing-card.highlight .tag {
  background: rgba(255, 255, 255, 0.25);
  color: #fff;
}

#modelo .pricing-card.highlight h3,
#modelo .pricing-card.highlight p {
  color: #fff;
}

#modelo .pricing-card.highlight a {
  background: #e9e9e9;
  color: #e0093f;
}

@media (max-width: 850px) {
  #modelo .pricing-grid {
    grid-template-columns: 1fr;
  }

  #modelo .color-strip {
    margin-bottom: 42px;
  }

  #modelo .section-copy {
    margin: 32px 0 40px;
    font-size: 20px;
  }
}

.results {
  background: #e9e9e9;
  display: block;
  padding: 18px 60px 38px;
  font-family: var(--global-body-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
}

.results .results-inner {
  display: grid;
  grid-template-columns: 38% 62%;
  gap: 40px;
  align-items: center;
}

.results .eyebrow {
  margin: 0;
  font-size: 13px;
  letter-spacing: 7px;
  font-weight: 700;
  text-transform: uppercase;
}

.results .pink {
  color: #e0093f;
}

.results .color-strip {
  width: 100%;
  height: 2px;
  margin: 6px 0 48px;
  background: linear-gradient(
    90deg,
    #e0093f,
    #071033 28%,
    #006bff 52%,
    #14b8a6 76%,
    #ff6a00
  );
}

.results .results-copy h2 {
  margin: 0;
  font-size: clamp(54px, 5.5vw, 66px);
  line-height: 0.92;
  letter-spacing: -0.07em;
  font-weight: 900;
  color: #03083d;
}

.results .results-copy h2 span {
  color: #e0093f;
}

.results .results-question {
  margin: 42px 0 72px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.05em;
  color: #000;
}

.results .button.primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 328px;
  height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  background: #e0093f;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.results .quotes {
  display: flex;
  flex-direction: column;
  gap: 44px;
  padding-top: 130px;
}

.results .quote {
  display: grid;
  grid-template-columns: 8px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.results .quote-content {
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
  gap: 20px;
  align-items: center;
}

.results .quote-content.no-photo {
  grid-template-columns: minmax(0, 1fr);
}

.results .quote-line {
  width: 8px;
  height: 145px;
  background: #bfbfbf;
}

.results .quote.active .quote-line {
  background: #e0093f;
}

.results .quote img {
  width: 172px;
  height: 172px;
  border-radius: 50%;
  object-fit: cover;
}

.results .quote h3,
.results .quote h4 {
  margin: 0;
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
}

.results .quote h3 {
  color: #0a0a0a;
}

.results .quote h4 {
  margin-bottom: 8px;
  color: #0a0a0a;
}

.results .quote p {
  margin: 0;
  max-width: 520px;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  color: #222;
}

.results .quote.muted {
  opacity: 0.45;
}

@media (max-width: 900px) {
  .results {
    padding: 24px;
  }

  .results .results-inner {
    grid-template-columns: 1fr;
  }

  .results .color-strip {
    margin-bottom: 60px;
  }

  .results .quotes {
    padding-top: 20px;
  }

  .results .quote {
    grid-template-columns: 6px minmax(0, 1fr);
    gap: 18px;
  }

  .results .quote-content {
    grid-template-columns: 128px minmax(0, 1fr);
    gap: 14px;
  }

  .results .quote img {
    width: 128px;
    height: 128px;
  }

  .results .button.primary {
    min-width: 100%;
  }
}

@media (max-width: 520px) {
  .results .quote-content {
    grid-template-columns: 1fr;
  }
}

.results .quote {
  transition: opacity .35s ease, transform .35s ease;
}

.results .quote.active {
  opacity: 1;
  transform: translateX(0) scale(1.04);
}

.results .quote.muted {
  opacity: 0.45;
  transform: translateX(0) scale(1);
}

.comparison {
  background: #e9e9e9;
  padding: 36px 36px 28px;
  font-family: var(--global-body-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
}

.comparison-title h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 58px);
  line-height: 0.92;
  letter-spacing: -0.06em;
  font-weight: 900;
  color: #000;
}

.comparison-title h2 span {
  color: #e0093f;
}

.comparison-title p {
  margin: 24px 0 58px;
  font-size: 23px;
  line-height: 1.18;
  letter-spacing: -0.05em;
  color: #111;
}

.compare-table {
  display: grid;
  grid-template-columns: 220px repeat(6, 1fr);
  max-width: 980px;
  margin: 0 auto;
  border-radius: 16px 16px 0 0;
  overflow: hidden;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.cell {
  min-height: 58px;
  padding: 0 18px;
  background: #e4e4e4;
  border-right: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #060a2d;
  font-size: 13px;
}

.cell.label {
  justify-content: flex-start;
  padding-left: 22px;
  font-size: 13px;
}

.cell.head {
  min-height: 56px;
  background: #03071c;
  color: #7e8290;
  font-size: 9px;
  line-height: 1.25;
  letter-spacing: 2px;
  font-weight: 900;
  text-align: center;
}

.cell.empty {
  border-top-left-radius: 16px;
}

.icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
}

.icon.yes {
  background: #cce9d6;
  color: #18a05e;
}

.icon.no {
  background: #efd2d3;
  color: #e44a4a;
}

.icon.mid {
  background: #eadf9d;
  color: #c59c00;
}

.cell.infuse {
  min-height: 66px;
  background: #e0093f;
  border-color: rgba(0, 0, 0, 0.12);
}

.cell.label.infuse {
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.icon.big {
  width: 34px;
  height: 34px;
  background: #e9e9e9;
  color: #e0093f;
  font-size: 23px;
  font-weight: 900;
}

.comparison-note {
  margin: 54px 0 24px;
  text-align: center;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.05em;
  font-weight: 700;
  color: #000;
}

.comparison h3 {
  margin: 0;
  text-align: center;
  font-size: 31px;
  line-height: 1.12;
  letter-spacing: -0.05em;
  font-weight: 900;
  color: #03083d;
}

@media (max-width: 900px) {
  .comparison {
    padding: 28px 20px;
  }

  .compare-table {
    overflow-x: auto;
    display: grid;
    grid-template-columns: 160px repeat(6, 120px);
  }

  .comparison-title p br,
  .comparison-note br,
  .comparison h3 br {
    display: none;
  }

  .comparison-note,
  .comparison h3 {
    text-align: left;
  }
}

.comparison > h3 {
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}

#modelo.model,
.results,
.comparison {
  padding-left: clamp(20px, 7vw, 108px) !important;
  padding-right: clamp(20px, 7vw, 108px) !important;
}

@media (max-width: 900px) {
  #modelo.model,
  .results,
  .comparison {
    padding-left: 24px !important;
    padding-right: 24px !important;
  }
}

.photo-card {
  --banner-card-w: 183px;
  --banner-card-h: 327px;
  --banner-card-gap: 10px;
  position: relative;
  overflow: visible;
  border-radius: 0;
  display: flex;
  align-items: stretch;
  gap: var(--banner-card-gap);
}

.photo-card img {
  width: var(--banner-card-w);
  height: var(--banner-card-h);
  object-fit: cover;
  border-radius: 80px 0 0 0;
  display: block;
  flex: 0 0 var(--banner-card-w);
}

.card-overlay {
  position: static;
  width: var(--banner-card-w);
  height: var(--banner-card-h);
  flex: 0 0 var(--banner-card-w);
  background: #ef1b55;
  color: #fff;
  padding: 28px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 80px 0 0;
}

.photo-card-title {
  display: block;
  font-size: clamp(1.35rem, 2.4vw, 2.4rem);
  line-height: 1.02;
  margin-bottom: 12px;
  font-weight: 900;
}
.card-overlay h3 {
  margin: 0;
  font-size: 56px;
  line-height: 0.9;
  font-weight: 800;
}

.card-overlay p {
  margin: 14px 0 0;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

/* Shopper section replacement */
.shopper {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 8vw, 120px) clamp(24px, 5vw, 88px);
  background:
    radial-gradient(circle at 18% 28%, rgba(224, 0, 64, .18), transparent 34%),
    radial-gradient(circle at 78% 18%, rgba(120, 80, 255, .16), transparent 32%),
    #03071f;
}

.shopper .split {
  display: grid;
  grid-template-columns: minmax(420px, 1fr) minmax(420px, 0.95fr);
  gap: clamp(48px, 7vw, 110px);
  align-items: center;
  margin-top: 0;
}

.product-slider-block {
  display: flex;
  flex-direction: column;
  gap: 44px;
  justify-items: initial;
}

.product-fan {
  position: relative;
  width: auto;
  min-height: 470px;
  height: auto;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: none;
  justify-self: auto;
}

.product-fan img {
  position: absolute;
  top: auto;
  left: auto;
  width: clamp(220px, 25vw, 360px);
  aspect-ratio: 4 / 5;
  height: auto;
  object-fit: cover;
  border-radius: 24px;
  opacity: 1;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .42);
  transition: transform .45s ease, opacity .45s ease, filter .45s ease;
}

.product-fan .position-1,
.product-fan img.position-1 {
  transform: translateX(-210px) scale(.78);
  opacity: .55;
  filter: saturate(.75) brightness(.75);
}

.product-fan .position-2,
.product-fan img.position-2 {
  transform: translateX(-120px) scale(.88);
  opacity: .75;
  filter: saturate(.85) brightness(.85);
}

.product-fan .position-3,
.product-fan img.position-3 {
  transform: translateX(0) scale(1.08);
  z-index: 5;
  opacity: 1;
  filter: none;
}

.product-fan .position-4,
.product-fan img.position-4 {
  transform: translateX(120px) scale(.88);
  opacity: .75;
  filter: saturate(.85) brightness(.85);
}

.product-fan .position-5,
.product-fan img.position-5 {
  transform: translateX(210px) scale(.78);
  opacity: .55;
  filter: saturate(.75) brightness(.75);
}

.slider-action-row {
  display: contents;
}

.slider-statement {
  max-width: 680px;
  margin: 0;
  font-size: clamp(36px, 4.6vw, 64px);
  line-height: .98;
  letter-spacing: -0.055em;
  font-weight: 800;
  color: #f5f5fa;
}

.slider-statement strong,
.slider-statement em {
  color: #e40046;
  font-style: normal;
}

.slider-copy {
  position: static;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.slide-copy-panel {
  position: static;
  inset: auto;
  padding: 0 0 28px 28px;
  border-left: 3px solid rgba(255,255,255,.12);
  opacity: .38;
  pointer-events: auto;
  transform: none;
  transition: opacity .35s ease, border-color .35s ease;
}

.slide-copy-panel + .slide-copy-panel {
  border-top: 1px solid rgba(255,255,255,.14);
  padding-top: 28px;
}

.slide-copy-panel.is-active {
  opacity: 1;
  border-left-color: #e40046;
}

.slide-copy-panel h3 {
  margin: 0 0 10px;
  max-width: 680px;
  color: #f7f7fb;
  font-size: clamp(30px, 3vw, 48px);
  line-height: 1.02;
  letter-spacing: -0.045em;
  font-weight: 800;
}

.slide-copy-panel p {
  margin: 0;
  max-width: 650px;
  color: rgba(247,247,251,.82);
  font-size: clamp(18px, 1.55vw, 28px);
  line-height: 1.28;
  letter-spacing: -0.025em;
}

.slider-copy-cta {
  align-self: flex-start;
  justify-self: auto;
  margin-top: 20px;
  min-width: 320px;
  padding: 20px 42px;
  border-radius: 999px;
  background: #e40046;
  color: white;
  font-size: 22px;
  font-weight: 800;
  text-align: center;
  text-decoration: none;
  box-shadow: 0 18px 50px rgba(228, 0, 70, .28);
  white-space: normal;
}

@media (max-width: 980px) {
  .shopper .split {
    grid-template-columns: 1fr;
  }

  .product-fan {
    min-height: 360px;
  }

  .product-fan img {
    width: 260px;
  }

  .product-fan .position-1,
  .product-fan .position-5 {
    display: none;
  }

  .product-fan .position-2,
  .product-fan img.position-2 {
    transform: translateX(-90px) scale(.86);
  }

  .product-fan .position-4,
  .product-fan img.position-4 {
    transform: translateX(90px) scale(.86);
  }

  .slider-copy-cta {
    width: 100%;
  }
}

/* Shopper right column: show three rotating entries */
.slider-copy {
  min-height: 620px;
  justify-content: center;
  overflow: hidden;
}

.slide-copy-panel {
  display: none;
}

.slide-copy-panel.is-prev,
.slide-copy-panel.is-active,
.slide-copy-panel.is-next {
  display: block;
}

.slide-copy-panel.is-prev {
  order: 1;
  opacity: .34;
}

.slide-copy-panel.is-active {
  order: 2;
  opacity: 1;
  border-left-color: #e40046;
  transform: scale(1.02);
}

.slide-copy-panel.is-next {
  order: 3;
  opacity: .34;
}

.slide-copy-panel.is-hidden {
  display: none;
}

.slide-copy-panel.is-prev,
.slide-copy-panel.is-next {
  border-left-color: rgba(255,255,255,.12);
}

@media (max-width: 980px) {
  .slider-copy {
    min-height: auto;
  }
}

/* Shopper CTA placement */
.shopper .slider-copy-cta {
  position: absolute;
  right: clamp(24px, 5vw, 88px);
  bottom: clamp(28px, 4vw, 56px);
  z-index: 8;
  align-self: auto;
  margin-top: 0;
}

@media (max-width: 980px) {
  .shopper .slider-copy-cta {
    position: static;
    width: 100%;
    margin-top: 20px;
  }
}

/* Shopper right text refinement */
.shopper .slide-copy-panel,
.shopper .slide-copy-panel + .slide-copy-panel,
.shopper .slide-copy-panel.is-active,
.shopper .slide-copy-panel.is-prev,
.shopper .slide-copy-panel.is-next {
  border-left: 0;
  border-top: 0;
  padding-left: 0;
}

.shopper .slide-copy-panel h3 {
  font-size: clamp(22px, 2.1vw, 34px);
  line-height: 1.04;
}

.shopper .slide-copy-panel p {
  font-size: clamp(15px, 1.15vw, 20px);
  line-height: 1.3;
}

/* Prevent shopper slider from overlapping right copy */
.shopper .split {
  grid-template-columns: minmax(360px, 0.9fr) minmax(420px, 1fr);
  gap: clamp(72px, 9vw, 150px);
}

.shopper .product-slider-block {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding-inline: 18px;
}

.shopper .product-fan {
  max-width: 620px;
  margin-inline: auto;
}

.shopper .product-fan img {
  width: clamp(200px, 21vw, 300px);
}

.shopper .product-fan .position-1,
.shopper .product-fan img.position-1 {
  transform: translateX(-170px) scale(.76);
}

.shopper .product-fan .position-2,
.shopper .product-fan img.position-2 {
  transform: translateX(-92px) scale(.86);
}

.shopper .product-fan .position-4,
.shopper .product-fan img.position-4 {
  transform: translateX(92px) scale(.86);
}

.shopper .product-fan .position-5,
.shopper .product-fan img.position-5 {
  transform: translateX(170px) scale(.76);
}

.shopper .slider-copy {
  position: relative;
  z-index: 3;
}

@media (max-width: 1120px) {
  .shopper .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .shopper .product-slider-block {
    overflow: visible;
  }
}

/* Keep active shopper copy above the image fan */
.shopper .split {
  isolation: isolate;
  grid-template-columns: minmax(320px, 0.82fr) minmax(460px, 1.08fr);
  gap: clamp(96px, 11vw, 190px);
}

.shopper .product-slider-block {
  z-index: 0;
  max-width: 560px;
}

.shopper .product-fan {
  max-width: 560px;
}

.shopper .product-fan img {
  width: clamp(190px, 19vw, 280px);
}

.shopper .product-fan .position-1,
.shopper .product-fan img.position-1 {
  transform: translateX(-145px) scale(.74);
}

.shopper .product-fan .position-2,
.shopper .product-fan img.position-2 {
  transform: translateX(-78px) scale(.84);
}

.shopper .product-fan .position-4,
.shopper .product-fan img.position-4 {
  transform: translateX(78px) scale(.84);
}

.shopper .product-fan .position-5,
.shopper .product-fan img.position-5 {
  transform: translateX(145px) scale(.74);
}

.shopper .slider-copy {
  z-index: 20;
}

.shopper .slide-copy-panel.is-active {
  position: relative;
  z-index: 21;
}

@media (max-width: 1120px) {
  .shopper .split {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .shopper .product-slider-block,
  .shopper .product-fan {
    max-width: none;
  }
}

/* Hard separation between shopper fan and right copy */
@media (min-width: 1121px) {
  .shopper .split {
    grid-template-columns: minmax(280px, 500px) minmax(520px, 1fr) !important;
    gap: clamp(150px, 14vw, 240px) !important;
  }

  .shopper .product-slider-block {
    width: min(500px, 100%) !important;
    max-width: 500px !important;
    overflow: hidden !important;
    padding-inline: 0 !important;
  }

  .shopper .product-fan {
    max-width: 500px !important;
    min-height: 440px !important;
    overflow: hidden !important;
  }

  .shopper .product-fan img {
    width: clamp(180px, 17vw, 250px) !important;
  }

  .shopper .product-fan .position-1,
  .shopper .product-fan img.position-1 {
    transform: translateX(-118px) scale(.72) !important;
  }

  .shopper .product-fan .position-2,
  .shopper .product-fan img.position-2 {
    transform: translateX(-62px) scale(.82) !important;
  }

  .shopper .product-fan .position-3,
  .shopper .product-fan img.position-3 {
    transform: translateX(0) scale(1.02) !important;
  }

  .shopper .product-fan .position-4,
  .shopper .product-fan img.position-4 {
    transform: translateX(62px) scale(.82) !important;
  }

  .shopper .product-fan .position-5,
  .shopper .product-fan img.position-5 {
    transform: translateX(118px) scale(.72) !important;
  }

  .shopper .slider-copy {
    margin-left: clamp(24px, 3vw, 64px) !important;
    max-width: 720px !important;
  }
}

/* Shopper right column: active only */
.shopper .slider-copy {
  min-height: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-self: center !important;
  overflow: visible !important;
  padding-left: clamp(48px, 5vw, 96px) !important;
}

.shopper .slide-copy-panel {
  display: none !important;
}

.shopper .slide-copy-panel.is-active {
  display: block !important;
  opacity: 1 !important;
  transform: none !important;
  max-width: 560px !important;
}

.shopper .slide-copy-panel.is-hidden,
.shopper .slide-copy-panel.is-prev,
.shopper .slide-copy-panel.is-next {
  display: none !important;
}

@media (min-width: 1121px) {
  .shopper .split {
    grid-template-columns: minmax(260px, 460px) minmax(560px, 1fr) !important;
    gap: clamp(180px, 16vw, 280px) !important;
  }

  .shopper .product-slider-block,
  .shopper .product-fan {
    max-width: 460px !important;
  }
}

@media (max-width: 1120px) {
  .shopper .slider-copy {
    padding-left: 0 !important;
  }
}

/* Restore shopper slider visibility */
@media (min-width: 1121px) {
  .shopper .split {
    grid-template-columns: minmax(420px, 520px) minmax(520px, 1fr) !important;
    gap: clamp(96px, 10vw, 170px) !important;
  }

  .shopper .product-slider-block {
    width: 100% !important;
    max-width: 520px !important;
    overflow: visible !important;
    z-index: 1 !important;
  }

  .shopper .product-fan {
    width: 520px !important;
    max-width: 520px !important;
    min-height: 430px !important;
    overflow: visible !important;
  }

  .shopper .product-fan img {
    display: block !important;
    visibility: visible !important;
    width: clamp(190px, 18vw, 270px) !important;
  }

  .shopper .product-fan .position-1,
  .shopper .product-fan img.position-1,
  .shopper .product-fan .position-5,
  .shopper .product-fan img.position-5 {
    display: none !important;
  }

  .shopper .product-fan .position-2,
  .shopper .product-fan img.position-2 {
    transform: translateX(-105px) scale(.86) !important;
    opacity: .72 !important;
  }

  .shopper .product-fan .position-3,
  .shopper .product-fan img.position-3 {
    transform: translateX(0) scale(1.04) !important;
    opacity: 1 !important;
    z-index: 5 !important;
  }

  .shopper .product-fan .position-4,
  .shopper .product-fan img.position-4 {
    transform: translateX(105px) scale(.86) !important;
    opacity: .72 !important;
  }

  .shopper .slider-copy {
    padding-left: clamp(28px, 4vw, 72px) !important;
  }
}

/* Shopper text and CTA vertical spacing */
.shopper .slider-copy {
  align-self: start !important;
  justify-content: flex-start !important;
  padding-top: clamp(18px, 3vw, 48px) !important;
  padding-bottom: 120px !important;
}

.shopper .slider-copy-cta {
  bottom: clamp(18px, 2.6vw, 36px) !important;
}

@media (max-width: 980px) {
  .shopper .slider-copy {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  .shopper .slider-copy-cta {
    bottom: auto !important;
  }
}

/* Shopper CTA outside copy column */
#nosotros.shopper > .slider-copy-cta {
  position: absolute !important;
  right: clamp(24px, 5vw, 88px) !important;
  bottom: clamp(18px, 2.6vw, 36px) !important;
  z-index: 30 !important;
}

#nosotros.shopper .slider-copy .slider-copy-cta {
  position: static !important;
}

@media (max-width: 980px) {
  #nosotros.shopper > .slider-copy-cta {
    position: static !important;
    display: flex;
    width: 100%;
    margin-top: 24px;
  }
}

/* Shopper statement CTA inline */
#nosotros.shopper .slider-action-row {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: clamp(22px, 3vw, 42px) !important;
  margin-top: 0 !important;
}

#nosotros.shopper .slider-action-row .slider-copy-cta {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 1 !important;
  align-self: center !important;
  margin: 0 !important;
  width: auto !important;
  white-space: nowrap !important;
}

#nosotros.shopper > .slider-copy-cta {
  display: none !important;
}

@media (max-width: 980px) {
  #nosotros.shopper .slider-action-row {
    grid-template-columns: 1fr !important;
  }

  #nosotros.shopper .slider-action-row .slider-copy-cta {
    width: 100% !important;
    white-space: normal !important;
  }
}

/* Shopper: bring image fan and copy closer */
@media (min-width: 1121px) {
  #nosotros.shopper .split {
    grid-template-columns: minmax(420px, 520px) minmax(500px, 0.92fr) !important;
    gap: clamp(36px, 4.5vw, 78px) !important;
    align-items: center !important;
  }

  #nosotros.shopper .slider-copy {
    padding-left: clamp(8px, 1.5vw, 24px) !important;
    max-width: 680px !important;
  }
}

/* Shopper bottom statement row */
#nosotros.shopper .shopper-bottom-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 5vw, 72px);
  margin-top: clamp(0px, 0.8vw, 10px);
}

#nosotros.shopper .shopper-bottom-row .slider-statement {
  margin: 0;
  max-width: 820px !important;
}

#nosotros.shopper .shopper-bottom-row .slider-copy-cta {
  position: static !important;
  right: auto !important;
  bottom: auto !important;
  z-index: 1 !important;
  align-self: center !important;
  justify-self: end !important;
  margin: 0 !important;
  width: auto !important;
  white-space: nowrap !important;
}

#nosotros.shopper .slider-action-row {
  display: none !important;
}

@media (max-width: 980px) {
  #nosotros.shopper .shopper-bottom-row {
    grid-template-columns: 1fr;
  }

  #nosotros.shopper .shopper-bottom-row .slider-copy-cta {
    width: 100% !important;
    justify-self: stretch !important;
    white-space: normal !important;
  }
}

/* Center shopper bottom CTA in its column */
#nosotros.shopper .shopper-bottom-row .slider-copy-cta {
  justify-self: center !important;
}

/* Shopper bottom CTA true centered column */
#nosotros.shopper .shopper-bottom-row {
  grid-template-columns: minmax(0, 1fr) minmax(260px, .45fr) !important;
}

#nosotros.shopper .shopper-bottom-row .slider-copy-cta {
  justify-self: center !important;
}

@media (max-width: 980px) {
  #nosotros.shopper .shopper-bottom-row {
    grid-template-columns: 1fr !important;
  }
}

/* Move shopper bottom CTA slightly left */
#nosotros.shopper .shopper-bottom-row {
  grid-template-columns: minmax(0, .82fr) minmax(320px, .58fr) !important;
}

/* Restore five-image shopper fan */
@media (min-width: 1121px) {
  .shopper .product-slider-block {
    max-width: 680px !important;
  }

  .shopper .product-fan {
    width: 680px !important;
    max-width: 680px !important;
    min-height: 470px !important;
  }

  .shopper .product-fan img {
    width: clamp(190px, 18vw, 285px) !important;
  }

  .shopper .product-fan .position-1,
  .shopper .product-fan img.position-1,
  .shopper .product-fan .position-5,
  .shopper .product-fan img.position-5 {
    display: block !important;
  }

  .shopper .product-fan .position-1,
  .shopper .product-fan img.position-1 {
    transform: translateX(-220px) scale(.74) !important;
    opacity: .52 !important;
    z-index: 1 !important;
  }

  .shopper .product-fan .position-2,
  .shopper .product-fan img.position-2 {
    transform: translateX(-118px) scale(.86) !important;
    opacity: .74 !important;
    z-index: 2 !important;
  }

  .shopper .product-fan .position-3,
  .shopper .product-fan img.position-3 {
    transform: translateX(0) scale(1.04) !important;
    opacity: 1 !important;
    z-index: 5 !important;
  }

  .shopper .product-fan .position-4,
  .shopper .product-fan img.position-4 {
    transform: translateX(118px) scale(.86) !important;
    opacity: .74 !important;
    z-index: 2 !important;
  }

  .shopper .product-fan .position-5,
  .shopper .product-fan img.position-5 {
    transform: translateX(220px) scale(.74) !important;
    opacity: .52 !important;
    z-index: 1 !important;
  }
}

/* Force all five shopper fan images visible */
@media (min-width: 1121px) {
  #nosotros.shopper .product-fan .position-1,
  #nosotros.shopper .product-fan img.position-1,
  #nosotros.shopper .product-fan .position-2,
  #nosotros.shopper .product-fan img.position-2,
  #nosotros.shopper .product-fan .position-3,
  #nosotros.shopper .product-fan img.position-3,
  #nosotros.shopper .product-fan .position-4,
  #nosotros.shopper .product-fan img.position-4,
  #nosotros.shopper .product-fan .position-5,
  #nosotros.shopper .product-fan img.position-5 {
    display: block !important;
    visibility: visible !important;
  }
}

/* Shopper right column: show active plus inactive slides */
#nosotros.shopper .slider-copy {
  display: flex !important;
  flex-direction: column !important;
  gap: 18px !important;
  min-height: 0 !important;
  overflow: visible !important;
}

#nosotros.shopper .slide-copy-panel,
#nosotros.shopper .slide-copy-panel.is-hidden,
#nosotros.shopper .slide-copy-panel.is-prev,
#nosotros.shopper .slide-copy-panel.is-next,
#nosotros.shopper .slide-copy-panel.is-before,
#nosotros.shopper .slide-copy-panel.is-after {
  display: block !important;
  opacity: .34 !important;
  transform: scale(.94) !important;
  max-width: 560px !important;
}

#nosotros.shopper .slide-copy-panel.is-active {
  display: block !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}

#nosotros.shopper .slide-copy-panel h3 {
  font-size: clamp(18px, 1.65vw, 27px) !important;
}

#nosotros.shopper .slide-copy-panel p {
  font-size: clamp(13px, 1vw, 17px) !important;
}

#nosotros.shopper .slide-copy-panel.is-active h3 {
  font-size: clamp(22px, 2.1vw, 34px) !important;
}

#nosotros.shopper .slide-copy-panel.is-active p {
  font-size: clamp(15px, 1.15vw, 20px) !important;
}

/* Shopper right column: active text centered */
#nosotros.shopper .slide-copy-panel.is-before-2 {
  order: 1 !important;
}

#nosotros.shopper .slide-copy-panel.is-before-1 {
  order: 2 !important;
}

#nosotros.shopper .slide-copy-panel.is-active {
  order: 3 !important;
}

#nosotros.shopper .slide-copy-panel.is-after-1 {
  order: 4 !important;
}

#nosotros.shopper .slide-copy-panel.is-after-2 {
  order: 5 !important;
}

#nosotros.shopper .slide-copy-panel.is-before-1,
#nosotros.shopper .slide-copy-panel.is-before-2,
#nosotros.shopper .slide-copy-panel.is-after-1,
#nosotros.shopper .slide-copy-panel.is-after-2 {
  display: block !important;
  opacity: .34 !important;
  transform: scale(.94) !important;
}

#nosotros.shopper .slide-copy-panel.is-active {
  display: block !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}

@media (min-width: 1121px) {
  #nosotros.shopper .product-fan .position-1,
  #nosotros.shopper .product-fan img.position-1,
  #nosotros.shopper .product-fan .position-2,
  #nosotros.shopper .product-fan img.position-2,
  #nosotros.shopper .product-fan .position-3,
  #nosotros.shopper .product-fan img.position-3,
  #nosotros.shopper .product-fan .position-4,
  #nosotros.shopper .product-fan img.position-4,
  #nosotros.shopper .product-fan .position-5,
  #nosotros.shopper .product-fan img.position-5 {
    display: block !important;
    visibility: visible !important;
  }
}

/* Shopper right column: prev active next only */
#nosotros.shopper .slider-copy {
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  gap: 22px !important;
}

#nosotros.shopper .slide-copy-panel {
  display: none !important;
}

#nosotros.shopper .slide-copy-panel.is-prev,
#nosotros.shopper .slide-copy-panel.is-active,
#nosotros.shopper .slide-copy-panel.is-next {
  display: block !important;
}

#nosotros.shopper .slide-copy-panel.is-prev {
  order: 1 !important;
  opacity: .34 !important;
  transform: scale(.94) !important;
}

#nosotros.shopper .slide-copy-panel.is-active {
  order: 2 !important;
  opacity: 1 !important;
  transform: scale(1) !important;
}

#nosotros.shopper .slide-copy-panel.is-next {
  order: 3 !important;
  opacity: .34 !important;
  transform: scale(.94) !important;
}

#nosotros.shopper .slide-copy-panel.is-hidden,
#nosotros.shopper .slide-copy-panel.is-before-1,
#nosotros.shopper .slide-copy-panel.is-before-2,
#nosotros.shopper .slide-copy-panel.is-after-1,
#nosotros.shopper .slide-copy-panel.is-after-2 {
  display: none !important;
}

/* Dynamic Nuestra diferencia tabs */
.category-showcase {
  grid-template-columns: minmax(280px, 360px) minmax(360px, 1fr) minmax(56px, auto) !important;
  height: clamp(420px, 42vw, 540px) !important;
  min-height: 420px;
  overflow: hidden;
}

.category-tabs {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 56px;
  min-width: 56px;
  max-width: min(44vw, 420px);
  height: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-inline: contain;
  scrollbar-width: thin;
}

.category-tabs .category-tab {
  min-width: 56px;
  height: 100%;
}

.category-media {
  height: 100% !important;
  min-height: 0 !important;
  aspect-ratio: 4 / 3;
}

.category-media img {
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: inherit;
  object-fit: cover !important;
  object-position: center;
  display: block;
}

@media (max-width: 900px) {
  .category-showcase {
    grid-template-columns: 1fr !important;
    height: auto !important;
    min-height: 0;
    overflow: visible;
  }

  .category-media {
    width: 100%;
    height: auto !important;
    min-height: 0 !important;
    aspect-ratio: 4 / 3;
  }

  .category-tabs {
    display: grid;
    grid-auto-flow: row;
    grid-auto-columns: initial;
    grid-auto-rows: minmax(68px, auto);
    max-width: none;
    height: auto;
    overflow: visible;
  }

  .category-tabs .category-tab {
    min-width: 0;
    width: 100%;
    height: auto;
    min-height: 68px;
  }
}

/* Center Nuestra diferencia accordion with exact width */
.category-showcase {
  width: fit-content !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  grid-template-columns: minmax(280px, 360px) minmax(420px, 620px) max-content !important;
}

.category-tabs {
  width: max-content !important;
  max-width: min(44vw, 420px) !important;
}

.category-media {
  width: min(620px, 42vw) !important;
}

@media (max-width: 900px) {
  .category-showcase {
    width: 100% !important;
    grid-template-columns: 1fr !important;
  }

  .category-tabs,
  .category-media {
    width: 100% !important;
    max-width: none !important;
  }
}

/* Larger Nuestra diferencia tab text */
.category-tab {
  font-size: 18px !important;
}

.category-tab .tab-number {
  font-size: 32px !important;
}

@media (max-width: 900px) {
  .category-tab {
    font-size: 18px !important;
  }

  .category-tab .tab-number {
    font-size: 28px !important;
  }
}

/* Nuestra diferencia: clean images and centered tab text */
.category-media::after {
  display: none !important;
  content: none !important;
}

.category-tab {
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding-inline: 0 !important;
}

.category-tab .tab-label {
  position: absolute !important;
  left: 50% !important;
  top: 50% !important;
  width: auto !important;
  max-height: calc(100% - 112px);
  transform: translate(-50%, -50%) !important;
  text-align: center !important;
  white-space: nowrap;
}

@media (max-width: 900px) {
  .category-tab {
    justify-content: center !important;
    text-align: center !important;
    padding-inline: 18px !important;
  }
}

.category-tab .tab-icon {
  left: 50% !important;
  bottom: 18px !important;
  transform: translateX(-50%) rotate(180deg) !important;
}

.category-tab .tab-number {
  left: 50% !important;
  top: 14px !important;
  transform: translateX(-50%) !important;
}

@media (max-width: 900px) {
  .category-tab .tab-icon,
  .category-tab .tab-number {
    left: auto !important;
    top: auto !important;
    bottom: auto !important;
    transform: none !important;
  }
}

@media (max-width: 900px) {
  .category-tab .tab-label {
    position: static !important;
    width: auto !important;
    max-height: none;
    transform: none !important;
    white-space: normal;
  }
}

/* Hide Nuestra diferencia tabs scrollbar */
.category-tabs {
  scrollbar-width: none !important;
  -ms-overflow-style: none !important;
}

.category-tabs::-webkit-scrollbar {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}

/* Keep highlighted words in solution copy same size as paragraph */
.step-content p strong {
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
}

/* Keep inline HTML in solution descriptions from inheriting step number styles */
.step-content p span,
.step-content p strong,
.step-content p em,
.step-content p b {
  display: inline !important;
  font-size: inherit !important;
  line-height: inherit !important;
  font-weight: inherit !important;
  margin: 0 !important;
}


#modelo .model-cta-row {
  display: flex;
  justify-content: center;
  margin-top: clamp(28px, 4vw, 54px);
}

#modelo .model-cta-row .button {
  min-width: min(100%, 260px);
}

/* Standard readable sizing for work model cards */
#modelo .pricing-grid {
  gap: clamp(16px, 2vw, 24px) !important;
}

#modelo .pricing-card {
  min-height: 300px !important;
  padding: clamp(28px, 3vw, 40px) !important;
  border-radius: 14px !important;
}

#modelo .pricing-card .tag {
  padding: 8px 14px !important;
  font-size: 13px !important;
  line-height: 1 !important;
  letter-spacing: .08em !important;
}

#modelo .pricing-card h3 {
  margin: 22px 0 16px !important;
  font-size: clamp(26px, 2.1vw, 34px) !important;
  line-height: 1.04 !important;
  letter-spacing: 0 !important;
}

#modelo .pricing-card p {
  max-width: 360px !important;
  margin: 0 0 32px !important;
  font-size: clamp(17px, 1.25vw, 20px) !important;
  line-height: 1.32 !important;
  letter-spacing: 0 !important;
}

#modelo .pricing-card a {
  min-height: 52px !important;
  height: auto !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  font-size: 16px !important;
  line-height: 1.1 !important;
  text-align: center !important;
}

@media (max-width: 850px) {
  #modelo .pricing-card {
    min-height: auto !important;
  }
}

.authority-section,
.faq-section {
  background: #f4f4f4;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 7vw, 108px);
  font-family: var(--global-body-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
}

.authority-section {
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.authority-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.authority-copy h2,
.faq-title h2 {
  margin: 0;
  max-width: 880px;
  color: #03071c;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  font-weight: 900;
}

.authority-copy p {
  margin: 24px 0 0;
  max-width: 660px;
  color: #222;
  font-size: 18px;
  line-height: 1.45;
}

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

.authority-grid article,
.faq-item {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 12px 26px rgba(3, 7, 28, 0.08);
}

.authority-grid article {
  min-height: 190px;
  padding: 22px;
}

.authority-grid span {
  display: block;
  color: #e0093f;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 1.6px;
  margin-bottom: 22px;
}

.authority-grid small {
  display: block;
  margin-top: 16px;
  color: #666;
  font-size: 12px;
  line-height: 1.35;
}

.authority-grid h3,
.faq-item h3 {
  margin: 0;
  color: #03071c;
  font-weight: 900;
  letter-spacing: 0;
}

.authority-grid h3 {
  font-size: 21px;
  line-height: 1.08;
}

.authority-grid p,
.faq-item p {
  color: #222;
  line-height: 1.45;
}

.authority-grid p {
  margin: 14px 0 0;
  font-size: 15px;
}

.faq-section {
  padding-top: 36px;
}

.faq-title {
  margin-bottom: 30px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item {
  padding: 24px;
}

.faq-item h3 {
  font-size: 20px;
  line-height: 1.18;
}

.faq-item p {
  margin: 16px 0 0;
  font-size: 15px;
}

@media (max-width: 900px) {
  .authority-section,
  .faq-section {
    padding-left: 24px;
    padding-right: 24px;
  }

  .authority-layout,
  .authority-grid,
  .faq-list {
    grid-template-columns: 1fr;
  }

  .authority-grid article {
    min-height: auto;
  }
}


.comparison-matrix {
  width: 100%;
  max-width: 980px;
  margin: clamp(32px, 5vw, 64px) auto clamp(28px, 4vw, 48px);
  overflow-x: auto;
  border-radius: 16px 16px 0 0;
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.22);
}

.comparison-matrix table {
  width: 100%;
  min-width: 820px;
  table-layout: fixed;
  border-collapse: collapse;
  background: #e4e4e4;
}

.comparison-matrix th,
.comparison-matrix td {
  min-height: 58px;
  padding: 18px 20px;
  border-right: 1px solid #d0d0d0;
  border-bottom: 1px solid #d0d0d0;
  text-align: center;
  font-size: 13px;
  line-height: 1.25;
  color: #060a2d;
}

.comparison-matrix thead th {
  min-height: 56px;
  background: #03071c;
  color: #7e8290;
  font-size: 9px;
  line-height: 1.25;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 900;
}

.comparison-matrix tbody th {
  width: auto;
  text-align: left;
  padding-left: 22px;
  background: #e4e4e4;
  font-size: 13px;
  font-weight: 500;
}

.comparison-matrix .is-infuse {
  min-height: 66px;
  background: #e0093f;
  border-color: rgba(0, 0, 0, 0.12);
  color: #fff;
  font-size: 16px;
  font-weight: 900;
}

.comparison-matrix thead .is-infuse {
  color: #fff;
  font-size: 11px;
}

@media (max-width: 760px) {
  .comparison-matrix {
    margin-top: 28px;
  }

  .comparison-matrix th,
  .comparison-matrix td {
    padding: 14px 16px;
    font-size: 13px;
  }
}


/* Keep detailed comparison content available in HTML for crawlers/LLMs while hiding it visually. */
.llm-visible-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.comparison-readable,
.success-case-grid,
.team-grid,
.credential-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.comparison-readable-card,
.success-case-card,
.team-card,
.credential-grid article {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(3, 7, 28, 0.08);
}

.comparison-readable-card.is-infuse {
  background: #03071c;
  color: #fff;
}

.comparison-readable-card h4,
.success-case-card h3,
.team-card h3,
.credential-grid h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.08;
  letter-spacing: 0;
  font-weight: 900;
}

.comparison-readable-card dl {
  display: grid;
  gap: 10px;
  margin: 18px 0;
}

.comparison-readable-card dt,
.success-case-card h4,
.team-card h4,
.success-case-card span,
.credential-grid span {
  margin: 0;
  color: #e0093f;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.comparison-readable-card.is-infuse dt {
  color: #ff7a9b;
}

.comparison-readable-card dd {
  margin: 3px 0 0;
  font-size: 14px;
  line-height: 1.35;
}

.comparison-readable-card p,
.success-case-card p,
.team-card p,
.credential-grid p {
  margin: 14px 0 0;
  color: inherit;
  font-size: 15px;
  line-height: 1.45;
}

.success-case-section,
.team-section,
.credential-section {
  background: #f4f4f4;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 7vw, 108px);
  font-family: var(--global-body-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
}

.success-case-header h2,
.team-header h2,
.credential-section h2 {
  margin: 0;
  max-width: 920px;
  color: #03071c;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  font-weight: 900;
}

.success-case-header p,
.team-header p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #222;
  font-size: 18px;
  line-height: 1.45;
}

.success-case-card strong,
.team-card strong {
  display: block;
  margin-top: 16px;
  color: #03071c;
  font-size: 18px;
  line-height: 1.2;
  font-weight: 900;
}

.success-case-card small {
  display: block;
  margin-top: 12px;
  color: #666;
  font-size: 12px;
  line-height: 1.35;
}

.team-card img {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 18px;
}

.team-card h4 {
  margin-top: 10px;
}

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

@media (max-width: 1100px) {
  .comparison-readable,
  .success-case-grid,
  .team-grid,
  .credential-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .comparison-readable,
  .success-case-grid,
  .team-grid,
  .credential-grid {
    grid-template-columns: 1fr;
  }

  .success-case-section,
  .team-section,
  .credential-section {
    padding-left: 24px;
    padding-right: 24px;
  }
}

.internal-main {
  background: #f4f4f4;
  padding-top: 84px;
}

.internal-hero-section {
  padding-top: clamp(72px, 9vw, 126px) !important;
}

.internal-hero-section h1 {
  margin: 0;
  max-width: 980px;
  color: #03071c;
  font-size: clamp(38px, 6vw, 72px);
  line-height: 0.98;
  font-weight: 900;
}

.internal-contact {
  min-height: 360px;
}

.visibility-summary {
  background: #f4f4f4;
  padding: clamp(48px, 7vw, 96px) clamp(20px, 7vw, 108px);
  font-family: var(--global-body-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif;
}

.visibility-summary-header h2 {
  margin: 0;
  max-width: 920px;
  color: #03071c;
  font-size: clamp(34px, 5vw, 58px);
  line-height: 0.98;
  font-weight: 900;
}

.visibility-summary-header p {
  max-width: 720px;
  margin: 18px 0 0;
  color: #222;
  font-size: 18px;
  line-height: 1.45;
}

.visibility-summary-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.visibility-summary-grid article {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  padding: 22px;
  box-shadow: 0 12px 26px rgba(3, 7, 28, 0.08);
}

.visibility-summary-grid span {
  display: block;
  color: #e0093f;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.visibility-summary-grid h3 {
  margin: 0;
  color: #03071c;
  font-size: 21px;
  line-height: 1.08;
  font-weight: 900;
}

.visibility-summary-grid p {
  margin: 14px 0 18px;
  color: #222;
  font-size: 15px;
  line-height: 1.45;
}

.visibility-summary-grid a {
  color: #e0093f;
  font-weight: 900;
  text-decoration: none;
}

@media (max-width: 1100px) {
  .visibility-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .visibility-summary-grid {
    grid-template-columns: 1fr;
  }

  .visibility-summary {
    padding-left: 24px;
    padding-right: 24px;
  }
}

/* Unified eyebrow typography; colors remain section-specific. */
.eyebrow,
.eyebrow.pink,
[class$="-eyebrow"] {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 30px !important;
  letter-spacing: 0.21em !important;
  text-transform: uppercase !important;
}

/* Hero success cases slider */
.product-strip[data-product-slider] {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  gap: 0;
}

.product-slider-viewport {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.product-slider-track {
  --product-gap: 10px;
  --product-visible: 3;
  display: flex;
  gap: var(--product-gap);
  height: 100%;
  transition: transform 1.8s cubic-bezier(.19, 1, .22, 1);
  will-change: transform;
}

.product-slider-track .photo-card {
  display: flex;
  flex: 0 0 calc((183px * 2) + 10px);
  width: calc((183px * 2) + 10px);
  height: 327px;
  min-height: 327px;
}

.product-slider-control {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  background: #e40046;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  cursor: pointer;
  box-shadow: var(--button-shadow);
  z-index: 3;
}

.product-slider-control:focus-visible {
  outline: 3px solid rgba(255,255,255,.72);
  outline-offset: 3px;
}

@media (max-width: 980px) {
  .product-slider-track {
    --product-visible: 2;
  }
}

@media (max-width: 680px) {
  .product-strip[data-product-slider] {
    grid-template-columns: minmax(0, 1fr);
    height: 330px;
  }

  .product-slider-track {
    --product-visible: 1;
  }

  .product-slider-control {
    width: 38px;
    height: 38px;
    font-size: 29px;
  }
}



/* Unified section spacing. */
:root {
  --section-x: clamp(20px, 7vw, 108px);
  --section-y: clamp(72px, 9vw, 118px);
}

main > section {
  padding-top: var(--section-y) !important;
  padding-bottom: var(--section-y) !important;
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

main > section.hero {
  padding-bottom: calc(var(--section-y) + clamp(28px, 4vw, 52px)) !important;
}

main > section.problem {
  padding-top: var(--section-y) !important;
}

section,
.footer,
.shopper,
.authority-section,
.faq-section,
.success-case-section,
.team-section,
.credential-section,
.visibility-summary,
#modelo.model,
.results,
.comparison {
  padding-left: var(--section-x) !important;
  padding-right: var(--section-x) !important;
}

@media (max-width: 900px) {
  :root {
    --section-x: 24px;
    --section-y: 72px;
  }
}

/* Hero carousel overlap into the next gray section */
:root {
  --hero-carousel-overlap: clamp(58px, 6vw, 92px);
}

main > section.hero {
  padding-bottom: clamp(18px, 3vw, 42px) !important;
  overflow: visible !important;
  z-index: 2;
}

.hero .product-strip[data-product-slider] {
  transform: translateY(var(--hero-carousel-overlap));
  z-index: 5;
}

main > section.problem {
  position: relative;
  z-index: 1;
  padding-top: calc(var(--section-y) + (var(--hero-carousel-overlap) * .25)) !important;
}

@media (max-width: 680px) {
  :root {
    --hero-carousel-overlap: 42px;
  }
}

/* Shopper title typography override */
#nosotros.shopper .center-title .eyebrow.pink {
  margin-bottom: 4px !important;
}

#nosotros.shopper .center-title .eyebrow.pink,
#nosotros.shopper .center-title h2 {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 64px !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

@media (max-width: 700px) {
  #nosotros.shopper .center-title .eyebrow.pink,
  #nosotros.shopper .center-title h2 {
    font-size: clamp(40px, 11vw, 64px) !important;
  }
}

.category-card .card-copy bold {
  font-weight: 700;
}

/* Nuestra diferencia tab label top-right alignment */
@media (min-width: 901px) {
  .category-tab .tab-label {
    left: 50% !important;
    top: auto !important;
    bottom: 56px !important;
    transform: translateX(-50%) !important;
  }
}

/* Work model uses a single global CTA, not per-card buttons. */
#modelo .pricing-card > a,
#modelo .pricing-card .button {
  display: none !important;
}


/* Conversion eyebrow full width */
#conversion.conversion > .eyebrow {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none !important;
  margin-bottom: clamp(28px, 4vw, 56px) !important;
}

/* Conversion strip aligned like solution strip */
#conversion.conversion > .color-strip {
  grid-column: 1 / -1 !important;
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  height: 2px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-bottom: 50px !important;
  background: linear-gradient(90deg, #2946ad, #7b2ff7, #ef174f, #ff7a00) !important;
}

/* Conversion desktop content proportions */
@media (min-width: 901px) {
  #conversion.conversion {
    grid-template-columns: minmax(0, 50%) minmax(280px, 1fr) !important;
  }

  #conversion.conversion > div:not(.metric-stack) {
    width: 100% !important;
    max-width: none !important;
  }

  #conversion.conversion h2,
  #conversion.conversion .conversion-description-eyebrow,
  #conversion.conversion h3 {
    max-width: none !important;
  }

  #conversion.conversion .metric-stack {
    width: 76% !important;
    justify-self: end !important;
  }
}

/* Conversion heading typography */
#conversion.conversion h2 {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 58px !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

@media (max-width: 700px) {
  #conversion.conversion h2 {
    font-size: clamp(38px, 10vw, 58px) !important;
  }
}

/* Conversion description typography */
#conversion.conversion .conversion-description-eyebrow {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 26px !important;
  font-weight: 300 !important;
  line-height: 1.28 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

@media (max-width: 700px) {
  #conversion.conversion .conversion-description-eyebrow {
    font-size: clamp(20px, 6vw, 26px) !important;
  }
}

/* Conversion closing title typography */
#conversion.conversion h3 {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 32px !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 700px) {
  #conversion.conversion h3 {
    font-size: clamp(26px, 7vw, 32px) !important;
  }
}

/* Conversion metric numbers typography */
#conversion.conversion .metric-stack article > strong {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 128px !important;
  font-weight: 700 !important;
  line-height: .9 !important;
  letter-spacing: 0 !important;
}

@media (max-width: 700px) {
  #conversion.conversion .metric-stack article > strong {
    font-size: clamp(72px, 22vw, 128px) !important;
  }
}

/* Conversion metric descriptions typography */
#conversion.conversion .metric-stack span {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 22px !important;
  font-weight: 300 !important;
  line-height: 1.28 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

@media (max-width: 700px) {
  #conversion.conversion .metric-stack span {
    font-size: clamp(18px, 5.5vw, 22px) !important;
  }
}

/* Conversion eyebrow matches solution eyebrow */
#conversion.conversion > .eyebrow {
  display: block !important;
  box-sizing: border-box;
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 16px !important;
  font-style: normal !important;
  font-weight: 400 !important;
  line-height: 30px !important;
  letter-spacing: 0.21em !important;
  text-transform: uppercase !important;
}

/* Conversion left copy right breathing room */
@media (min-width: 901px) {
  #conversion.conversion > div:not(.metric-stack) {
    padding-right: clamp(24px, 4vw, 64px) !important;
  }
}

/* Metric number inline spans inherit number size */
#conversion.conversion .metric-stack article > strong span {
  display: inline !important;
  font-family: inherit !important;
  font-size: inherit !important;
  font-weight: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  color: inherit;
  padding-bottom: 0 !important;
  border-bottom: 0 !important;
  max-width: none !important;
}

/* Metric description inline strong keeps description style */
#conversion.conversion .metric-stack span strong {
  display: inline !important;
  font-family: inherit !important;
  font-size: inherit !important;
  line-height: inherit !important;
  letter-spacing: inherit !important;
  color: inherit !important;
  font-weight: 700 !important;
}

/* Pull shopper bottom row closer to slider */
#nosotros.shopper .shopper-bottom-row {
  margin-top: clamp(-54px, -3vw, -24px) !important;
}

@media (max-width: 980px) {
  #nosotros.shopper .shopper-bottom-row {
    margin-top: -18px !important;
  }
}

/* Hero blurred background image */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(1, 9, 45, .9) 0%, rgba(1, 9, 45, .72) 48%, rgba(1, 9, 45, .72) 100%);
  filter: blur(10px);
  transform: scale(1.04);
  opacity: .95;
  pointer-events: none;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: rgba(1, 9, 45, .28);
  pointer-events: none;
}

/* Make transparent hero background1 visible */
.hero.dark-panel {
  isolation: isolate;
  overflow: visible !important;
  background:
    linear-gradient(90deg, rgba(1, 9, 45, .82) 0%, rgba(1, 9, 45, .72) 48%, rgba(1, 9, 45, .58) 100%),
    #01092d !important;
}

.hero::before {
  background: linear-gradient(90deg, rgba(1, 9, 45, .76), rgba(1, 9, 45, .58)) !important;
  filter: blur(12px) saturate(1.8) brightness(1.05) !important;
  transform: scale(1.08) !important;
  opacity: 1 !important;
  mix-blend-mode: screen;
}

.hero::after {
  background: linear-gradient(90deg, rgba(1, 9, 45, .76), rgba(1, 9, 45, .58)) !important;
}

/* Keep hero background inside banner without clipping carousel */
.hero::before,
.hero::after {
  clip-path: inset(0) !important;
  overflow: hidden !important;
}

/* Prevent blurred hero layer from bleeding outside banner */
.hero::before {
  filter: none !important;
  transform: none !important;
  mix-blend-mode: normal !important;
  opacity: .72 !important;
}

.hero.dark-panel {
  background:
    radial-gradient(circle at 72% 28%, rgba(243, 25, 93, .2), transparent 34%),
    radial-gradient(circle at 22% 18%, rgba(114, 37, 233, .24), transparent 30%),
    linear-gradient(90deg, rgba(1, 9, 45, .82) 0%, rgba(1, 9, 45, .72) 48%, rgba(1, 9, 45, .58) 100%),
    #01092d !important;
}

/* Hero description and CTA sizing */
.hero-description p {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 22px !important;
  line-height: 1.35 !important;
}

.hero-description .button {
  min-height: 60px !important;
  padding: 0 36px !important;
  font-size: 18px !important;
}

@media (max-width: 700px) {
  .hero-description p {
    font-size: clamp(18px, 5.5vw, 22px) !important;
  }

  .hero-description .button {
    min-height: 50px !important;
    font-size: 16px !important;
  }
}


/* Problem section description typography */
#problema.problem .problem-description-eyebrow,
#problema.problem .problem-description-eyebrow * {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 30px !important;
  line-height: 1.28 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}


/* Narrow conversion copy column */
@media (min-width: 901px) {
  #conversion.conversion {
    grid-template-columns: minmax(0, 45%) minmax(280px, 1fr) !important;
    column-gap: clamp(44px, 8vw, 120px) !important;
  }

  #conversion.conversion > .eyebrow,
  #conversion.conversion > div:not(.metric-stack),
  #conversion.conversion h2,
  #conversion.conversion .conversion-description-eyebrow,
  #conversion.conversion h3 {
    max-width: 680px !important;
  }

  #conversion.conversion > .eyebrow {
    width: 45% !important;
  }

  #conversion.conversion > .color-strip {
    grid-column: 1 / -1 !important;
    width: 100vw !important;
    max-width: none !important;
    margin-left: calc(-1 * var(--section-x)) !important;
    margin-right: calc(-1 * var(--section-x)) !important;
  }

  #conversion.conversion > .color-strip + div {
    margin-top: clamp(40px, 6vw, 78px) !important;
  }
}


/* Unified horizontal margins for section eyebrows */
main > section > .eyebrow,
main > section > .eyebrow.pink,
.platform-header > .eyebrow,
#conversion.conversion > .eyebrow,
.platform-header > .eyebrow.pink {
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  justify-self: stretch !important;
  box-sizing: border-box !important;
}


/* Force all main eyebrows to share section horizontal alignment */
main .eyebrow,
main .eyebrow.pink,
#conversion.conversion > .eyebrow,
#nosotros.shopper .center-title .eyebrow.pink {
  display: block !important;
  grid-column: 1 / -1 !important;
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  text-align: left !important;
  justify-self: stretch !important;
  box-sizing: border-box !important;
}


/* Clients eyebrow alignment with section margins */
#clientes.clients-section {
  padding-left: var(--section-x) !important;
  padding-right: var(--section-x) !important;
}

#clientes .clients-header {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

#clientes .clients-header .eyebrow,
#clientes .clients-header .color-strip {
  width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* Full width conversion strip within section bounds */
#conversion.conversion > .color-strip {
  position: relative !important;
  left: auto !important;
  grid-column: 1 / -1 !important;
  justify-self: start !important;
  width: calc(100% + (var(--section-x) * 2)) !important;
  max-width: none !important;
  margin-left: calc(-1 * var(--section-x)) !important;
  margin-right: calc(-1 * var(--section-x)) !important;
}


/* Conversion strip forced full viewport width */
#conversion.conversion {
  overflow-x: visible !important;
}

#conversion.conversion > .conversion-strip {
  grid-column: 1 / -1 !important;
  display: block !important;
  position: relative !important;
  left: 50% !important;
  right: auto !important;
  width: 100vw !important;
  max-width: 100vw !important;
  min-width: 100vw !important;
  margin-left: -50vw !important;
  margin-right: 0 !important;
  justify-self: start !important;
  align-self: start !important;
}


/* Normalize conversion eyebrow and strip spacing */
#conversion.conversion > .eyebrow {
  margin-bottom: 10px !important;
}

#conversion.conversion > .color-strip,
#conversion.conversion > .conversion-strip {
  position: relative !important;
  left: auto !important;
  right: auto !important;
  grid-column: 1 / -1 !important;
  display: block !important;
  width: 100% !important;
  min-width: 0 !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  margin-top: 0 !important;
  justify-self: stretch !important;
}

#conversion.conversion > .color-strip + div,
#conversion.conversion > .conversion-strip + div {
  margin-top: clamp(34px, 5vw, 62px) !important;
}


/* Force conversion strip across both grid columns */
#conversion.conversion > .color-strip,
#conversion.conversion > .conversion-strip {
  grid-column: 1 / 3 !important;
  justify-self: stretch !important;
  align-self: start !important;
  width: auto !important;
  inline-size: auto !important;
  min-width: 100% !important;
  max-width: none !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}


/* Larger conversion metric cards */
@media (min-width: 901px) {
  #conversion.conversion .metric-stack {
    width: 92% !important;
  }
}

#conversion.conversion .metric-stack article {
  padding: clamp(36px, 4vw, 52px) !important;
  min-height: 260px !important;
}


/* Slightly larger spacing between solution cards */
#solucion.steps > article.step-panel {
  margin-bottom: 92px !important;
}

#solucion.steps > article.step-panel:last-of-type {
  margin-bottom: 0 !important;
}


/* Second solution card title typography */
#solucion.steps > article.step-panel:nth-of-type(2) .step-content h3 {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 40px !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
}


/* Number 02 solution card title typography */
#solucion.steps > article.step-panel.solution-step-02 .step-content h3,
#solucion.steps > article.step-panel:has(.step-content > span[style*="7636d1"]) .step-content h3 {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 40px !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
}


/* Force all text in solution card 02 to global heading font, bold 40 */
#solucion.steps > article.step-panel.solution-step-02 .step-content h3,
#solucion.steps > article.step-panel.solution-step-02 .step-content p,
#solucion.steps > article.step-panel.solution-step-02 .step-content p *,
#solucion.steps > article.step-panel.solution-step-02 .step-content .button {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 40px !important;
  font-weight: 700 !important;
  line-height: 1.08 !important;
}


/* Symmetric margins for shopper slider copy */
#nosotros.shopper .slider-copy {
  width: 100% !important;
  box-sizing: border-box !important;
}

#nosotros.shopper .slide-copy-panel {
  box-sizing: border-box !important;
  padding-left: 32px !important;
  padding-right: 32px !important;
}

#nosotros.shopper .slide-copy-panel h3,
#nosotros.shopper .slide-copy-panel p {
  max-width: none !important;
}

@media (max-width: 700px) {
  #nosotros.shopper .slide-copy-panel {
    padding-left: 22px !important;
    padding-right: 22px !important;
  }
}


/* Center shopper slider copy on large screens */
@media (min-width: 1200px) {
  #nosotros.shopper .slider-copy {
    width: min(100%, 760px) !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}


/* Center shopper section eyebrow */
#nosotros.shopper .center-title .eyebrow.pink {
  text-align: center !important;
  justify-self: center !important;
}


/* Shift shopper slider copy right */
@media (min-width: 901px) {
  #nosotros.shopper .slider-copy {
    transform: translateX(clamp(44px, 5.5vw, 104px)) !important;
  }
}


/* Reduce shopper section top spacing */
#nosotros.shopper {
  padding-top: clamp(22px, 3.5vw, 48px) !important;
}


/* Hide selected vertical accordion tab on desktop */
@media (min-width: 901px) {
  .category-tabs .category-tab.active {
    display: none !important;
  }
}


/* Solution card numbers typography */
#solucion.steps .step-content > span {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 128px !important;
  font-weight: 700 !important;
  line-height: .85 !important;
}


/* Solution card titles typography */
#solucion.steps .step-content h3,
#solucion.steps > article.step-panel.solution-step-02 .step-content h3 {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 60px !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
}


/* Solution card body typography */
#solucion.steps .step-content p,
#solucion.steps .step-content p * {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.18 !important;
}


/* Final solution card typography hierarchy */
#solucion.steps .step-content h3 {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 60px !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
}

#solucion.steps .step-content p,
#solucion.steps .step-content p * {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.18 !important;
}

#solucion.steps .step-content .button {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}


/* Final override for solution card 02 hierarchy */
#solucion.steps > article.step-panel.solution-step-02 .step-content h3 {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 60px !important;
  font-weight: 700 !important;
  line-height: 1.02 !important;
}

#solucion.steps > article.step-panel.solution-step-02 .step-content p,
#solucion.steps > article.step-panel.solution-step-02 .step-content p * {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 26px !important;
  font-weight: 500 !important;
  line-height: 1.18 !important;
}

#solucion.steps > article.step-panel.solution-step-02 .step-content .button {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
  font-size: 24px !important;
  font-weight: 800 !important;
  line-height: 1 !important;
}

.font-primary,
.font-primary * {
  font-family: var(--global-heading-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
}

.font-secondary,
.font-secondary * {
  font-family: var(--global-body-font, ui-sans-serif), ui-sans-serif, system-ui, sans-serif !important;
}

@media (max-width: 900px) {
  #conversion.conversion {
    display: grid !important;
    grid-template-columns: 1fr !important;
  }

  #conversion.conversion > .eyebrow {
    order: 1 !important;
    grid-column: 1 / -1 !important;
  }

  #conversion.conversion > .conversion-strip,
  #conversion.conversion > .color-strip {
    order: 2 !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    min-width: 0 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  #conversion.conversion > div:not(.metric-stack) {
    order: 3 !important;
    grid-column: 1 / -1 !important;
    max-width: none !important;
  }

  #conversion.conversion > .metric-stack {
    order: 4 !important;
    grid-column: 1 / -1 !important;
    width: 100% !important;
    justify-self: stretch !important;
  }
}

@media (max-width: 900px) {
  #nosotros.shopper .slider-copy {
    display: block !important;
    min-height: 0 !important;
  }

  #nosotros.shopper .slide-copy-panel,
  #nosotros.shopper .slide-copy-panel.is-prev,
  #nosotros.shopper .slide-copy-panel.is-next,
  #nosotros.shopper .slide-copy-panel.is-hidden,
  #nosotros.shopper .slide-copy-panel.is-before-1,
  #nosotros.shopper .slide-copy-panel.is-before-2,
  #nosotros.shopper .slide-copy-panel.is-after-1,
  #nosotros.shopper .slide-copy-panel.is-after-2 {
    display: none !important;
  }

  #nosotros.shopper .slide-copy-panel.is-active {
    display: block !important;
    opacity: 1 !important;
    transform: none !important;
    order: 1 !important;
  }
}

@media (max-width: 900px) {
  #nosotros.shopper .shopper-bottom-row {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    margin-top: 24px !important;
  }

  #nosotros.shopper .shopper-bottom-row .slider-statement {
    grid-column: 1 / -1 !important;
    max-width: none !important;
    margin: 0 !important;
  }

  #nosotros.shopper .shopper-bottom-row .slider-copy-cta {
    grid-column: 1 / -1 !important;
    justify-self: start !important;
    width: auto !important;
    white-space: normal !important;
  }
}

/* Hide selected Nuestra diferencia tab on mobile */
@media (max-width: 900px) {
  .category-tabs .category-tab.active {
    display: none !important;
  }
}

@media (max-width: 900px) {
  .category-tabs .category-tab {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    align-items: center !important;
    justify-content: stretch !important;
    column-gap: 16px !important;
    text-align: left !important;
  }

  .category-tabs .category-tab .tab-label {
    justify-self: start !important;
    text-align: left !important;
  }

  .category-tabs .category-tab .tab-number {
    justify-self: end !important;
    text-align: right !important;
  }

  .button,
  .category-cta,
  #modelo .model-cta-row .button,
  #nosotros.shopper .shopper-bottom-row .slider-copy-cta,
  .hero-description .button,
  .step-content .button,
  .results .button.primary {
    display: inline-flex !important;
    justify-self: center !important;
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  .button,
  .category-cta,
  #nosotros.shopper .shopper-bottom-row .slider-copy-cta {
    width: fit-content !important;
    max-width: 100% !important;
  }

  .hero-description,
  .step-content,
  .results-copy,
  #modelo .model-cta-row,
  #nosotros.shopper .shopper-bottom-row {
    text-align: center !important;
    justify-items: center !important;
  }
}

.mobile-menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255,255,255,.34);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  color: #fff;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform .2s ease, opacity .2s ease;
}

@media (max-width: 900px) {
  .site-header {
    display: flex;
    position: sticky;
    justify-content: space-between;
    gap: 12px;
  }

  .mobile-menu-toggle {
    display: inline-flex !important;
    order: 3;
  }

  .site-header .nav-cta,
  .site-header .brief-logout {
    order: 2;
  }

  .site-header nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 9;
    display: none !important;
    flex-direction: column;
    gap: 0;
    padding: 14px clamp(20px, 7vw, 72px) 18px;
    background: rgba(12, 16, 39, .98);
    border-bottom: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 22px 44px rgba(0,0,0,.28);
  }

  .site-header.is-menu-open nav {
    display: flex !important;
  }

  .site-header nav a {
    padding: 13px 0;
    border-bottom: 1px solid rgba(255,255,255,.1);
    text-align: left;
  }

  .site-header nav a:last-child {
    border-bottom: 0;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.is-menu-open .mobile-menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .infuse-footer .footer-links > div:first-child {
    display: none !important;
  }
}

/* Reduce vertical gap between work model and results sections. */
#modelo.model {
  padding-bottom: clamp(40px, 5vw, 64px) !important;
}

#casos-de-exito.results {
  padding-top: clamp(40px, 5vw, 64px) !important;
}

/* Accessibility contrast fixes */
.light-section .eyebrow,
.light-section .eyebrow.pink,
#problema .eyebrow,
#diferencia .eyebrow,
#modelo .eyebrow,
#casos-de-exito .eyebrow,
#recursos .eyebrow {
  color: #b8003a !important;
}

.light-section .section-copy,
.light-section .section-title p,
.light-section .category-intro p,
.light-section .visibility-summary-header p {
  color: #4f5565 !important;
}

.card-overlay .photo-card-title {
  margin: 0;
  font-size: 56px;
  line-height: .9;
  font-weight: 800;
}

/* Keep hero background image visible while preserving HTML LCP discovery. */
.hero {
  isolation: isolate;
  overflow: hidden !important;
  background:
    var(--hero-bg-image) center / cover no-repeat,
    #01092d !important;
}

.hero::before {
  z-index: 1 !important;
  background: linear-gradient(90deg, rgba(1, 9, 45, .64), rgba(1, 9, 45, .36)) !important;
  filter: none !important;
  transform: none !important;
  opacity: 1 !important;
  mix-blend-mode: normal !important;
}

.hero::after {
  z-index: 1 !important;
  background:
    radial-gradient(circle at 72% 28%, rgba(243, 25, 93, .14), transparent 34%),
    radial-gradient(circle at 22% 18%, rgba(114, 37, 233, .16), transparent 30%) !important;
  opacity: 1 !important;
}

.hero-content,
.hero .product-strip {
  position: relative;
  z-index: 2 !important;
}
