:root {
  --wash-blue: #13a1dc;
  --wash-blue-soft: #8fc2db;
  --wash-navy: #004d85;
  --wash-ink: #171f28;
  --wash-green: #c7f028;
  --wash-white: #ffffff;
  --wash-paper: #f3f8fb;
  --wash-line: rgba(23,31,40,.14);
  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Bebas Neue", "Inter", sans-serif;
  --slide-pad: 86px 72px 42px;
}

* { box-sizing: border-box; }
html, body { margin: 0; min-height: 100%; background: var(--wash-ink); color: var(--wash-ink); font-family: var(--sans); }
body { overflow: hidden; }
button { font: inherit; }

.topbar {
  position: fixed;
  z-index: 80;
  inset: 14px 18px auto;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 9px 12px 9px 18px;
  color: var(--wash-ink);
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 999px;
  box-shadow: 0 18px 50px rgba(0,77,133,.18);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: var(--display);
  font-size: 29px;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
}
.brand span { color: var(--wash-navy); }
.section-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--wash-green);
  color: var(--wash-ink);
  font-size: 10px;
  font-weight: 800;
  white-space: nowrap;
}
.section-status strong { font-weight: 900; }
.nav-pills,
.language-switcher { display: flex; align-items: center; justify-content: flex-end; gap: 8px; }
.nav-pills button, .controls button, .language-switcher button {
  border: 1px solid rgba(0,77,133,.22);
  background: transparent;
  color: var(--wash-ink);
  min-height: 34px;
  padding: 8px 13px;
  border-radius: 999px;
  cursor: pointer;
}
.nav-pills button {
  font-size: 13px;
  font-weight: 800;
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.language-switcher {
  margin-left: auto;
  padding: 3px;
  border-radius: 999px;
  background: rgba(0,77,133,.08);
  border: 1px solid rgba(0,77,133,.1);
}
.language-switcher button {
  min-width: 39px;
  padding: 6px 9px;
  font-size: 12px;
  font-weight: 900;
  color: rgba(23,31,40,.72);
  transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.nav-pills button.is-active,
.nav-pills button:hover,
.language-switcher button.is-active,
.language-switcher button:hover,
.controls button:hover {
  background: var(--wash-navy);
  color: var(--wash-white);
  border-color: var(--wash-navy);
}

.controls {
  position: fixed;
  z-index: 50;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 999px;
  background: rgba(23,31,40,.92);
  color: var(--wash-white);
  backdrop-filter: blur(18px);
}
.controls button { color: var(--wash-white); font-size: 13px; font-weight: 800; border-color: rgba(255,255,255,.32); }
.counter { min-width: 82px; text-align: center; font-size: 13px; font-weight: 900; }
.progress { position: fixed; z-index: 55; left: 0; bottom: 0; height: 4px; width: 100%; background: rgba(255,255,255,.16); }
.progress span { display: block; width: 0; height: 100%; background: var(--wash-green); transition: width .35s ease; }

deck-stage {
  display: block;
  width: 100vw;
  height: 100svh;
  overflow: hidden;
  position: relative;
}

.slide {
  --slide-bg: url("../assets/source-media/image11.jpeg");
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: var(--slide-pad);
  background:
    linear-gradient(90deg, rgba(23,31,40,.96) 0%, rgba(0,77,133,.84) 42%, rgba(0,77,133,.48) 72%, rgba(19,161,220,.22) 100%),
    linear-gradient(0deg, rgba(23,31,40,.44), rgba(23,31,40,.08) 52%),
    var(--slide-bg) center / cover no-repeat;
  color: var(--wash-white);
  overflow: hidden;
  opacity: 0;
  transform: translateX(4%) scale(.985);
  pointer-events: none;
  transition: opacity .34s ease, transform .44s cubic-bezier(.2,.8,.2,1);
}
.slide.active { opacity: 1; transform: translateX(0) scale(1); pointer-events: auto; }
.slide.before { transform: translateX(-4%) scale(.985); }
.slide::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 22% 26%, rgba(19,161,220,.18), transparent 34%),
    radial-gradient(circle at 84% 18%, rgba(199,240,40,.12), transparent 22%);
  pointer-events: none;
}

.slide-grid {
  position: relative;
  z-index: 1;
  height: 100%;
  min-height: 0;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
}
main { min-height: 0; display: grid; align-items: center; }
.slide-head, .slide-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  border-color: currentColor;
}
.slide-head { padding-bottom: 14px; border-bottom: 1px solid rgba(255,255,255,.22); background: linear-gradient(180deg, rgba(23,31,40,.92) 0%, rgba(23,31,40,.60) 100%); }
.slide-foot { padding-top: 14px; border-top: 1px solid rgba(255,255,255,.22); color: rgba(255,255,255,.72); font-size: 12px; line-height: 1.35; background: linear-gradient(0deg, rgba(23,31,40,.92) 0%, rgba(23,31,40,.60) 100%); }
.mark { width: 126px; height: 34px; display: flex; align-items: center; }
.mark img { max-width: 100%; max-height: 100%; object-fit: contain; }
.head-meta, .head-count, .eyebrow {
  font-size: 12px;
  line-height: 1.2;
  font-weight: 900;
  text-transform: uppercase;
  color: var(--wash-green);
}
.footer-nav { display: inline-flex; align-items: center; gap: 8px; white-space: nowrap; }
.footer-nav button { appearance: none; border: 0; background: transparent; color: inherit; padding: 0; font: inherit; font-weight: 900; cursor: pointer; }

.copy { max-width: 980px; }
.eyebrow { margin: 0 0 10px; letter-spacing: 0; }
.title {
  font-family: var(--display);
  font-size: 86px;
  line-height: .92;
  font-weight: 400;
  margin: 0;
  letter-spacing: 0;
  text-wrap: balance;
}
.title.small { font-size: 86px; line-height: .92; }
.subtitle {
  margin: 16px 0 0;
  max-width: 900px;
  font-size: 22px;
  line-height: 1.22;
  font-weight: 700;
  color: rgba(255,255,255,.82);
}

.hero-layout,
.statement-layout,
.metrics-layout,
.pillars-layout,
.nexa-layout,
.image-cards-layout,
.upsell-layout,
.dashboard-layout,
.commerce-layout,
.customer-layout,
.app-layout,
.services-layout,
.support-layout,
.care-layout,
.press-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, .95fr);
  gap: 38px;
  align-items: center;
  min-height: 0;
}
.cta-layout {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  width: 100%;
  max-width: 700px;
}
.cta-top { width: 100%; }
.cta-logo-watermark {
  display: block;
  width: clamp(200px, 28%, 340px);
  opacity: 0.15;
  filter: brightness(10);
  object-fit: contain;
  margin: auto;
}
.cta-address {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,.6);
  text-align: center;
  line-height: 1.7;
  padding-bottom: 8px;
}
.hero-layout.no-foreground {
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  gap: 30px;
}
.hero-layout.no-foreground .copy { max-width: 980px; }
.hero-layout.no-foreground .title { max-width: 980px; }
.hero-action {
  position: absolute;
  left: 72px;
  bottom: 72px;
  z-index: 4;
  color: var(--wash-white);
  font-size: 22px;
  line-height: 1.1;
  font-weight: 800;
  text-decoration: none;
  border-bottom: 2px solid var(--wash-green);
  text-shadow: 0 2px 14px rgba(0,0,0,.32);
}
.hero-action:hover { color: var(--wash-green); }
.process-wrap, .image-only, .closing-layout {
  min-height: 0;
}

.media {
  margin: 0;
  width: 100%;
  min-width: 0;
  display: grid;
  place-items: center;
}
.media img,
.image-only img,
.closing-main {
  width: 100%;
  max-height: 62svh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(0,0,0,.32);
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
}

.stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}
.stats.count-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.stats.count-5 .stat strong { font-size: 54px; }
.stats.compact  { grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr)); }
.stat {
  min-height: 170px;
  padding: 26px 22px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: rgba(23,31,40,.54);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}
.stat strong {
  display: block;
  font-family: var(--display);
  font-size: 76px;
  line-height: .9;
  letter-spacing: 0;
  color: var(--wash-white);
  overflow-wrap: normal;
}
.stats.compact .stat { min-height: 108px; padding: 10px; }
.stats.compact .stat strong {
  font-family: var(--display);
  font-size: 36px;
  line-height: 1.02;
  font-weight: 400;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: normal;
  text-align: center;
}
.stat-icon {
  display: block;
  width: 82px;
  height: 82px;
  object-fit: contain;
  margin: 0 auto 18px;
}
.hero-layout.no-foreground .stats.compact {
  width: min(100%, 1120px);
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.hero-layout.no-foreground .stats.compact .stat {
  min-height: 220px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 24px 18px;
  background: rgba(23,31,40,.42);
}
.stat span {
  display: block;
  font-size: 16px;
  line-height: 1.28;
  font-weight: 700;
  color: rgba(255,255,255,.82);
}

.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 22px;
}
.cards.three-col { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.cards.two-col { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.cards.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.card,
.step,
.operations article {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  background: rgba(23,31,40,.56);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  padding: 24px 22px;
}
.card h3,
.step h3,
.operations h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 34px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
  color: var(--wash-white);
}
.card p,
.step p,
.operations p {
  margin: 11px 0 0;
  font-size: 15px;
  line-height: 1.38;
  font-weight: 650;
  color: rgba(255,255,255,.78);
}

.process-wrap { display: grid; gap: 10px; align-content: center; }
.process { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: 10px; }
.step { min-height: 138px; }
.step b {
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--wash-green);
  color: var(--wash-ink);
  font-weight: 900;
}
.operations { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 10px; }
.operations article { min-height: 112px; }

.process-wrap .title.small { font-size: 86px; }
.process-wrap .card p,
.process-wrap .step p,
.process-wrap .operations p { font-size: 11px; line-height: 1.24; }
.services-layout .title.small,
.nexa-layout .title.small,
.commerce-layout .title.small { font-size: 86px; }
.commerce-layout--nofg {
  grid-template-columns: minmax(0, 1fr);
}

/* Pillars V2 – vertical stack */
.pillars-v2 {
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  width: 100%;
}
.pv2-item {
  display: flex;
  flex-direction: column;
}
.pv2-title {
  font-family: var(--display);
  font-size: 110px;
  line-height: 0.9;
  font-weight: 400;
  margin: 0 0 8px;
  text-transform: uppercase;
  color: var(--wash-white);
  letter-spacing: 0;
  text-shadow: 0 2px 18px rgba(0,0,0,.5);
}
.pv2-initial {
  font-style: normal;
  font-size: 1.6em;
  color: var(--wash-green);
  line-height: 0.75;
  display: inline-block;
  vertical-align: bottom;
  margin-right: 1px;
}
.pv2-desc {
  margin: 0;
  font-size: 28px;
  line-height: 1.32;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  max-width: 700px;
  text-shadow: 0 2px 14px rgba(0,0,0,.5);
}

.pillars-layout .media img,
.nexa-layout .media img,
.image-cards-layout .media img,
.commerce-layout .media img,
.support-layout .media img,
.care-layout .media img { object-fit: cover; height: 58svh; }
.care-layout--nofg { grid-template-columns: minmax(0, 1fr); }

/* ── Care V2 layout ── */
.cv2-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.6fr);
  column-gap: 38px;
  row-gap: 28px;
}
.cv2-header {
  grid-column: 1 / 3;
  grid-row: 1;
}
.cv2-left {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: center;
  text-align: right;
}
.cv2-right {
  grid-column: 2;
  grid-row: 2;
}
.cv2-left strong {
  display: block;
  font-family: var(--display);
  font-size: 210px;
  line-height: 1;
  color: var(--wash-green);
}
.cv2-left span {
  display: block;
  margin-top: 10px;
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  color: rgba(255,255,255,.9);
  line-height: 1.3;
  text-align: right;
}
.cv2-right {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cv2-card {
  background: rgba(23,31,40,.56);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 12px;
  padding: 18px 22px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.cv2-title {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.cv2-title h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 42px;
  line-height: 1;
  font-weight: 400;
  color: var(--wash-green);
}
.cv2-badge {
  background: var(--wash-blue);
  color: var(--wash-white);
  padding: 4px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
  white-space: nowrap;
}
.cv2-list {
  margin: 0;
  padding-left: 20px;
  color: rgba(255,255,255,.88);
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
  text-transform: uppercase;
}
.cv2-list li + li { margin-top: 4px; }
.customer-layout .media img,
.services-layout .media img { max-height: 66svh; }
/* ── Servicios slide: left gradient, full-width card grid ── */
.servicios-bg {
  background:
    linear-gradient(90deg,
      rgba(23,31,40,.97) 0%,
      rgba(23,31,40,.88) 40%,
      rgba(23,31,40,.55) 70%,
      rgba(23,31,40,.20) 100%),
    var(--slide-bg) right center / auto 100% no-repeat !important;
}
.services-layout--nofg {
  grid-template-columns: minmax(0, 1fr);
  max-width: 68%;
}
.go-income-clean .slide-grid {
  grid-template-rows: auto minmax(0, 1fr);
}
.go-income-clean main {
  align-items: start;
}
.go-module-feature {
  background:
    linear-gradient(90deg,
      rgba(0,31,58,.96) 0%,
      rgba(0,57,98,.82) 34%,
      rgba(0,93,132,.54) 66%,
      rgba(19,161,220,.20) 100%),
    var(--slide-bg) center center / cover no-repeat !important;
}
.go-module-feature main {
  align-items: start;
}
.go-module-feature .services-layout--nofg {
  max-width: none;
  width: 100%;
  height: 100%;
  align-content: start;
}
.go-module-feature .services-layout--nofg > div {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: clamp(18px, 3.5vh, 42px);
  min-height: 0;
}
.go-module-feature .copy {
  max-width: min(1060px, 78vw);
}
.go-module-feature .title.small {
  font-size: clamp(54px, 5.4vw, 92px);
  line-height: .88;
}
.go-module-feature .subtitle {
  max-width: 860px;
  font-size: clamp(16px, 1.2vw, 22px);
  line-height: 1.3;
}
.go-module-feature .cards.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.7vw, 28px);
  width: 100%;
  margin-top: 0;
  align-self: start;
}
.go-module-feature .card {
  position: relative;
  min-height: clamp(150px, 17vh, 210px);
  padding: clamp(22px, 2vw, 34px);
  overflow: hidden;
  border-radius: 10px;
  border-color: rgba(255,255,255,.28);
  background: linear-gradient(135deg, rgba(0,43,83,.88), rgba(23,31,40,.72));
  box-shadow: 0 20px 60px rgba(0,0,0,.26);
}
.go-module-feature .card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--wash-green);
}
.go-module-feature .card h3 {
  color: var(--wash-green);
  font-size: clamp(34px, 3vw, 58px);
}
.go-module-feature .card p {
  display: block;
  margin: clamp(16px, 2vh, 28px) 0 0;
  text-align: left;
  text-transform: none;
  color: rgba(255,255,255,.86);
  font-size: clamp(15px, 1.25vw, 22px);
  line-height: 1.22;
}
@media (max-height: 900px) and (min-width: 681px) {
  .go-module-feature .services-layout--nofg > div {
    gap: 16px;
  }
  .go-module-feature .title.small {
    font-size: clamp(50px, 4.8vw, 78px);
  }
  .go-module-feature .subtitle {
    max-width: 760px;
    font-size: 15px;
    margin-top: 8px;
  }
  .go-module-feature .cards.service-grid {
    gap: 14px 18px;
  }
  .go-module-feature .card {
    min-height: 128px;
    padding: 20px 24px;
  }
  .go-module-feature .card h3 {
    font-size: clamp(30px, 2.6vw, 46px);
  }
  .go-module-feature .card p {
    margin-top: 14px;
    font-size: 15px;
  }
}
.go-income-models {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 18px;
  height: 100%;
  min-height: 0;
}
.gim-header {
  max-width: 980px;
}
.gim-header .title.small {
  font-size: clamp(54px, 5.4vw, 94px);
}
.gim-header .subtitle {
  max-width: 780px;
}
.gim-models {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: start;
  min-height: 0;
}
.gim-card {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 0;
  border-radius: 18px;
  padding: clamp(20px, 2.15vw, 34px);
  border: 1px solid rgba(255,255,255,.22);
  box-shadow: 0 24px 70px rgba(0,0,0,.25);
}
.gim-card--navy {
  background: rgba(0,43,83,.94);
  color: var(--wash-white);
}
.gim-card--green {
  background: rgba(199,240,40,.96);
  color: var(--wash-navy);
}
.gim-pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  width: 100%;
  padding: 7px 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.gim-card--navy .gim-pill {
  background: var(--wash-green);
  color: var(--wash-navy);
}
.gim-card--green .gim-pill {
  background: var(--wash-navy);
  color: var(--wash-green);
}
.gim-card h2 {
  margin: 22px 0 0;
  font-family: var(--display);
  font-size: clamp(44px, 3.7vw, 70px);
  font-weight: 400;
  line-height: .92;
  letter-spacing: 0;
}
.gim-metric {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-top: 4px;
  color: var(--wash-green);
}
.gim-card--green .gim-metric {
  color: var(--wash-navy);
}
.gim-metric strong {
  font-family: var(--display);
  font-size: clamp(66px, 6.4vw, 118px);
  font-weight: 400;
  line-height: .78;
  letter-spacing: 0;
}
.gim-metric span {
  font-size: clamp(18px, 1.8vw, 30px);
  font-weight: 950;
}
.gim-note {
  margin: 0;
  font-size: clamp(15px, 1.25vw, 22px);
  font-weight: 700;
  line-height: 1.35;
  color: rgba(255,255,255,.68);
}
.gim-card--green .gim-note {
  color: rgba(0,77,133,.68);
}
.gim-kicker {
  display: grid;
  gap: 22px;
  margin: 14px 0 0;
  font-size: clamp(13px, 1.05vw, 18px);
  font-weight: 950;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
}
.gim-kicker::before {
  content: "";
  display: block;
  width: 86px;
  height: 6px;
  border-radius: 999px;
  background: var(--wash-green);
}
.gim-card--green .gim-kicker {
  color: rgba(0,77,133,.68);
}
.gim-card--green .gim-kicker::before {
  background: var(--wash-navy);
}
.gim-list {
  display: grid;
  gap: 11px;
  padding: 0;
  margin: 0;
  list-style: none;
}
.gim-list li {
  display: grid;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: start;
  gap: 14px;
  font-size: clamp(15px, 1.25vw, 22px);
  font-weight: 850;
  line-height: 1.22;
}
.gim-list li span {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  margin-top: 1px;
  border-radius: 50%;
  background: var(--wash-green);
  color: var(--wash-navy);
  font-size: 17px;
  font-weight: 950;
}
.gim-card--green .gim-list li span {
  background: var(--wash-navy);
  color: var(--wash-green);
}
@media (max-height: 900px) and (min-width: 681px) {
  .go-income-models { gap: 10px; }
  .gim-header .title.small { font-size: clamp(48px, 4.6vw, 74px); }
  .gim-header .subtitle { font-size: 16px; margin-top: 8px; }
  .gim-card { gap: 9px; padding: 18px 22px; }
  .gim-pill { min-height: 26px; padding: 5px 14px; font-size: 10px; }
  .gim-card h2 { margin-top: 8px; font-size: clamp(34px, 3vw, 52px); }
  .gim-metric strong { font-size: clamp(52px, 5.1vw, 82px); }
  .gim-note { font-size: 14px; }
  .gim-kicker { gap: 12px; margin-top: 6px; font-size: 11px; }
  .gim-kicker::before { height: 4px; width: 70px; }
  .gim-list { gap: 8px; }
  .gim-list li { grid-template-columns: 24px minmax(0, 1fr); gap: 10px; font-size: 14px; }
  .gim-list li span { width: 22px; height: 22px; font-size: 14px; }
}
@media (max-width: 1100px) {
  .gim-models { grid-template-columns: 1fr; }
  .go-income-models { overflow: auto; padding-bottom: 18px; }
}
.soporte-bg {
  background:
    linear-gradient(90deg,
      rgba(23,31,40,.96) 0%,
      rgba(23,31,40,.82) 40%,
      rgba(23,31,40,.25) 65%,
      transparent 100%),
    var(--slide-bg) right center / auto 82% no-repeat !important;
}
.app-layout .media img { max-height: 68svh; background: none; box-shadow: none; border-radius: 0; }
.app-layout--nofg { grid-template-columns: minmax(0, 1fr); }
.dashboard-layout .media img,
.upsell-layout .media img { max-height: 46svh; }

.press-media {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  align-items: center;
}
.press-media .media { grid-column: 1 / -1; }
.press-media img {
  width: 100%;
  max-height: 160px;
  object-fit: contain;
  border-radius: 8px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 24px 70px rgba(0,0,0,.28);
}
.press-media .media img { max-height: 310px; }

/* ── Press V2 layout ── */
main:has(.pv2-layout) { align-items: stretch; }
main:has(.cta-layout) { align-items: stretch; }
.pv2-layout {
  display: flex;
  flex-direction: column;
  gap: 36px;
  min-height: 0;
  height: 100%;
  width: 100%;
}
.pv2-layout .copy { max-width: 100%; flex-shrink: 0; }
.pv2-layout .title { font-size: 64px; }
.pv2-layout .subtitle { font-size: 14px; margin-top: 4px; }
.pv2-img-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  flex: 1;
  min-height: 0;
}
.pv2-img-row img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: top;
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
}
.pv2-2cols {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 32px;
  min-height: 0;
  align-items: start;
  margin-top: auto;
  margin-bottom: auto;
}
.pv2-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-height: 0;
}
.pv2-card-img {
  width: 100%;
  max-height: 320px;
  object-fit: contain;
  object-position: top;
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
  flex-shrink: 0;
}
.pv2-card:has(.pv2-card-img + .pv2-card-img) .pv2-card-img {
  max-height: 220px;
}
.pv2-card-body {
  flex-shrink: 0;
}
.pv2-card-text {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255,255,255,.9);
}
.pv2-cols {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  flex: 1;
  min-height: 0;
}
.pv2-col {
  background: none;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 0;
}
.pv2-awards {
  width: 100%;
  flex: 1;
  min-height: 0;
  max-height: 260px;
  object-fit: contain;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  border: none;
}
.pv2-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pv2-bullets li {
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--wash-white);
  padding-left: 18px;
  position: relative;
  line-height: 1.3;
}
.pv2-bullets li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--wash-green);
}
.pv2-col--quote { justify-content: space-between; }
.pv2-qmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 88px;
  line-height: .65;
  color: var(--wash-green);
  margin-bottom: 6px;
  flex-shrink: 0;
}
.pv2-qtext {
  margin: 0;
  font-size: 18px;
  line-height: 1.55;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  flex: 1;
}
.pv2-qauthor {
  border-top: 1px solid rgba(255,255,255,.25);
  padding-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}
.pv2-qauthor strong {
  font-size: 15px;
  font-weight: 800;
  color: var(--wash-white);
  text-transform: uppercase;
}
.pv2-qauthor span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.6);
  text-transform: uppercase;
  letter-spacing: .4px;
}
.pv2-forbes {
  max-height: 36px;
  width: auto;
  object-fit: contain;
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
  filter: brightness(0) invert(1);
  flex-shrink: 0;
}
.pv2-press-img {
  width: 100%;
  flex: 1;
  min-height: 0;
  max-height: 240px;
  object-fit: cover;
  border-radius: 8px;
  background: transparent;
  box-shadow: none;
  border: none;
}
.pv2-press-text {
  margin: 0;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.5;
  color: rgba(255,255,255,.85);
}

.image-only {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
}
.image-only .eyebrow { color: var(--wash-green); }
.image-only img {
  height: 68svh;
  max-height: 68svh;
  object-fit: contain;
  background: rgba(255,255,255,.9);
}

/* ── Full-bleed image slides (bgonly) ── */
.pptx-imgbg {
  background: #111 !important;
}
.bgonly-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  border-radius: 0;
  box-shadow: none;
  border: none;
  background: transparent;
}

.cta-link {
  display: inline-block;
  margin-top: 28px;
  font-size: 20px;
  font-weight: 800;
  color: var(--wash-white);
  text-decoration: none;
  border-bottom: 3px solid var(--wash-green);
  padding-bottom: 3px;
  transition: color .18s ease;
}
.cta-link:hover { color: var(--wash-green); }
.closing-layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 100%;
}
.closing-logo {
  width: clamp(240px, 36%, 480px);
  opacity: 1;
  mix-blend-mode: normal;
  object-fit: contain;
}
.closing-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 30px;
  font-weight: 500;
  color: rgba(255,255,255,1);
  text-align: center;
  line-height: 1.7;
}
.socials { display: flex; justify-content: center; gap: 20px; align-items: center; margin-top: 16px; }
.socials a { display: block; }
.socials img {
  width: 80px;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  background: none;
  box-shadow: none;
  border: none;
}

@media (max-width: 1100px) {
  :root { --slide-pad: 60px; }
  .nav-pills { display: none; }
  .title { font-size: 68px; }
  .title.small { font-size: 68px; }
  .subtitle { font-size: 18px; }
  .hero-layout,
  .statement-layout,
  .metrics-layout,
  .pillars-layout,
  .nexa-layout,
  .image-cards-layout,
  .upsell-layout,
  .dashboard-layout,
  .commerce-layout,
  .customer-layout,
  .app-layout,
  .services-layout,
  .support-layout,
  .care-layout,
  .press-layout,
  .cta-layout {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .media img { max-height: 32svh; }
  .stats, .stats.compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .process { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .operations { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-height: 900px) and (min-width: 681px) {
  .slide-foot { display: none; }
  .slide-grid { grid-template-rows: auto minmax(0, 1fr); gap: 12px; }
  .title { font-size: 72px; }
  .title.small { font-size: 72px; }
  .subtitle { font-size: 19px; margin-top: 10px; }
  .card,
  .step,
  .operations article,
  .stat { padding: 13px; }
  .cards { gap: 10px; margin-top: 14px; }
  .stats { gap: 10px; margin-top: 18px; }
  .card h3,
  .step h3,
  .operations h3 { font-size: 22px; }
  .card p,
  .step p,
  .operations p { font-size: 11px; line-height: 1.24; }
  .process-wrap .title.small { font-size: 40px; }
  .process-wrap .subtitle { font-size: 17px; }
  .step { min-height: 124px; }
  .operations article { min-height: 96px; }
  .media img { max-height: 56svh; }
  .hero-action { bottom: 48px; }
  .hero-layout.no-foreground .stats.compact .stat { min-height: 170px; padding: 18px 12px; }
  .hero-layout.no-foreground .stats.compact .stat strong { font-size: 28px; }
  .hero-layout.no-foreground .stat-icon { width: 58px; height: 58px; margin-bottom: 12px; }
}

@media (max-width: 680px) {
  :root { --slide-pad: 76px 18px 86px; }
  .topbar { inset: 8px 8px auto; min-height: 48px; padding: 8px 10px; }
  .brand { font-size: 23px; }
  .language-switcher { gap: 4px; padding: 2px; }
  .language-switcher button { min-width: 34px; min-height: 30px; padding: 5px 7px; font-size: 11px; }
  .section-status { display: none; }
  .slide-grid { gap: 12px; }
  .slide-head { padding-bottom: 8px; }
  .slide-foot { display: none; }
  .mark { width: 108px; }
  .title { font-size: 48px; }
  .title.small { font-size: 38px; }
  .subtitle { font-size: 16px; }
  .stats, .stats.compact, .cards, .cards.two-col, .cards.three-col, .cards.service-grid, .operations, .process {
    grid-template-columns: 1fr;
  }
  .stat { min-height: 88px; padding: 13px; }
  .stat strong { font-size: 34px; }
  .card, .step, .operations article { padding: 13px; }
  .card h3, .step h3, .operations h3 { font-size: 24px; }
  .card p, .step p, .operations p { font-size: 12px; }
  .media img,
  .image-only img { max-height: 28svh; height: auto; }
  .process-wrap { overflow: auto; align-content: start; padding-bottom: 24px; }
  main { align-items: start; overflow: auto; }
  .controls { bottom: 10px; }
  .controls button { font-size: 12px; padding: 7px 10px; }
  .counter { min-width: 68px; }
  .hero-action { left: 18px; bottom: 58px; font-size: 17px; }
  .hero-layout.no-foreground .stats.compact { grid-template-columns: 1fr; }
}

/* ── Slide 7: NEXA POS — TPV visible on left ── */
.nexa-pos {
  background:
    linear-gradient(90deg,
      rgba(0,0,0,.08) 0%,
      rgba(23,31,40,.55) 38%,
      rgba(23,31,40,.97) 52%,
      rgba(0,77,133,.99) 100%),
    linear-gradient(0deg, rgba(23,31,40,.3), transparent 55%),
    var(--slide-bg) 8% center / auto 78% no-repeat !important;
}
.image-cards-layout--nofg {
  grid-template-columns: 0.85fr 1.15fr;
}
.icl-gap { /* transparent left column — shows background */ }
.image-cards-layout--nofg .card h3,
.image-cards-layout .card h3 {
  color: var(--wash-green);
  font-size: 36px;
}

/* ── Slide 8: NEXA Upsell — lighter gradient, hero stats ── */
.nexa-upsell {
  background:
    linear-gradient(135deg,
      rgba(0,77,133,.50) 0%,
      rgba(23,31,40,.70) 50%,
      rgba(23,31,40,.80) 100%),
    var(--slide-bg) right center / auto 85% no-repeat !important;
}
.upsell-layout--nofg {
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
}
.usl-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  border-left: 2px solid rgba(255,255,255,.18);
  padding-left: 52px;
}
.big-stats {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
}
.big-stat {
  display: flex;
  flex-direction: column;
}
.big-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 200px;
  line-height: 1;
  font-weight: 400;
  color: var(--wash-green);
  padding-bottom: 14px;
  border-bottom: 3px solid var(--wash-green);
}
.big-stat span {
  display: block;
  margin-top: 14px;
  font-size: 30px;
  line-height: 1.35;
  color: rgba(255,255,255,.9);
  font-weight: 500;
}
.hero-action--right {
  left: auto;
  right: 72px;
  text-align: right;
}

/* ── Slide 9: NEXA Dashboard — zoom background to hide browser chrome ── */
.nexa-dashboard {
  background:
    linear-gradient(90deg,
      rgba(23,31,40,.96) 0%,
      rgba(23,31,40,.82) 42%,
      rgba(23,31,40,.30) 72%,
      rgba(23,31,40,.10) 100%),
    var(--slide-bg) center 35% / 130% auto no-repeat !important;
}
.dashboard-layout--nofg {
  grid-template-columns: minmax(0, 1fr);
  max-width: 62%;
}

/* ── Slide 11: NEXA Customer — woman left, content right ── */
.nexa-customer {
  background:
    linear-gradient(90deg,
      rgba(23,31,40,.05) 0%,
      rgba(23,31,40,.18) 28%,
      rgba(23,31,40,.88) 50%,
      rgba(23,31,40,.97) 100%),
    linear-gradient(0deg, rgba(23,31,40,.55) 0%, transparent 18%),
    var(--slide-bg) 4% 30% / auto 82% no-repeat #4a9fc8 !important;
}
.customer-layout--nofg {
  grid-template-columns: minmax(0, 1fr);
  margin-left: auto;
  max-width: 58%;
}
.nexa-customer .card h3 {
  color: var(--wash-green);
  font-size: 44px;
}
.nexa-customer .card p {
  font-size: 17px;
  line-height: 1.38;
}
.nexa-customer .card {
  padding: 24px 22px;
}

/* ── Nexa V2 ─────────────────────────────────── */
.nexa-v2 {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 6px;
  height: 100%;
  min-height: 0;
}
.nexa-v2 .copy { margin-bottom: 0; }
.nexa-v2 .title { font-size: 86px; line-height: .92; }
.nexa-v2 .subtitle { display: none; }
.nv2-diagram {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 0;
}
.nv2-diagram img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border: none;
  box-shadow: none;
  background: transparent;
  border-radius: 0;
  -webkit-mask-image: radial-gradient(ellipse 94% 88% at 50% 50%, black 45%, transparent 88%);
  mask-image: radial-gradient(ellipse 94% 88% at 50% 50%, black 45%, transparent 88%);
}
.nv2-cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}
.nv2-card {
  background: rgba(23,31,40,.62);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 12px;
  padding: 16px 18px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.nv2-card h3 {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0;
  color: var(--wash-green);
}
.nv2-card p {
  margin: 0;
  font-size: 20px;
  line-height: 1.38;
  font-weight: 650;
  color: rgba(255,255,255,.82);
}

/* ── Process V2 ─────────────────────────────── */
.process-v2 {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 4px;
  min-height: 0;
  height: 100%;
}
.pv2-head .title { font-size: 72px; line-height: .92; }
.pv2-head .subtitle { font-size: 18px; margin-top: 8px; max-width: 860px; }
.pv2-body {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 16px;
  min-height: 0;
  align-items: stretch;
}

/* Snake */
.psnake {
  position: relative;
  min-height: 0;
  overflow: visible;
}
.psnake__svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.snode {
  position: absolute;
  width: 0;
  height: 0;
}
.snode__dot {
  position: absolute;
  width: 62px;
  height: 62px;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  background: var(--wash-green);
  color: var(--wash-ink);
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 900;
  box-shadow: 0 0 0 8px rgba(199,240,40,.18), 0 4px 18px rgba(0,0,0,.4);
  z-index: 2;
}
.snode__dot--end {
  background: var(--wash-blue);
  color: var(--wash-white);
  font-size: 20px;
  box-shadow: 0 0 0 8px rgba(19,161,220,.22), 0 4px 18px rgba(0,0,0,.4);
}
.snode__above,
.snode__below {
  position: absolute;
  width: 220px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
}
.snode__above { bottom: 42px; }
.snode__below { top: 42px; }
.snode__above strong {
  display: block;
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.05;
  color: var(--wash-white);
  text-transform: uppercase;
  letter-spacing: 0;
  text-shadow: 0 1px 10px rgba(0,0,0,.7);
}
.snode__below p {
  margin: 0;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 600;
  color: rgba(255,255,255,.78);
  text-shadow: 0 1px 8px rgba(0,0,0,.6);
}

/* Wheel */
.pwheel { min-height: 0; display: flex; align-items: stretch; height: 100%; }
.pwheel__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  position: relative;
  width: 100%;
  height: 100%;
}
.wquad {
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  background: rgba(23,31,40,.62);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  padding: 28px 24px 24px 28px;
}
.pwheel__grid .wquad:nth-child(odd)  { padding-right: 44px; }
.pwheel__grid .wquad:nth-child(even) { padding-left:  44px; }
.wquad h4 {
  margin: 0 0 12px;
  font-family: var(--display);
  font-size: 36px;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
  color: var(--wash-green);
  letter-spacing: 0;
}
.wquad p {
  margin: 0;
  font-size: 16px;
  line-height: 1.42;
  font-weight: 600;
  color: rgba(255,255,255,.78);
}
.pwheel__hub {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 4;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: var(--wash-navy);
  border: 2px solid rgba(19,161,220,.8);
  box-shadow: 0 0 0 5px rgba(19,161,220,.16), 0 8px 28px rgba(0,0,0,.5);
  display: grid;
  place-items: center;
  text-align: center;
  font-size: 11px;
  font-weight: 900;
  line-height: 1.3;
  color: var(--wash-white);
  text-transform: uppercase;
}

/* ── La Wash GO: Locations layout ───────────────────────────────────────── */
.go-locations {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  height: 100%;
  min-height: 0;
}
.gol-body {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 20px;
  min-height: 0;
}
.go-locations .cards {
  width: 100%;
  margin-top: 0;
  gap: 18px;
  align-content: stretch;
}
.go-locations .card {
  min-height: 160px;
  padding: 22px 28px;
}
.go-locations .card-icon { width: 58px; height: 58px; margin-bottom: 10px; }
.gol-bullets {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 28px;
}
.gol-bullets li {
  font-size: clamp(26px, 2.15vw, 38px);
  font-weight: 900;
  color: #fff;
  padding-left: 24px;
  border-left: 6px solid var(--wash-green);
  line-height: 1.14;
}

/* ── GO card icon + accent titles ────────────────────────────────────────── */
.card-icon {
  display: block;
  width: 76px;
  height: 76px;
  color: rgba(255,255,255,.85);
  margin-bottom: 12px;
  flex-shrink: 0;
}
.card-icon svg { width: 100%; height: 100%; }
.go-cards-accent .card h3 { color: var(--wash-green); }

/* ── La Wash GO: Win-Win layout ─────────────────────────────────────────── */
.go-winwin {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  gap: 18px;
  height: 100%;
  min-height: 0;
}
.gww-header {
  max-width: 1220px;
  flex-shrink: 0;
}
.gww-header .title.small {
  font-size: clamp(58px, 5.6vw, 100px);
  line-height: .9;
}
.gww-header .subtitle {
  max-width: 1040px;
  font-size: clamp(17px, 1.35vw, 24px);
}
.gww-cols {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 86px minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  min-height: 0;
}
.gww-arrow {
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  justify-self: center;
  border-radius: 50%;
  border: 1px solid rgba(199,240,40,.45);
  background: radial-gradient(circle at 35% 30%, rgba(199,240,40,.26), rgba(0,77,133,.70));
  box-shadow: 0 18px 50px rgba(0,0,0,.32);
  font-size: 42px;
  font-weight: 900;
  color: var(--wash-green);
  line-height: 1;
}
.gww-col {
  position: relative;
  display: grid;
  align-content: start;
  min-height: clamp(260px, 35vh, 410px);
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0,43,83,.86), rgba(23,31,40,.66));
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 10px;
  padding: clamp(20px, 2vw, 34px);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
}
.gww-col::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: var(--wash-blue-soft);
}
.gww-col--investor { border-color: rgba(143,194,219,.45); }
.gww-col--lawash   { border-color: rgba(199,240,40,.42); }
.gww-col--lawash::before { background: var(--wash-green); }
.gww-col-title {
  margin: 0 0 18px;
  font-family: var(--display);
  font-size: clamp(40px, 3.6vw, 64px);
  line-height: 1;
  font-weight: 400;
  letter-spacing: 0;
}
.gww-col--investor .gww-col-title { color: var(--wash-blue-soft); }
.gww-col--lawash   .gww-col-title { color: var(--wash-green); }
.gww-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255,255,255,.9);
}
.gww-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 10px 12px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.10);
  font-size: clamp(13px, 1.05vw, 17px);
  font-weight: 800;
  line-height: 1.25;
}
.gww-list li span {
  display: grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--wash-blue-soft);
  color: var(--wash-navy);
  font-size: 14px;
  font-weight: 950;
}
.gww-col--lawash .gww-list li span {
  background: var(--wash-green);
}
.gww-stats { flex-shrink: 0; }
.gww-stats .stats {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 0;
}
.gww-stats .stat {
  position: relative;
  min-height: 120px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0,43,83,.88), rgba(23,31,40,.72));
  border-radius: 10px;
  border-color: rgba(255,255,255,.20);
}
.gww-stats .stat::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: var(--wash-green);
}
.gww-stats .stat strong {
  color: var(--wash-white);
  font-size: clamp(46px, 4.4vw, 74px);
}
.gww-stats .stat span {
  color: rgba(255,255,255,.82);
  font-size: clamp(13px, 1.05vw, 17px);
}
@media (max-height: 1050px) and (min-width: 681px) {
  .go-winwin {
    grid-template-rows: auto minmax(0, 1fr) auto;
    gap: 10px;
  }
  .gww-header .copy { max-width: 1120px; }
  .gww-header .eyebrow { margin-bottom: 6px; }
  .gww-header .title.small { font-size: clamp(40px, 3.35vw, 62px); }
  .gww-header .subtitle {
    max-width: 1060px;
    margin-top: 6px;
    font-size: 15px;
    line-height: 1.15;
  }
  .gww-cols {
    grid-template-columns: minmax(0, 1fr) 58px minmax(0, 1fr);
    gap: 12px;
    align-items: center;
  }
  .gww-arrow {
    width: 52px;
    height: 52px;
    align-self: center;
    font-size: 30px;
  }
  .gww-col {
    min-height: 285px;
    align-content: start;
    padding: 18px 22px;
  }
  .gww-col::before { height: 5px; }
  .gww-col-title {
    margin-bottom: 9px;
    font-size: clamp(28px, 2.15vw, 38px);
  }
  .gww-list { gap: 6px; }
  .gww-list li {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
    padding: 9px 10px;
    font-size: clamp(11px, .72vw, 13.5px);
    line-height: 1.15;
  }
  .gww-list li span {
    width: 18px;
    height: 18px;
    font-size: 11px;
  }
  .gww-stats .stats { gap: 10px; }
  .gww-stats .stat {
    min-height: 72px;
    padding: 10px 14px;
    gap: 6px;
  }
  .gww-stats .stat::before { height: 4px; }
  .gww-stats .stat strong { font-size: clamp(30px, 2.7vw, 46px); }
  .gww-stats .stat span {
    font-size: 12px;
    line-height: 1.12;
  }
}

/* ── La Wash GO: Amortize layout ────────────────────────────────────────── */
.go-amortize {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 12px;
  height: 100%;
  min-height: 0;
}
.gam-header { flex-shrink: 0; }
.gam-table {
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.gam-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1.1fr 1.8fr;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.88);
}
.gam-row:nth-child(even) { background: rgba(255,255,255,.06); }
.gam-head {
  background: rgba(0,77,133,.55) !important;
  color: var(--wash-green);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .5px;
  border: 1px solid rgba(255,255,255,.16);
  margin-bottom: 2px;
}
.gam-highlight {
  margin-top: 6px;
  padding: 9px 14px;
  background: rgba(199,240,40,.12);
  border: 1px solid rgba(199,240,40,.36);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--wash-green);
}
.gam-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  flex-shrink: 0;
}
.gam-step {
  background: rgba(23,31,40,.58);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 10px;
  padding: 14px 16px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.gam-step-label {
  font-family: var(--display);
  font-size: 30px;
  font-weight: 400;
  line-height: 1;
  color: var(--wash-green);
  margin-bottom: 6px;
}
.gam-step-title {
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  color: var(--wash-white);
  margin-bottom: 5px;
}
.gam-step-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.45;
  color: rgba(255,255,255,.78);
}

@media (max-width: 1100px) {
  .gww-cols { grid-template-columns: 1fr; }
  .gww-arrow { display: none; }
  .gam-steps { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .gam-row { grid-template-columns: 1fr 1fr; font-size: 11px; }
  .gam-row span:nth-child(3),
  .gam-row span:nth-child(4) { display: none; }
}
