:root {
  --cronopia-breakpoint-mobile: 0px;
  --cronopia-breakpoint-tablet: 768px;
  --cronopia-breakpoint-laptop: 1024px;
  --cronopia-breakpoint-desktop: 1280px;
  --cronopia-breakpoint-widescreen: 1536px;
  --cronopia-container-mobile: 100%;
  --cronopia-container-tablet: 720px;
  --cronopia-container-laptop: 960px;
  --cronopia-container-desktop: 1200px;
  --cronopia-container-widescreen: 1440px;
  --cronopia-container-padding-mobile: 1rem;
  --cronopia-container-padding-tablet: 1.5rem;
  --cronopia-container-padding-laptop: 2rem;
  --cronopia-container-padding-desktop: 2rem;
  --cronopia-container-padding-widescreen: 2rem;
  --cronopia-container-current: var(--cronopia-container-mobile);
  --cronopia-container-padding-current: var(--cronopia-container-padding-mobile);
}
@media (min-width: 768px) {
  :root {
    --cronopia-container-current: var(--cronopia-container-tablet);
    --cronopia-container-padding-current: var(--cronopia-container-padding-tablet);
  }
}

@media (min-width: 1024px) {
  :root {
    --cronopia-container-current: var(--cronopia-container-laptop);
    --cronopia-container-padding-current: var(--cronopia-container-padding-laptop);
  }
}

@media (min-width: 1280px) {
  :root {
    --cronopia-container-current: var(--cronopia-container-desktop);
    --cronopia-container-padding-current: var(--cronopia-container-padding-desktop);
  }
}

@media (min-width: 1536px) {
  :root {
    --cronopia-container-current: var(--cronopia-container-widescreen);
    --cronopia-container-padding-current: var(--cronopia-container-padding-widescreen);
  }
}

body .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
.editor-styles-wrapper .is-layout-constrained > :where(:not(.alignleft):not(.alignright):not(.alignfull)),
body .is-layout-constrained > .alignwide,
.editor-styles-wrapper .is-layout-constrained > .alignwide {
  box-sizing: border-box;
  max-width: min(100%, var(--cronopia-container-current));
  padding-left: var(--cronopia-container-padding-current);
  padding-right: var(--cronopia-container-padding-current);
}

:root {
  --cronopia-font-weight-normal: 400;
  --cronopia-font-weight-semibold: 600;
  --cronopia-font-weight-bold: 700;
  --cronopia-line-height-normal: 1.5;
  --cronopia-line-height-tight: 1.25;
  --cronopia-letter-spacing-normal: 0;
  --cronopia-letter-spacing-wide: 0.025em;
  --cronopia-text-transform-normal-case: none;
  --cronopia-text-transform-uppercase: uppercase;
}
.has-base-font-size {
  font-family: var(--wp--preset--font-family--system);
  font-weight: var(--cronopia-font-weight-normal);
  line-height: var(--cronopia-line-height-normal);
  letter-spacing: var(--cronopia-letter-spacing-normal);
  text-transform: var(--cronopia-text-transform-normal-case);
}

.has-lg-font-size {
  font-family: var(--wp--preset--font-family--system);
  font-weight: var(--cronopia-font-weight-semibold);
  line-height: var(--cronopia-line-height-tight);
  letter-spacing: var(--cronopia-letter-spacing-normal);
  text-transform: var(--cronopia-text-transform-normal-case);
}

@charset "UTF-8";
html,
body {
  background: var(--wp--preset--color--background);
  color: var(--wp--preset--color--foreground);
  font-family: "Onest", system-ui, sans-serif;
  margin: 0;
  overflow-x: hidden;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.cronopia-page--canvas > .wp-block-group.alignfull {
  margin: 0;
}

.recimad-hero {
  --recimad-orange: #fe4c00;
  --recimad-black: #0f0f10;
  --recimad-grey: #202020;
  background: var(--recimad-black);
  color: #ffffff;
  font-family: "Onest", system-ui, sans-serif;
  min-height: max(853px, 100vh);
  overflow: hidden;
  position: relative;
  width: 100%;
}

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

.recimad-hero__video,
.recimad-hero__shade {
  inset: 0;
  position: absolute;
}

.recimad-hero__video {
  height: 100%;
  object-fit: cover;
  width: 100%;
  z-index: 0;
}

.recimad-hero__shade {
  background: linear-gradient(90deg, rgba(15, 15, 16, 0.68) 0%, rgba(15, 15, 16, 0.18) 53%, rgba(15, 15, 16, 0.78) 100%), linear-gradient(180deg, rgba(15, 15, 16, 0.16) 0%, rgba(15, 15, 16, 0.3) 53%, rgba(15, 15, 16, 0.82) 100%);
  z-index: 1;
}

.recimad-hero__header {
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 3;
}

.recimad-hero__nav {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 13px;
  display: flex;
  gap: 60px;
  justify-content: space-between;
  min-height: 98px;
  padding: 12px 15px;
  position: relative;
  width: max-content;
}

.recimad-hero__brand {
  align-items: center;
  color: #ffffff;
  display: inline-flex;
  flex-shrink: 0;
  text-decoration: none;
}

.recimad-hero__brand img {
  display: block;
  flex-shrink: 0;
  height: 74px;
  width: 203px;
}

.recimad-hero__desktop-actions {
  align-items: center;
  display: flex;
  gap: 12px;
}

.recimad-hero__desktop-actions a {
  background: var(--recimad-grey);
  border-radius: 14px;
  color: #ffffff;
  display: inline-flex;
  font-size: 20px;
  font-weight: 500;
  line-height: 18px;
  padding: 17px 23px;
  text-decoration: none;
  white-space: nowrap;
}

.recimad-hero__menu {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 13px;
  display: none;
  flex-direction: column;
  height: 39px;
  justify-content: center;
  padding: 10px;
  width: 44px;
}

.recimad-hero__menu span {
  background: #ffffff;
  border-radius: 999px;
  display: block;
  height: 2px;
  width: 21px;
}

.recimad-hero__menu span + span {
  margin-top: 5px;
}

.recimad-hero__content {
  align-items: flex-end;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1118px) 331px;
  left: 107px;
  position: absolute;
  right: 107px;
  top: 150px;
  z-index: 2;
}

.recimad-hero__copy {
  padding-top: 227px;
}

.recimad-hero__eyebrow {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 40px;
}

.recimad-hero h1 {
  font-size: 76px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 78px;
  margin: 0;
  max-width: 1118px;
}

.recimad-hero__cta {
  align-items: center;
  background: var(--recimad-orange);
  border-radius: 22px;
  color: #ffffff;
  display: inline-flex;
  gap: 21px;
  height: 66px;
  margin-top: 52px;
  padding: 17px 23px 17px 8px;
  text-decoration: none;
}

.recimad-hero__cta span:last-child {
  font-size: 22px;
  font-weight: 500;
  line-height: 18px;
}

.recimad-hero__cta-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  position: relative;
  width: 48px;
}

.recimad-hero__cta-icon img {
  display: block;
  height: 15px;
  width: 34px;
}

.recimad-hero__metrics-col {
  position: relative;
  width: 331px;
}

.recimad-hero__linkedin {
  display: none;
}

.recimad-hero__metrics {
  display: flex;
  flex-direction: column;
  gap: 40px;
  width: 100%;
}

.recimad-hero__metric {
  align-items: flex-start;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(254, 76, 0, 0.28);
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 36px;
  height: auto;
  justify-content: flex-start;
  overflow: hidden;
  padding: 24px;
}

.recimad-hero__metric::before {
  background: var(--recimad-orange);
  border-radius: 4px;
  box-shadow: 0 0 18px rgba(254, 76, 0, 0.35);
  content: "";
  display: block;
  flex: 0 0 auto;
  height: 14px;
  width: 14px;
}

.recimad-hero__metric:nth-child(2) {
  background: rgba(255, 255, 255, 0.06);
}

.recimad-hero__metric-label {
  color: rgba(255, 255, 255, 0.82);
  color: color(display-p3 1 1 1 / 0.82);
  font-family: "DM Mono", monospace;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin: 0;
  text-transform: uppercase;
}

.recimad-hero__mobile-panel {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  border: 0;
  border-radius: 13px;
  display: none;
  gap: 7px;
  justify-content: space-between;
  padding: 10px;
  position: fixed;
  right: 24px;
  top: 82px;
  width: min(353px, 100vw - 48px);
  z-index: 10;
}

.recimad-hero__mobile-panel a {
  background: var(--recimad-grey);
  border-radius: 10px;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  padding: 10px 15px;
  text-decoration: none;
  white-space: nowrap;
}

.recimad-hero__mobile-panel a:last-child {
  padding-left: 23px;
  padding-right: 23px;
}

.recimad-hero__mobile-panel:not([hidden]) {
  display: flex;
}

.recimad-hero__menu[aria-expanded=true] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.recimad-hero__menu[aria-expanded=true] span:nth-child(2) {
  opacity: 0;
}

.recimad-hero__menu[aria-expanded=true] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.recimad-how {
  --recimad-orange: #fe4c00;
  --recimad-dark: #1b1b1b;
  --recimad-canvas-left: max(0px, calc((100vw - 1728px) / 2));
  background: linear-gradient(357deg, rgba(27, 27, 27, 0) -28.93%, rgba(27, 27, 27, 0.3) -1.87%, rgba(27, 27, 27, 0.6) 17.87%, #1b1b1b 69.64%), #ffffff;
  color: #ffffff;
  font-family: "Onest", system-ui, sans-serif;
  margin-top: -1px;
  min-height: 1766px;
  overflow: hidden;
  position: relative;
}

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

.recimad-how__intro {
  height: 853px;
  padding: 0;
  position: relative;
}

.recimad-how__intro-heading {
  align-items: center;
  display: flex;
  flex-direction: column;
  left: 50%;
  max-width: 1433px;
  position: absolute;
  text-align: center;
  top: 172px;
  transform: translateX(-50%);
  width: 100%;
}

.recimad-how__badge-row {
  align-items: center;
  display: flex;
  gap: 32px;
  justify-content: center;
  margin-bottom: 35px;
}

.recimad-how__brand-small {
  color: var(--recimad-orange);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  margin: 0;
  text-transform: uppercase;
}

.recimad-how__pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  color: var(--recimad-orange);
  display: inline-flex;
  gap: 21px;
  height: 66px;
  padding: 17px 23px 17px 8px;
  text-decoration: none;
}

.recimad-how__pill-icon,
.recimad-how__detail-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border-radius: 11px;
  display: inline-flex;
  height: 48px;
  justify-content: center;
  position: relative;
  width: 48px;
}

.recimad-how__pill-icon img,
.recimad-how__detail-icon img {
  display: block;
  height: 15px;
  width: 34px;
}

.recimad-how__pill > span:last-child {
  font-size: 22px;
  font-weight: 500;
  line-height: 18px;
}

.recimad-how h2 {
  font-size: 76px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.2;
  margin: 0;
  max-width: 1433px;
}

.recimad-how__intro-heading > p:last-child {
  font-size: 50px;
  font-weight: 600;
  line-height: 1.2;
  margin: 54px 0 0;
  max-width: 1300px;
}

.recimad-how__intro-bottom {
  display: contents;
}

.recimad-how__buyback {
  align-items: center;
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  display: flex;
  gap: 23px;
  left: calc(var(--recimad-canvas-left) + 648px);
  max-width: 1029px;
  padding: 17px 23px 17px 17px;
  position: absolute;
  top: 741px;
  width: 100%;
}

.recimad-how__buyback-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  background: color(display-p3 1 1 1 / 0.12);
  border-radius: 11px;
  display: flex;
  flex: 0 0 184px;
  height: 184px;
  justify-content: center;
  overflow: hidden;
  width: 184px;
}

.recimad-how__buyback-icon img {
  display: block;
  height: 102px;
  width: 108px;
}

.recimad-how__buyback strong {
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 21px;
  font-weight: 500;
  line-height: 18.85px;
  margin-bottom: 21px;
  text-transform: uppercase;
}

.recimad-how__buyback p {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
  max-width: 801px;
}

.recimad-how__walkthrough {
  height: 820px;
  padding: 0;
  position: relative;
  width: 100%;
}

.recimad-how__summary {
  font-size: 20px;
  font-weight: 400;
  left: calc(var(--recimad-canvas-left) + 104px);
  line-height: 1.2;
  margin: 0;
  position: absolute;
  top: 741px;
  width: 368px;
  z-index: 1;
}

.recimad-how__summary--mobile {
  display: none;
}

.recimad-how__steps {
  left: calc(var(--recimad-canvas-left) + 104px);
  position: absolute;
  top: 349px;
  width: 508px;
}

.recimad-how__steps > p {
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  margin: 0 0 48px;
  text-transform: uppercase;
}

.recimad-how__step-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.recimad-how__step {
  background: transparent;
  border: 0;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-family: inherit;
  font-size: 60px;
  font-weight: 600;
  gap: 14px;
  line-height: 1;
  opacity: 0.3;
  padding: 0;
  text-align: left;
  transition: opacity 160ms ease, transform 160ms ease;
  width: 100%;
}

.recimad-how__step:hover,
.recimad-how__step:focus-visible,
.recimad-how__step.is-active {
  opacity: 1;
  transform: translateX(6px);
}

.recimad-how__step strong {
  font: inherit;
}

.recimad-how__visual {
  background: #181818;
  border-radius: 22px;
  height: 669px;
  left: calc(var(--recimad-canvas-left) + 648px);
  overflow: hidden;
  position: relative;
  top: 172px;
  width: 1029px;
}

.recimad-how__video,
.recimad-how__gif {
  display: block;
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.recimad-how__video[hidden],
.recimad-how__gif[hidden] {
  display: none;
}

.recimad-how__arrow {
  display: block;
  height: auto;
  position: absolute;
  right: 30px;
  top: 42px;
  width: 95px;
  z-index: 2;
}

.recimad-how__detail {
  align-items: flex-start;
  backdrop-filter: blur(13px);
  background: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 100%), rgba(0, 0, 0, 0.12);
  background: linear-gradient(0deg, color(display-p3 0 0 0 / 0) 0%, color(display-p3 0 0 0 / 0) 100%), color(display-p3 0 0 0 / 0.12);
  border-radius: 22px;
  bottom: 40px;
  display: flex;
  flex-shrink: 0;
  flex-direction: column;
  gap: 30px;
  margin: 0;
  padding: 40px;
  position: absolute;
  right: 55px;
  width: 439px;
  z-index: 2;
}

.recimad-how__detail p {
  font-size: 25px;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
}

.recimad-how__carousel-controls {
  display: none;
}

.recimad-efficiency {
  --recimad-orange: #fe4c00;
  --recimad-canvas-left: max(0px, calc((100vw - 1728px) / 2));
  background: linear-gradient(90deg, rgba(24, 24, 24, 0.54) 0%, rgba(24, 24, 24, 0.08) 47%, rgba(24, 24, 24, 0.5) 100%), url("/wp-content/themes/recimad/assets/images/Section3.png") center center/cover no-repeat, #2f2d2b;
  box-sizing: border-box;
  color: #ffffff;
  display: block;
  font-family: "Onest", system-ui, sans-serif;
  height: auto;
  min-height: 920px;
  margin: 0;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.recimad-efficiency + .recimad-solutions {
  margin-block-start: 0 !important;
  margin-top: 0 !important;
}

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

.recimad-efficiency__eyebrow {
  color: #ffffff;
  color: color(display-p3 1 1 1);
  font-family: "Onest", system-ui, sans-serif;
  font-size: 28px;
  font-style: normal;
  font-weight: 600;
  left: calc(var(--recimad-canvas-left) + 1166px);
  line-height: 1.2;
  margin: 0;
  position: absolute;
  top: 69px;
  white-space: nowrap;
  width: max-content;
  z-index: 1;
}

.recimad-efficiency__accordion {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  background: color(display-p3 1 1 1 / 0.12);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 22px;
  left: calc(var(--recimad-canvas-left) + 49px);
  overflow: hidden;
  position: absolute;
  top: 141px;
  width: 520px;
  z-index: 1;
}

.recimad-efficiency__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.recimad-efficiency__item:last-child {
  border-bottom: 0;
}

.recimad-efficiency__trigger {
  background: transparent;
  border: 0;
  color: #ffffff;
  color: color(display-p3 1 1 1);
  cursor: pointer;
  display: block;
  font-family: inherit;
  font-size: 29px;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  padding: 21px 24px;
  text-align: left;
  width: 100%;
}

.recimad-efficiency__panel {
  display: none;
  padding: 50px 24px 22px;
}

.recimad-efficiency__item.is-active .recimad-efficiency__panel {
  display: block;
}

.recimad-efficiency__panel p {
  color: #ffffff;
  color: color(display-p3 1 1 1);
  font-family: "Onest", system-ui, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  margin: 0;
  max-width: 470px;
}

.recimad-efficiency__card {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.12);
  background: color(display-p3 1 1 1 / 0.12);
  border-radius: 22px;
  box-shadow: none;
  display: flex;
  height: auto;
  left: calc(var(--recimad-canvas-left) + 976px);
  min-height: 432px;
  overflow: visible;
  padding: 45px 40px 40px;
  position: absolute;
  top: 229px;
  width: 701px;
  z-index: 1;
}

.recimad-efficiency__title-mobile,
.recimad-efficiency__mobile-detail,
.recimad-efficiency__carousel {
  display: none;
}

.recimad-efficiency__card-copy {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 100%;
  z-index: 1;
}

.recimad-efficiency__card-copy strong {
  display: block;
  font-size: 60px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 10px;
}

.recimad-efficiency__card-copy p {
  color: #ffffff;
  color: color(display-p3 1 1 1);
  font-family: "Onest", system-ui, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.18;
  margin: 0;
}

.recimad-efficiency__card-copy [data-recimad-efficiency-card-label] {
  color: #ffffff;
  color: color(display-p3 1 1 1);
  font-family: "Onest", system-ui, sans-serif;
  font-size: 30px;
  font-style: normal;
  font-weight: 500;
  line-height: 50px;
}

.recimad-efficiency__card-copy [data-recimad-efficiency-card-text] {
  font-family: "Onest", system-ui, sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 120%;
  margin-top: 36px;
  max-width: 594px;
  white-space: pre-line;
}

.recimad-efficiency__secondary {
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  margin-top: 18px !important;
  padding-top: 18px;
}

.recimad-efficiency__pins {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  list-style: none;
  margin: 39px 0 0;
  max-width: 100%;
  padding: 0;
  width: 100%;
}

.recimad-efficiency__pins[hidden] {
  display: none;
}

.recimad-efficiency__pins li {
  align-items: flex-start;
  color: #ffffff;
  display: flex;
  flex: 0 1 auto;
  font-family: "DM Mono", monospace;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  max-width: 100%;
  min-width: 0;
  text-transform: uppercase;
  white-space: normal;
}

.recimad-efficiency__pins li::before {
  background: var(--recimad-orange);
  border-radius: 50%;
  content: "";
  display: block;
  flex: 0 0 9px;
  height: 9px;
  margin-right: 12px;
  margin-top: 0.35em;
  width: 9px;
}

.recimad-solutions {
  --recimad-orange: #fe4c00;
  --recimad-solutions-muted: rgba(0, 0, 0, 0.25);
  background: #181818;
  box-sizing: border-box;
  display: grid;
  gap: 32px;
  grid-template-columns: repeat(2, minmax(0, 795px));
  height: auto;
  justify-content: center;
  max-width: 100%;
  min-height: 846px;
  overflow: hidden;
  padding: 62px 53px;
  width: 100%;
}

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

.recimad-solutions__panel,
.recimad-solutions__visual {
  border-radius: 32px;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

.recimad-solutions__panel {
  background: #e7e4df;
  color: #202020;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 722px;
  padding: 55px 36px 38px;
}

.recimad-solutions__eyebrow,
.recimad-solutions__marquee span {
  color: rgba(0, 0, 0, 0.25);
  color: color(display-p3 0 0 0 / 0.25);
  font-family: "DM Mono", monospace;
  font-size: 20px;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  margin: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.recimad-solutions__eyebrow {
  margin-bottom: 131.5px;
  position: relative;
  text-align: center;
  top: auto;
  width: 100%;
}

.recimad-solutions__list {
  --recimad-solutions-visible: 3;
  --recimad-solutions-gap: 34px;
  --recimad-solutions-line: 44px;
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: var(--recimad-solutions-gap);
  margin: 0 0 131.5px;
  overflow: visible;
  position: relative;
  width: 100%;
  z-index: 1;
}

.recimad-solutions__list.is-scrollable {
  -ms-overflow-style: none;
  max-height: calc(var(--recimad-solutions-visible) * var(--recimad-solutions-line) + (var(--recimad-solutions-visible) - 1) * var(--recimad-solutions-gap));
  /* Fade suave solo en el borde inferior para hint de más items (no degrada el 3.º título). */
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.recimad-solutions__list.is-scrollable::-webkit-scrollbar {
  display: none;
  height: 0;
  width: 0;
}

.recimad-solutions__list.is-scrollable.is-at-end {
  -webkit-mask-image: none;
  mask-image: none;
}

.recimad-solutions__list.is-scrollable:not(.is-at-start):not(.is-at-end) {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, transparent 0%, #000 8%, #000 90%, transparent 100%);
}

.recimad-solutions__list.is-scrollable.is-at-start {
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 90%, transparent 100%);
}

.recimad-solutions__trigger {
  background: transparent;
  border: 0;
  color: rgba(32, 32, 32, 0.25);
  cursor: pointer;
  flex: 0 0 auto;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 44px;
  font-style: normal;
  font-weight: 400;
  line-height: var(--recimad-solutions-line, 44px);
  min-height: var(--recimad-solutions-line, 44px);
  padding: 0;
  scroll-snap-align: center;
  text-align: center;
  transition: color 160ms ease, transform 160ms ease;
  width: 100%;
}

.recimad-solutions__trigger:hover,
.recimad-solutions__trigger:focus-visible {
  color: rgba(32, 32, 32, 0.62);
  outline: none;
}

.recimad-solutions__trigger.is-active {
  color: #202020;
  transform: none;
}

.recimad-solutions__marquees {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 0;
  position: relative;
  width: calc(100% + 72px);
}

.recimad-solutions__marquee {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.recimad-solutions__marquee div {
  align-items: center;
  animation: recimadSolutionsMarquee 28s linear infinite;
  display: flex;
  flex: 0 0 max-content;
  gap: 22px;
  min-width: max-content;
  will-change: transform;
}

.recimad-solutions__marquee--bottom div {
  animation-direction: reverse;
  animation-duration: 32s;
}

.recimad-solutions__carousel,
.recimad-solutions__carousel-controls {
  display: none;
}

.recimad-solutions__slide-title,
.recimad-solutions__slide-icon {
  display: none;
}

.recimad-solutions__visual {
  align-items: flex-start;
  align-self: stretch;
  background-color: lightgray;
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  min-height: 722px;
  transition: background-image 180ms ease;
}

.recimad-solutions__copy {
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.1);
  background: color(display-p3 1 1 1 / 0.1);
  border-radius: 24px;
  bottom: 32px;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px;
  position: absolute;
  right: 32px;
  width: 497px;
}

.recimad-solutions__copy strong {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.2;
}

.recimad-solutions__copy p {
  font-size: 17px;
  font-weight: 400;
  line-height: 1.32;
  margin: 0;
}

.recimad-solutions + .recimad-sustainability {
  margin-block-start: -1px !important;
  margin-top: -1px !important;
}

.recimad-sustainability {
  background: #181818;
  box-sizing: border-box;
  color: #ffffff;
  font-family: "Onest", system-ui, sans-serif;
  height: 100vh;
  margin: 0;
  margin-top: -1px;
  min-height: 853px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

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

.recimad-sustainability__grid {
  --recimad-sustainability-gap: 28.28px;
  --recimad-sustainability-rows-duration: 21s;
  --recimad-sustainability-scroll-top-duration: 40s;
  --recimad-sustainability-scroll-middle-duration: 50s;
  --recimad-sustainability-scroll-bottom-duration: 45s;
  --recimad-sustainability-width-short-duration: 18s;
  --recimad-sustainability-width-long-duration: 22s;
  --recimad-sustainability-motion-ease: cubic-bezier(0.5, 0.08, 0.2, 1);
  animation: recimadSustainabilityRows var(--recimad-sustainability-rows-duration) var(--recimad-sustainability-motion-ease) infinite;
  display: grid;
  gap: var(--recimad-sustainability-gap);
  grid-template-rows: 22fr 56fr 22fr;
  inset: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  transform: translate3d(0, 0, 0);
  z-index: 0;
}

.recimad-sustainability__row {
  min-height: 0;
  overflow: hidden;
  position: relative;
}

.recimad-sustainability__track {
  backface-visibility: hidden;
  display: flex;
  gap: var(--recimad-sustainability-gap);
  height: 100%;
  transform: translate3d(0, 0, 0);
  width: max-content;
  will-change: transform;
}

.recimad-sustainability__row--top .recimad-sustainability__track {
  animation: recimadSustainabilityScrollLeft var(--recimad-sustainability-scroll-top-duration) linear infinite;
}

.recimad-sustainability__row--middle .recimad-sustainability__track {
  animation: recimadSustainabilityScrollRight var(--recimad-sustainability-scroll-middle-duration) linear infinite;
}

.recimad-sustainability__row--bottom .recimad-sustainability__track {
  animation: recimadSustainabilityScrollLeft var(--recimad-sustainability-scroll-bottom-duration) linear infinite reverse;
}

.recimad-sustainability__tile {
  backface-visibility: hidden;
  border-radius: 12px;
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.24);
  flex: 0 0 auto;
  height: 100%;
  margin: 0;
  overflow: hidden;
  transform: translate3d(0, 0, 0);
  transform-origin: center;
  will-change: flex-basis;
}

.recimad-sustainability__tile img {
  display: block;
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.recimad-sustainability__row--top .recimad-sustainability__tile {
  flex-basis: 34vw;
}

.recimad-sustainability__row--middle .recimad-sustainability__tile {
  flex-basis: 48vw;
}

.recimad-sustainability__row--middle .recimad-sustainability__tile:nth-child(3),
.recimad-sustainability__row--middle .recimad-sustainability__tile:nth-child(8) {
  flex-basis: 70vw;
}

.recimad-sustainability__row--bottom .recimad-sustainability__tile {
  flex-basis: 38vw;
}

.recimad-sustainability__row--top .recimad-sustainability__tile:nth-child(5n+1),
.recimad-sustainability__row--bottom .recimad-sustainability__tile:nth-child(5n+3) {
  animation: recimadSustainabilityWidthA var(--recimad-sustainability-width-short-duration) var(--recimad-sustainability-motion-ease) infinite;
}

.recimad-sustainability__row--top .recimad-sustainability__tile:nth-child(5n+2),
.recimad-sustainability__row--bottom .recimad-sustainability__tile:nth-child(5n+4) {
  animation: recimadSustainabilityWidthB var(--recimad-sustainability-width-short-duration) var(--recimad-sustainability-motion-ease) infinite;
}

.recimad-sustainability__row--middle .recimad-sustainability__tile:nth-child(5n+1) {
  animation: recimadSustainabilityWidthC var(--recimad-sustainability-width-long-duration) var(--recimad-sustainability-motion-ease) infinite;
}

.recimad-sustainability__row--middle .recimad-sustainability__tile:nth-child(5n+3) {
  animation: recimadSustainabilityWidthFocus var(--recimad-sustainability-width-long-duration) var(--recimad-sustainability-motion-ease) infinite;
}

.recimad-sustainability__row--middle .recimad-sustainability__tile:nth-child(5n+5) {
  animation: recimadSustainabilityWidthD var(--recimad-sustainability-width-long-duration) var(--recimad-sustainability-motion-ease) infinite;
}

.recimad-sustainability__shade {
  background: radial-gradient(circle at center, rgba(24, 24, 24, 0) 0%, rgba(24, 24, 24, 0.12) 52%, rgba(24, 24, 24, 0.58) 100%), linear-gradient(180deg, rgba(24, 24, 24, 0.16) 0%, rgba(24, 24, 24, 0.02) 48%, rgba(24, 24, 24, 0.3) 100%);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 4;
}

.recimad-sustainability__copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  left: 50%;
  position: absolute;
  text-align: center;
  top: 50%;
  transform: translate(-50%, -50%);
  width: min(1118px, 100% - 48px);
  z-index: 5;
}

.recimad-sustainability__pretitle {
  color: #ffffff;
  color: color(display-p3 1 1 1);
  font-family: "Onest", system-ui, sans-serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  margin: 0 0 48px;
  text-align: center;
}

.recimad-sustainability h2 {
  color: #ffffff;
  color: color(display-p3 1 1 1);
  font-family: "Onest", system-ui, sans-serif;
  font-size: 76px;
  font-style: normal;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 78px;
  margin: 0;
  text-align: center;
}

.recimad-sustainability__subtitles {
  align-items: center;
  color: var(--blanco, #ffffff);
  color: var(--blanco, color(display-p3 1 1 1));
  display: flex;
  flex-wrap: wrap;
  font-family: "DM Mono", monospace;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  gap: 0;
  justify-content: center;
  line-height: 18.85px;
  margin: 48px 0 0;
  text-transform: uppercase;
}

.recimad-sustainability__subtitles span {
  align-items: center;
  display: inline-flex;
  white-space: nowrap;
}

.recimad-sustainability__subtitles span + span::before {
  background: currentColor;
  border-radius: 50%;
  content: "";
  display: inline-block;
  flex: 0 0 9px;
  height: 9px;
  margin: 0 12px;
  width: 9px;
}

@keyframes recimadSustainabilityScrollLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - var(--recimad-sustainability-gap) / 2), 0, 0);
  }
}
@keyframes recimadSustainabilityScrollRight {
  from {
    transform: translate3d(calc(-50% - var(--recimad-sustainability-gap) / 2), 0, 0);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
@keyframes recimadSustainabilityRows {
  0%, 100% {
    grid-template-rows: 22fr 56fr 22fr;
  }
  32% {
    grid-template-rows: 18fr 62fr 20fr;
  }
  62% {
    grid-template-rows: 25fr 50fr 25fr;
  }
}
@keyframes recimadSustainabilityWidthA {
  0%, 100% {
    flex-basis: 34vw;
  }
  10% {
    flex-basis: 34vw;
  }
  46% {
    flex-basis: 52vw;
  }
  56% {
    flex-basis: 52vw;
  }
  78% {
    flex-basis: 28vw;
  }
  88% {
    flex-basis: 28vw;
  }
}
@keyframes recimadSustainabilityWidthB {
  0%, 100% {
    flex-basis: 30vw;
  }
  8% {
    flex-basis: 30vw;
  }
  38% {
    flex-basis: 24vw;
  }
  48% {
    flex-basis: 24vw;
  }
  68% {
    flex-basis: 46vw;
  }
  78% {
    flex-basis: 46vw;
  }
}
@keyframes recimadSustainabilityWidthC {
  0%, 100% {
    flex-basis: 44vw;
  }
  10% {
    flex-basis: 44vw;
  }
  42% {
    flex-basis: 62vw;
  }
  52% {
    flex-basis: 62vw;
  }
  72% {
    flex-basis: 36vw;
  }
  82% {
    flex-basis: 36vw;
  }
}
@keyframes recimadSustainabilityWidthD {
  0%, 100% {
    flex-basis: 40vw;
  }
  8% {
    flex-basis: 40vw;
  }
  36% {
    flex-basis: 34vw;
  }
  46% {
    flex-basis: 34vw;
  }
  66% {
    flex-basis: 58vw;
  }
  76% {
    flex-basis: 58vw;
  }
}
@keyframes recimadSustainabilityWidthFocus {
  0%, 100% {
    flex-basis: 70vw;
  }
  10% {
    flex-basis: 70vw;
  }
  42% {
    flex-basis: 82vw;
  }
  52% {
    flex-basis: 82vw;
  }
  72% {
    flex-basis: 58vw;
  }
  82% {
    flex-basis: 58vw;
  }
}
@keyframes recimadSolutionsMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
@media (prefers-reduced-motion: reduce) {
  .recimad-sustainability__grid,
  .recimad-sustainability__track,
  .recimad-sustainability__tile {
    animation: none;
  }
}
@media (min-width: 1200px) {
  .recimad-hero__copy {
    padding-bottom: 64px;
  }
  .recimad-hero__header {
    align-items: center;
    display: flex;
    justify-content: space-between;
    left: 49px;
    right: 107px;
    top: 45px;
  }
  .recimad-hero__linkedin {
    align-items: center;
    background: var(--recimad-orange);
    border-radius: 14px;
    color: #ffffff;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 20px;
    font-weight: 500;
    gap: 15px;
    line-height: 18px;
    padding: 12px 23px;
    text-decoration: none;
    white-space: nowrap;
  }
  .recimad-hero__linkedin img {
    display: block;
    flex-shrink: 0;
    height: 29px;
    width: 29px;
  }
  .recimad-how__visual {
    align-items: stretch;
    column-gap: 0;
    display: grid;
    grid-template-columns: minmax(260px, 1fr) minmax(280px, 439px);
    grid-template-rows: minmax(0, 1fr);
  }
  .recimad-how__video,
  .recimad-how__gif {
    grid-column: 1;
    grid-row: 1;
    height: 100%;
    object-fit: cover;
    width: 100%;
  }
  .recimad-how__arrow {
    z-index: 3;
  }
  .recimad-how__detail {
    align-self: stretch;
    border-radius: 0 22px 22px 0;
    bottom: auto;
    grid-column: 2;
    grid-row: 1;
    justify-content: center;
    justify-self: stretch;
    margin: 0;
    max-height: 100%;
    min-height: 0;
    overflow: visible;
    padding: 40px clamp(32px, 3vw, 55px);
    position: relative;
    right: auto;
    width: 100%;
  }
  .recimad-how__detail p {
    font-size: clamp(20px, 1.2vw, 24px);
  }
}
@media (min-width: 1200px) and (max-width: 1727px) {
  .recimad-how {
    --recimad-how-laptop-gutter: 51px;
    --recimad-how-right-column-left: calc(var(--recimad-canvas-left) + 648px);
  }
  .recimad-how__buyback,
  .recimad-how__visual {
    left: var(--recimad-how-right-column-left);
    width: calc(100% - var(--recimad-how-right-column-left) - var(--recimad-how-laptop-gutter));
    max-width: none;
  }
  .recimad-efficiency {
    --recimad-efficiency-laptop-gutter: 51px;
    --recimad-efficiency-right-column-left: 648px;
    min-height: 940px;
  }
  .recimad-efficiency__eyebrow {
    left: auto;
    right: var(--recimad-efficiency-laptop-gutter);
  }
  .recimad-efficiency__accordion {
    left: var(--recimad-efficiency-laptop-gutter);
  }
  .recimad-efficiency__card {
    left: auto;
    right: var(--recimad-efficiency-laptop-gutter);
    width: min(701px, 100% - var(--recimad-efficiency-right-column-left) - var(--recimad-efficiency-laptop-gutter));
  }
  .recimad-solutions {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-inline: 51px;
  }
}
@media (min-width: 1728px) {
  .recimad-hero__content {
    grid-template-columns: minmax(0, 1fr) 331px;
  }
}
@media (min-width: 1200px) and (max-width: 1439px) {
  .recimad-hero {
    min-height: max(900px, 100vh);
  }
  .recimad-hero__header {
    left: 51px;
    right: 51px;
    top: 32px;
  }
  .recimad-hero__nav {
    gap: 40px;
    min-height: 76px;
    padding: 10px 12px;
  }
  .recimad-hero__brand img {
    height: 74px;
    width: 203px;
  }
  .recimad-hero__desktop-actions {
    gap: 8px;
  }
  .recimad-hero__desktop-actions a {
    font-size: 16px;
    line-height: 18px;
    padding: 12px 16px;
  }
  .recimad-hero__content {
    align-items: center;
    gap: 40px;
    grid-template-columns: minmax(0, 1fr) 280px;
    left: 51px;
    right: 51px;
    top: 118px;
  }
  .recimad-hero__copy {
    padding-bottom: 72px;
    padding-top: 200px;
  }
  .recimad-hero__eyebrow {
    font-size: 24px;
    margin-bottom: 28px;
  }
  .recimad-hero h1 {
    font-size: 64px;
    line-height: 68px;
    max-width: 760px;
  }
  .recimad-hero__metrics-col {
    width: 280px;
  }
  .recimad-hero__metrics {
    gap: 24px;
  }
  .recimad-hero__metric {
    gap: 30px;
    height: auto;
    padding: 22px;
  }
  .recimad-hero__metric::before {
    height: 12px;
    width: 12px;
  }
  .recimad-hero__metric-label {
    font-size: 18px;
    line-height: 22px;
  }
  .recimad-how {
    --recimad-how-right-column-left: 560px;
    min-height: 1580px;
  }
  .recimad-how__intro {
    height: 740px;
  }
  .recimad-how__intro-heading {
    max-width: calc(100% - 102px);
    top: 120px;
  }
  .recimad-how h2 {
    font-size: 58px;
    line-height: 1.12;
    max-width: 1080px;
  }
  .recimad-how__intro-heading > p:last-child {
    font-size: 38px;
    margin-top: 36px;
    max-width: 980px;
  }
  .recimad-how__buyback {
    gap: 23px;
    top: 640px;
  }
  .recimad-how__buyback-icon {
    flex-basis: 144px;
    height: 144px;
    width: 144px;
  }
  .recimad-how__buyback-icon img {
    height: 88px;
    width: 94px;
  }
  .recimad-how__buyback strong {
    font-size: 18px;
    line-height: 18px;
    margin-bottom: 16px;
  }
  .recimad-how__buyback p {
    font-size: 18px;
    line-height: 22px;
    max-width: none;
  }
  .recimad-how__summary {
    left: 150px;
    top: 640px;
    width: 340px;
  }
  .recimad-how__steps {
    left: 150px;
    top: 300px;
    width: 360px;
  }
  .recimad-how__step {
    font-size: 46px;
  }
  .recimad-how__visual {
    height: 560px;
    top: 132px;
  }
  .recimad-how__arrow {
    right: 28px;
    top: 36px;
    width: 76px;
  }
  .recimad-how__detail {
    bottom: auto;
    padding: 32px;
    width: 100%;
  }
  .recimad-how__detail p {
    font-size: 22px;
  }
}
@media (max-width: 1199px) {
  .recimad-hero {
    min-height: max(1024px, 100vh);
  }
  .recimad-hero__shade {
    background: rgba(15, 15, 16, 0.85);
  }
  .recimad-hero__nav {
    backdrop-filter: none;
    background: transparent;
    border-radius: 0;
    gap: 0;
    justify-content: space-between;
    min-height: auto;
    padding: 24px 24px 20px;
    width: 100%;
  }
  .recimad-hero__brand img {
    height: 50px;
    width: 137px;
  }
  .recimad-hero__desktop-actions {
    display: none;
  }
  .recimad-hero__menu {
    display: inline-flex;
  }
  .recimad-hero__mobile-panel {
    display: none;
  }
  .recimad-hero__mobile-panel:not([hidden]) {
    display: flex;
  }
  .recimad-hero__content {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 12px;
    left: 0;
    position: relative;
    right: auto;
    top: 0;
    width: 100%;
    z-index: 2;
  }
  .recimad-hero__copy {
    align-items: center;
    display: flex;
    flex-direction: column;
    padding: 105px 24px 32px;
    text-align: center;
    width: 100%;
  }
  .recimad-hero__eyebrow {
    font-size: 18px;
    line-height: 24px;
    margin: 0 auto 27px;
    max-width: 330px;
  }
  .recimad-hero h1 {
    font-size: 9.5vw;
    line-height: 1.2;
    margin-inline: auto;
    max-width: 340px;
  }
  .recimad-hero__cta {
    border-radius: 16px;
    gap: 16px;
    height: 56px;
    justify-content: center;
    margin-top: 24px;
    max-width: 340px;
    padding: 18px 28px 18px 24px;
    width: 100%;
  }
  .recimad-hero__cta span:last-child {
    font-size: 16px;
    font-weight: 600;
    line-height: 20px;
  }
  .recimad-hero__cta-icon {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    height: 20px;
    width: 32px;
  }
  .recimad-hero__cta-icon img {
    height: 10px;
    width: 23px;
  }
  .recimad-hero__metrics-col {
    width: 100%;
  }
  .recimad-hero__metrics {
    gap: 16px;
    margin-inline: auto;
    max-width: 340px;
    padding: 12px 24px 48px;
    width: 100%;
  }
  .recimad-hero__metric {
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    gap: 24px;
    min-height: 0;
    padding: 18px;
    text-align: center;
    width: 100%;
  }
  .recimad-hero__metric::before {
    height: 10px;
    width: 10px;
  }
  .recimad-hero__metric:nth-child(2) {
    background: rgba(255, 255, 255, 0.1);
  }
  .recimad-hero__metric-label {
    font-size: 17px;
    line-height: 22px;
  }
  .recimad-how {
    background: linear-gradient(353deg, rgba(27, 27, 27, 0) -28.93%, rgba(27, 27, 27, 0.3) -1.87%, rgba(27, 27, 27, 0.6) 17.87%, #1b1b1b 69.64%), #ffffff;
    margin-top: 0;
    min-height: 0;
    overflow: visible;
  }
  .recimad-how__intro {
    background: #1b1b1b;
    display: flex;
    flex-direction: column;
    gap: 32px;
    height: auto;
    min-height: 0;
    padding: 32px 24px 48px;
    position: relative;
  }
  .recimad-how__intro-heading {
    align-items: flex-start;
    left: auto;
    max-width: none;
    position: relative;
    text-align: left;
    top: auto;
    transform: none;
    width: 100%;
  }
  .recimad-how__badge-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 18px;
    justify-content: flex-start;
    margin-bottom: 24px;
  }
  .recimad-how__brand-small {
    display: block;
    font-size: 20px;
    line-height: 1;
  }
  .recimad-how__pill {
    border-radius: 22px;
    gap: 14px;
    height: 44px;
    padding: 8px 16px 8px 8px;
  }
  .recimad-how__pill-icon {
    border-radius: 7px;
    height: 28px;
    width: 28px;
  }
  .recimad-how__pill-icon img {
    height: 10px;
    width: 23px;
  }
  .recimad-how__pill > span:last-child {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
  }
  .recimad-how h2 {
    font-size: 28px;
    font-weight: 700;
    line-height: 36px;
  }
  .recimad-how__intro-heading > p:last-child {
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
    margin-top: 16px;
  }
  .recimad-how__intro-bottom {
    display: contents;
    margin-top: 0;
  }
  .recimad-how__buyback {
    align-items: flex-start;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    flex-direction: column;
    gap: 16px;
    left: auto;
    margin: 0;
    max-width: none;
    order: 2;
    padding: 24px;
    position: relative;
    top: auto;
    width: 100%;
  }
  .recimad-how__buyback-icon {
    display: flex;
    width: 130px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    align-self: stretch;
    aspect-ratio: 1/1;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.12);
    background: color(display-p3 1 1 1 / 0.12);
  }
  .recimad-how__buyback-icon img {
    width: 108.297px;
    height: 102.002px;
  }
  .recimad-how__buyback strong {
    font-family: "Onest", system-ui, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 8px;
  }
  .recimad-how__buyback p {
    color: rgba(255, 255, 255, 0.75);
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
  }
  .recimad-how__walkthrough {
    background: linear-gradient(353deg, rgba(27, 27, 27, 0) -28.93%, rgba(27, 27, 27, 0.3) -1.87%, rgba(27, 27, 27, 0.6) 17.87%, #1b1b1b 69.64%), #ffffff;
    display: flex;
    flex-direction: column;
    gap: 28px;
    height: auto;
    min-height: 0;
    padding: 48px 16px;
  }
  .recimad-how__summary {
    font-size: 18px;
    font-weight: 500;
    left: auto;
    line-height: 26px;
    margin: 0;
    padding: 0;
    position: relative;
    top: auto;
    width: 100%;
  }
  .recimad-how__summary--desktop {
    display: none;
  }
  .recimad-how__summary--mobile {
    display: block;
    margin-bottom: 70px;
    text-align: center;
  }
  .recimad-how__steps {
    align-self: stretch;
    left: auto;
    margin-inline: auto;
    max-width: 390px;
    position: relative;
    text-align: center;
    top: auto;
    width: 100%;
  }
  .recimad-how__steps > p {
    font-size: 15px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 24px;
  }
  .recimad-how__step-list {
    min-height: 26px;
  }
  .recimad-how__step {
    display: none;
    font-size: 24px;
    gap: 12px;
    opacity: 1;
    white-space: nowrap;
  }
  .recimad-how__step:nth-child(3) {
    opacity: 1;
  }
  .recimad-how__step:hover,
  .recimad-how__step:focus-visible {
    opacity: 1;
    transform: none;
  }
  .recimad-how__step:nth-child(3):hover,
  .recimad-how__step:nth-child(3):focus-visible {
    opacity: 1;
  }
  .recimad-how__step.is-active,
  .recimad-how__step.is-active:hover,
  .recimad-how__step.is-active:focus-visible {
    display: flex;
    justify-content: center;
    opacity: 1;
  }
  .recimad-how__visual {
    align-items: flex-start;
    background: #181818;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 70vh;
    justify-content: space-between;
    left: auto;
    margin-inline: auto;
    max-width: 390px;
    padding: 16px;
    position: relative;
    top: auto;
    touch-action: pan-y;
    width: 100%;
  }
  .recimad-how__video,
  .recimad-how__gif {
    height: 100%;
    inset: 0;
    object-fit: cover;
    position: absolute;
    width: 100%;
  }
  .recimad-how__arrow {
    display: none;
  }
  .recimad-how__detail {
    align-self: auto;
    border-radius: 22px;
    bottom: 16px;
    gap: 9px;
    justify-content: flex-start;
    left: 16px;
    max-height: none;
    max-width: none;
    padding: 20px;
    right: 16px;
    width: auto;
  }
  .recimad-how__carousel-controls {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-inline: auto;
    max-width: 390px;
    width: 100%;
  }
  .recimad-how__carousel-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    height: 42px;
    justify-content: center;
    padding: 0;
    width: 42px;
  }
  .recimad-how__carousel-button img {
    display: block;
    height: auto;
    width: 22px;
  }
  .recimad-how__carousel-button--prev img {
    transform: rotate(180deg);
  }
  .recimad-how__carousel-dots {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
  }
  .recimad-how__carousel-dot {
    background: rgba(255, 255, 255, 0.32);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 7px;
    padding: 0;
    transition: background 160ms ease, width 160ms ease;
    width: 7px;
  }
  .recimad-how__carousel-dot.is-active {
    background: var(--recimad-orange);
    width: 22px;
  }
  .recimad-how__detail-icon {
    border-radius: 5px;
    height: 31px;
    width: 31px;
  }
  .recimad-how__detail-icon img {
    height: 10px;
    width: 23px;
  }
  .recimad-how__detail p {
    font-size: 17px;
    line-height: 1.35;
  }
  .recimad-efficiency {
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.12) 0%, rgba(27, 27, 27, 0.62) 100%), url("/wp-content/themes/recimad/assets/images/Section3.png") center center/cover no-repeat, #1b1b1b;
    height: auto;
    min-height: 0;
    overflow: visible;
    padding: 60px 16px;
  }
  .recimad-efficiency__eyebrow {
    color: #ffffff;
    font-size: 28px;
    font-weight: 600;
    left: auto;
    line-height: 1.33;
    margin: 0 0 20px;
    position: relative;
    top: auto;
    width: 343px;
  }
  .recimad-efficiency__accordion {
    display: none;
  }
  .recimad-efficiency__trigger {
    font-size: 18px;
    line-height: 1.25;
    min-height: 52px;
    padding: 16px 20px;
  }
  .recimad-efficiency__title-desktop {
    display: none;
  }
  .recimad-efficiency__title-mobile {
    display: inline;
  }
  .recimad-efficiency__panel {
    padding: 0 20px 18px;
  }
  .recimad-efficiency__panel p {
    display: block;
    font-size: 17px;
    line-height: 1.45;
    max-width: 100%;
    overflow: visible;
  }
  .recimad-efficiency__mobile-detail {
    display: none;
  }
  .recimad-efficiency__mobile-detail h3 {
    font-size: 26px;
    font-weight: 600;
    line-height: 1.22;
    margin: 0 0 16px;
  }
  .recimad-efficiency__mobile-detail p {
    display: block;
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    margin: 0;
    max-width: 100%;
    overflow: visible;
  }
  .recimad-efficiency__card {
    display: none;
  }
  .recimad-efficiency__carousel {
    display: flex;
    gap: 16px;
    margin: 0 -16px;
    overflow-x: auto;
    padding: 0 16px 8px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .recimad-efficiency__carousel::-webkit-scrollbar {
    display: none;
  }
  .recimad-efficiency__slide {
    background: linear-gradient(180deg, rgba(27, 27, 27, 0.06) 0%, rgba(27, 27, 27, 0.22) 100%), url("/wp-content/themes/recimad/assets/images/Section3.png") center center/cover no-repeat;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 22px;
    display: block;
    flex: 0 0 343px;
    height: 480px;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
  }
  .recimad-efficiency__slide-panel {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.12);
    background: color(display-p3 1 1 1 / 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 14px;
    bottom: 12px;
    left: 12px;
    padding: 18px 16px 16px;
    position: absolute;
    right: 12px;
  }
  .recimad-efficiency__slide-panel strong {
    display: block;
    font-size: 44px;
    font-weight: 600;
    line-height: 1;
    margin-bottom: 8px;
  }
  .recimad-efficiency__slide-label {
    font-size: 19px;
    font-weight: 500;
    line-height: 1.2;
    margin: 0;
  }
  .recimad-efficiency__slide-text {
    font-size: 17px;
    font-weight: 400;
    line-height: 1.45;
    margin: 16px 0 0;
  }
  .recimad-efficiency__slide .recimad-efficiency__pins {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin: 16px 0 0;
  }
  .recimad-efficiency__slide .recimad-efficiency__pins li {
    font-size: 15px;
    letter-spacing: 0;
    line-height: 1.35;
    white-space: normal;
  }
  .recimad-efficiency__slide .recimad-efficiency__pins li::before {
    flex-basis: 8px;
    height: 8px;
    margin-right: 10px;
    width: 8px;
  }
  .recimad-efficiency__slide .recimad-efficiency__secondary {
    font-size: 17px;
    line-height: 1.4;
    margin-top: 14px !important;
    padding-top: 14px;
  }
  .recimad-solutions {
    background: #181818;
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: auto;
    min-height: 0;
    padding: 72px 0 56px;
  }
  .recimad-solutions__panel {
    background: transparent;
    border-radius: 0;
    display: contents;
    justify-content: flex-start;
    min-height: 0;
    overflow: visible;
    padding: 0;
  }
  .recimad-solutions__visual {
    display: none;
  }
  .recimad-solutions__eyebrow,
  .recimad-solutions__marquee span {
    font-size: 13px;
  }
  .recimad-solutions__eyebrow {
    color: rgba(255, 255, 255, 0.36);
    margin-bottom: 0;
    order: 0;
    padding: 0 16px;
    position: relative;
    text-align: center;
    top: auto;
  }
  .recimad-solutions__list {
    display: none;
  }
  .recimad-solutions__list.is-scrollable {
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .recimad-solutions__trigger {
    align-items: center;
    background: rgba(32, 32, 32, 0.08);
    border: 1px solid rgba(32, 32, 32, 0.12);
    border-radius: 999px;
    color: rgba(32, 32, 32, 0.48);
    display: inline-flex;
    font-size: 14px;
    justify-content: center;
    line-height: 1;
    max-width: none;
    min-height: 42px;
    padding: 13px 16px;
    scroll-snap-align: start;
    white-space: nowrap;
    width: auto;
  }
  .recimad-solutions__trigger.is-active {
    background: var(--recimad-orange);
    border-color: var(--recimad-orange);
    color: #ffffff;
  }
  .recimad-solutions__marquees {
    display: flex;
    gap: 10px;
    margin: 40px 0 0;
    order: 3;
    position: relative;
    width: 100%;
  }
  .recimad-solutions__marquee div {
    gap: 18px;
  }
  .recimad-solutions__marquee span {
    color: rgba(255, 255, 255, 0.32);
  }
  .recimad-solutions__carousel {
    display: flex;
    gap: 12px;
    margin: 0;
    order: 1;
    overflow-x: auto;
    padding: 0 calc((100vw - min(390px, 100vw - 32px)) / 2) 6px;
    scroll-padding-inline: 16px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .recimad-solutions__carousel::-webkit-scrollbar {
    display: none;
  }
  .recimad-solutions__slide {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 24px;
    display: block;
    flex: 0 0 min(390px, 100vw - 32px);
    height: 620px;
    opacity: 0.58;
    overflow: hidden;
    position: relative;
    scroll-snap-align: center;
    transform: scale(0.96);
    transition: opacity 180ms ease, transform 180ms ease;
  }
  .recimad-solutions__slide.is-active {
    opacity: 1;
    transform: scale(1);
  }
  .recimad-solutions__slide-title {
    color: #ffffff;
    display: block;
    font-family: "Onest", system-ui, sans-serif;
    font-size: 28px;
    font-weight: 600;
    left: 22px;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0;
    position: absolute;
    right: 22px;
    text-align: center;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.34);
    top: 64px;
    z-index: 1;
  }
  .recimad-solutions__copy--slide {
    backdrop-filter: blur(16px);
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    bottom: 18px;
    gap: 16px;
    left: 18px;
    padding: 20px;
    right: 18px;
    width: auto;
  }
  .recimad-solutions__copy--slide strong {
    display: none;
  }
  .recimad-solutions__slide-icon {
    align-items: center;
    display: inline-flex;
    height: 24px;
    justify-content: flex-start;
    width: 32px;
  }
  .recimad-solutions__slide-icon img {
    display: block;
    height: auto;
    opacity: 0.94;
    width: 26px;
  }
  .recimad-solutions__copy--slide p {
    color: rgba(255, 255, 255, 0.94);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.2;
    margin: 0;
  }
  .recimad-solutions__carousel-controls {
    align-items: center;
    display: flex;
    gap: 16px;
    justify-content: center;
    margin: -4px auto 0;
    max-width: 390px;
    order: 2;
    width: 100%;
  }
  .recimad-solutions__carousel-button {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 999px;
    cursor: pointer;
    display: none;
    height: 42px;
    justify-content: center;
    padding: 0;
    width: 42px;
  }
  .recimad-solutions__carousel-button img {
    display: block;
    height: auto;
    width: 22px;
  }
  .recimad-solutions__carousel-button--prev img {
    transform: rotate(180deg);
  }
  .recimad-solutions__carousel-dots {
    align-items: center;
    display: inline-flex;
    gap: 8px;
    justify-content: center;
  }
  .recimad-solutions__carousel-dot {
    background: rgba(255, 255, 255, 0.32);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    height: 7px;
    padding: 0;
    transition: background 160ms ease, width 160ms ease;
    width: 7px;
  }
  .recimad-solutions__carousel-dot.is-active {
    background: var(--recimad-orange);
    width: 22px;
  }
  .recimad-sustainability {
    height: 100vh;
    min-height: 844px;
  }
  .recimad-sustainability__grid {
    --recimad-sustainability-gap: 28.28px;
    --recimad-sustainability-rows-duration: 17s;
    --recimad-sustainability-scroll-top-duration: 32s;
    --recimad-sustainability-scroll-middle-duration: 40s;
    --recimad-sustainability-scroll-bottom-duration: 36s;
    --recimad-sustainability-width-short-duration: 15s;
    --recimad-sustainability-width-long-duration: 18s;
    --recimad-sustainability-motion-ease: cubic-bezier(0.52, 0.1, 0.22, 1);
    grid-template-rows: 17fr 55fr 28fr;
  }
  .recimad-sustainability__tile {
    border-radius: 10px;
  }
  .recimad-sustainability__row--top .recimad-sustainability__tile {
    flex-basis: 70vw;
  }
  .recimad-sustainability__row--middle .recimad-sustainability__tile,
  .recimad-sustainability__row--middle .recimad-sustainability__tile:nth-child(3),
  .recimad-sustainability__row--middle .recimad-sustainability__tile:nth-child(8) {
    flex-basis: 92vw;
  }
  .recimad-sustainability__row--bottom .recimad-sustainability__tile {
    flex-basis: 76vw;
  }
  .recimad-sustainability__copy {
    width: min(343px, 100% - 32px);
  }
  .recimad-sustainability__pretitle {
    font-size: 17px;
    line-height: 1.35;
    margin-bottom: 28px;
    max-width: 300px;
  }
  .recimad-sustainability h2 {
    font-size: 42px;
    line-height: 44px;
    max-width: 343px;
  }
  .recimad-sustainability__subtitles {
    font-size: 15px;
    gap: 9px 0;
    line-height: 1.35;
    margin-top: 28px;
    max-width: 318px;
  }
  .recimad-sustainability__subtitles span + span::before {
    flex-basis: 5px;
    height: 5px;
    margin: 0 8px;
    width: 5px;
  }
  @keyframes recimadSustainabilityRows {
    0%, 100% {
      grid-template-rows: 17fr 55fr 28fr;
    }
    32% {
      grid-template-rows: 14fr 60fr 26fr;
    }
    62% {
      grid-template-rows: 21fr 50fr 29fr;
    }
  }
  @keyframes recimadSustainabilityWidthA {
    0%, 100% {
      flex-basis: 70vw;
    }
    10% {
      flex-basis: 70vw;
    }
    46% {
      flex-basis: 96vw;
    }
    56% {
      flex-basis: 96vw;
    }
    78% {
      flex-basis: 58vw;
    }
    88% {
      flex-basis: 58vw;
    }
  }
  @keyframes recimadSustainabilityWidthB {
    0%, 100% {
      flex-basis: 64vw;
    }
    8% {
      flex-basis: 64vw;
    }
    38% {
      flex-basis: 54vw;
    }
    48% {
      flex-basis: 54vw;
    }
    68% {
      flex-basis: 88vw;
    }
    78% {
      flex-basis: 88vw;
    }
  }
  @keyframes recimadSustainabilityWidthC {
    0%, 100% {
      flex-basis: 82vw;
    }
    10% {
      flex-basis: 82vw;
    }
    42% {
      flex-basis: 108vw;
    }
    52% {
      flex-basis: 108vw;
    }
    72% {
      flex-basis: 72vw;
    }
    82% {
      flex-basis: 72vw;
    }
  }
  @keyframes recimadSustainabilityWidthD {
    0%, 100% {
      flex-basis: 78vw;
    }
    8% {
      flex-basis: 78vw;
    }
    36% {
      flex-basis: 68vw;
    }
    46% {
      flex-basis: 68vw;
    }
    66% {
      flex-basis: 104vw;
    }
    76% {
      flex-basis: 104vw;
    }
  }
  @keyframes recimadSustainabilityWidthFocus {
    0%, 100% {
      flex-basis: 92vw;
    }
    10% {
      flex-basis: 92vw;
    }
    42% {
      flex-basis: 118vw;
    }
    52% {
      flex-basis: 118vw;
    }
    72% {
      flex-basis: 76vw;
    }
    82% {
      flex-basis: 76vw;
    }
  }
}
.recimad-footer {
  --recimad-orange: #fe4c00;
  /* Fondo único para CTA + formulario + barra (Figma 2426:2444). */
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.78) 0%, rgba(10, 10, 10, 0.42) 26%, rgba(10, 10, 10, 0.62) 58%, rgba(10, 10, 10, 0.9) 100%), var(--recimad-footer-bg-image) center top/cover no-repeat, #0a0a0a;
  background-attachment: scroll;
  color: #ffffff;
  font-family: "Onest", system-ui, sans-serif;
  isolation: isolate;
  margin: 0;
  margin-top: -1px;
  overflow: hidden;
  position: relative;
  width: 100%;
}

.recimad-sustainability + .recimad-footer {
  margin-block-start: -1px !important;
  margin-top: -1px !important;
}

.recimad-footer__shade {
  background: radial-gradient(ellipse at 28% 8%, rgba(254, 76, 0, 0.14) 0%, rgba(10, 10, 10, 0) 40%);
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 0;
}

.recimad-footer__cta,
.recimad-footer__contact,
.recimad-footer__bar {
  position: relative;
  z-index: 1;
}

.recimad-footer__cta {
  background: transparent;
  box-sizing: border-box;
  overflow: visible;
  padding: 278px 40px 0;
  width: 100%;
}

.recimad-footer__cta-inner {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 1600px;
  position: relative;
  text-align: center;
  width: 100%;
}

.recimad-footer__brand-row {
  align-items: center;
  display: flex;
  flex-wrap: nowrap;
  gap: 32px;
  justify-content: center;
  margin: 0 auto 128px;
  max-width: 464px;
  width: 100%;
}

.recimad-footer__logo {
  display: inline-flex;
  flex-shrink: 0;
  line-height: 0;
  text-decoration: none;
}

.recimad-footer__logo img {
  display: block;
  height: 21.4px;
  width: 124px;
}

.recimad-footer__pill {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  background: color(display-p3 1 1 1 / 0.12);
  border: 0;
  border-radius: 22px;
  color: var(--recimad-orange);
  display: flex;
  flex-shrink: 0;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 22px;
  font-weight: 500;
  gap: 31px;
  height: 66px;
  line-height: 18px;
  padding: 17px 23px 17px 8px;
  text-decoration: none;
  white-space: nowrap;
}

.recimad-footer__pill-icon {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  background: color(display-p3 1 1 1 / 0.12);
  border-radius: 11px;
  display: inline-flex;
  flex-shrink: 0;
  height: 48px;
  justify-content: center;
  width: 48px;
}

.recimad-footer__pill-icon img {
  display: block;
  height: 15px;
  width: 34px;
}

.recimad-footer__top {
  align-items: center;
  background: transparent;
  border: 0;
  display: inline-flex;
  height: 40px;
  justify-content: center;
  position: absolute;
  right: 8px;
  top: 8px;
  width: 40px;
}

.recimad-footer__top span {
  border-right: 2px solid var(--recimad-orange);
  border-top: 2px solid var(--recimad-orange);
  display: block;
  height: 12px;
  transform: rotate(-45deg);
  width: 12px;
}

.recimad-footer__cta h2 {
  color: #ffffff;
  color: color(display-p3 1 1 1);
  font-family: "Onest", system-ui, sans-serif;
  font-size: 240px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 85%;
  margin: 0 0 69px;
  max-width: none;
  text-align: center;
  width: 100%;
}

.recimad-footer__card {
  align-items: center;
  backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.12);
  background: color(display-p3 1 1 1 / 0.12);
  border: 0;
  border-radius: 22px;
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  gap: 47px;
  justify-content: center;
  margin: 0 auto;
  max-width: 100%;
  min-height: 190px;
  padding: 17px 37px 17px 17px;
  text-align: left;
  width: min(1220px, 100% - 40px);
}

.recimad-footer__card-icon-wrap {
  align-self: center;
  background: rgba(255, 255, 255, 0.12);
  background: color(display-p3 1 1 1 / 0.12);
  border-radius: 11px;
  box-sizing: border-box;
  flex: 0 0 auto;
  flex-shrink: 0;
  overflow: hidden;
  width: min(350px, 100%);
}

.recimad-footer__card-icon {
  border-radius: 11px;
  display: block;
  height: auto;
  object-fit: cover;
  width: 100%;
}

.recimad-footer__card-copy {
  align-items: flex-start;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 21px;
  justify-content: center;
  min-width: 0;
  padding: 6px 0;
}

.recimad-footer__card-copy strong {
  color: var(--blanco, #ffffff);
  color: var(--blanco, color(display-p3 1 1 1));
  display: block;
  font-family: "DM Mono", monospace;
  font-size: 21px;
  font-style: normal;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 18.85px;
  margin: 0;
  text-transform: uppercase;
}

.recimad-footer__card-copy p {
  color: var(--blanco, #ffffff);
  color: var(--blanco, color(display-p3 1 1 1));
  font-family: "Onest", system-ui, sans-serif;
  font-size: 22px;
  font-style: normal;
  font-weight: 500;
  line-height: 26px;
  margin: 0;
  max-width: 801px;
}

.recimad-footer__card-cta {
  align-items: center;
  background: #ffffff;
  border-radius: 22px;
  color: #202020;
  display: inline-flex;
  flex: 0 0 auto;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
  gap: 12px;
  line-height: 1;
  margin-left: auto;
  padding: 18px 24px;
  text-decoration: none;
  white-space: nowrap;
}

.recimad-footer__card-cta-arrow {
  display: block;
  flex: 0 0 auto;
  height: 19px;
  width: 23px;
}

.recimad-footer__contact {
  align-items: start;
  background: transparent;
  box-sizing: border-box;
  display: grid;
  gap: 64px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  margin: 0 auto;
  max-width: 1440px;
  padding: 128px 80px 0;
  width: 100%;
}

.recimad-footer__contact-copy {
  max-width: 520px;
  padding-top: 12px;
}

.recimad-footer__contact-copy h2 {
  color: #ffffff;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 52px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.1;
  margin: 0 0 28px;
}

.recimad-footer__contact-copy p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
  max-width: 460px;
}

.recimad-footer__bar {
  align-items: center;
  background: transparent;
  border-top: 0;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 128px 53px 56px;
  text-align: center;
  width: 100%;
}

.recimad-footer__form-slot {
  box-sizing: border-box;
  max-width: 770px;
  width: 100%;
}

.recimad-footer__form-slot .elementor,
.recimad-footer__form-slot .elementor-element,
.recimad-footer__form-slot .e-con,
.recimad-footer__form-slot .e-con-inner {
  background: transparent !important;
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100% !important;
}

.recimad-footer__form-slot .elementor-widget-form {
  width: 100%;
}

.recimad-footer__form-slot .elementor-form {
  width: 100%;
}

.recimad-footer__form-slot .elementor-form-fields-wrapper {
  align-items: flex-start;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 40px 46px;
  margin: 0;
  padding: 0;
  width: 100%;
}

.recimad-footer__form-slot .elementor-field-group {
  align-items: flex-start;
  border-bottom: 1px solid #ff3300;
  border-bottom: 1px solid color(display-p3 0.996 0.298 0);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  float: none !important;
  gap: 7px;
  margin: 0 !important;
  max-width: none !important;
  padding: 0 !important;
  width: 100%;
}

.recimad-footer__form-slot .elementor-field-group.elementor-col-50 {
  width: calc((100% - 46px) / 2);
}

.recimad-footer__form-slot .elementor-field-group.elementor-col-100 {
  width: 100%;
}

.recimad-footer__form-slot .elementor-field-group-message {
  min-height: 145px;
}

.recimad-footer__form-slot .elementor-field-type-submit {
  border-bottom: 0;
  margin-top: 0;
  width: 100%;
}

.recimad-footer__form-slot .elementor-field-label {
  color: #ffffff;
  color: color(display-p3 1 1 1);
  font-family: "DM Mono", monospace;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  margin: 0;
  padding: 0;
  text-transform: uppercase;
}

.recimad-footer__form-slot .elementor-field-textual,
.recimad-footer__form-slot .elementor-field {
  background: transparent !important;
  border: 0 !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  color: rgba(255, 255, 255, 0.5);
  color: color(display-p3 1 1 1 / 0.5);
  font-family: "Onest", system-ui, sans-serif;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  height: auto;
  line-height: normal;
  margin: 0;
  min-height: 0;
  outline: none;
  padding: 0 !important;
  width: 100%;
}

.recimad-footer__form-slot .elementor-field-textual:focus,
.recimad-footer__form-slot .elementor-field:focus {
  border: 0 !important;
  box-shadow: none !important;
  color: #ffffff;
  outline: none;
}

.recimad-footer__form-slot .elementor-field-textual::placeholder,
.recimad-footer__form-slot .elementor-field::placeholder {
  color: rgba(255, 255, 255, 0.5);
  color: color(display-p3 1 1 1 / 0.5);
  opacity: 1;
}

.recimad-footer__form-slot .elementor-field-textual:-webkit-autofill,
.recimad-footer__form-slot .elementor-field-textual:-webkit-autofill:hover,
.recimad-footer__form-slot .elementor-field-textual:-webkit-autofill:focus,
.recimad-footer__form-slot .elementor-field-textual:-webkit-autofill:active,
.recimad-footer__form-slot .elementor-field:-webkit-autofill,
.recimad-footer__form-slot .elementor-field:-webkit-autofill:hover,
.recimad-footer__form-slot .elementor-field:-webkit-autofill:focus,
.recimad-footer__form-slot .elementor-field:-webkit-autofill:active {
  -webkit-text-fill-color: rgba(255, 255, 255, 0.5) !important;
  background-color: transparent !important;
  box-shadow: 0 0 0 1000px transparent inset !important;
  caret-color: #ffffff;
  transition: background-color 99999s ease-out 0s;
}

.recimad-footer__form-slot .elementor-field-textual:-webkit-autofill:focus,
.recimad-footer__form-slot .elementor-field:-webkit-autofill:focus {
  -webkit-text-fill-color: #ffffff !important;
}

.recimad-footer__form-slot textarea.elementor-field {
  height: 117px;
  min-height: 117px;
  resize: vertical;
}

.recimad-footer__form-slot .elementor-button {
  align-items: center;
  background: #ffffff !important;
  border: 0 !important;
  border-radius: 22px !important;
  color: #202020 !important;
  display: inline-flex;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 17px;
  font-weight: 500;
  justify-content: center;
  line-height: 1;
  min-height: 56px;
  padding: 18px 28px !important;
  width: auto;
}

.recimad-footer__form-slot .elementor-button:hover,
.recimad-footer__form-slot .elementor-button:focus {
  background: #f2f2f2 !important;
  color: #202020 !important;
}

.recimad-footer__form-slot .elementor-message,
.recimad-footer__form-slot .elementor-form-help-inline {
  color: #ffffff;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 14px;
}

.recimad-footer__tagline {
  align-items: center;
  color: #ffffff;
  color: color(display-p3 1 1 1);
  display: inline-flex;
  font-family: "DM Mono", monospace;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  gap: 10px;
  letter-spacing: 1px;
  line-height: normal;
  margin: 0;
  text-transform: uppercase;
}

.recimad-footer__mark {
  align-items: center;
  display: inline-flex;
  flex: 0 0 11.668px;
  height: 8.508px;
  justify-content: center;
  width: 11.668px;
}

.recimad-footer__mark svg {
  display: block;
  height: 8.508px;
  width: 11.668px;
}

.recimad-footer__social {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  margin: 0;
  width: 100%;
}

.recimad-footer__social-link {
  align-items: center;
  background: #212120;
  border-radius: 14px;
  color: var(--recimad-orange);
  display: inline-flex;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 20px;
  font-weight: 500;
  gap: 20px;
  line-height: 18px;
  padding: 12px 23px;
  text-decoration: none;
  white-space: nowrap;
}

.recimad-footer__social-link img {
  display: block;
  flex-shrink: 0;
  height: 29px;
  width: 29px;
}

.recimad-footer__meta {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}

.recimad-footer__meta li {
  align-items: center;
  color: #ffffff;
  color: color(display-p3 1 1 1);
  display: inline-flex;
  font-family: "DM Mono", monospace;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  gap: 12px;
  line-height: normal;
}

.recimad-footer__meta-label {
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  background: color(display-p3 1 1 1 / 0.12);
  border-radius: 6px;
  color: #ffffff;
  color: color(display-p3 1 1 1);
  display: inline-flex;
  font-family: "DM Mono", monospace;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  gap: 10px;
  justify-content: center;
  line-height: normal;
  padding: 6px;
  text-transform: uppercase;
}

.recimad-footer__meta a {
  color: inherit;
  text-decoration: none;
}

.recimad-footer__phones {
  align-items: center;
  background: none !important;
  border-radius: 0 !important;
  color: inherit;
  display: inline-flex;
  flex-wrap: wrap;
  font-weight: 400;
  gap: 0;
  padding: 0 !important;
  text-transform: none;
}

.recimad-footer__phones a + a::before {
  color: rgba(255, 255, 255, 0.45);
  content: "·";
  display: inline-block;
  margin: 0 10px;
}

@media (max-width: 1600px) {
  .recimad-footer__cta h2 {
    font-size: clamp(96px, 15vw, 240px);
  }
}
@media (max-width: 1199px) {
  .recimad-footer__cta {
    padding: 96px 32px 0;
  }
  .recimad-footer__brand-row {
    margin: 0 auto 64px;
    max-width: 464px;
  }
  .recimad-footer__cta h2 {
    font-size: clamp(72px, 12vw, 160px);
    margin-bottom: 36px;
  }
  .recimad-footer__card {
    flex-wrap: wrap;
    gap: 24px;
    justify-content: flex-start;
    min-height: 0;
    padding: 17px 23px 17px 17px;
    width: min(1220px, 100%);
  }
  .recimad-footer__card-icon-wrap {
    width: min(320px, 100%);
  }
  .recimad-footer__card-copy strong {
    font-size: 18px;
    line-height: 16px;
  }
  .recimad-footer__card-copy p {
    font-size: 18px;
    line-height: 24px;
  }
  .recimad-footer__card-cta {
    justify-content: center;
    margin-left: auto;
  }
  .recimad-footer__contact {
    gap: 40px;
    grid-template-columns: 1fr;
    padding: 80px 32px 0;
  }
  .recimad-footer__contact-copy h2 {
    font-size: 40px;
  }
  .recimad-footer__bar {
    padding: 80px 32px 48px;
  }
}
@media (max-width: 767px) {
  .recimad-efficiency {
    background: #1b1b1b;
    background: color(display-p3 0.1059 0.1059 0.1059);
    min-height: 0;
    overflow: visible;
    padding-inline: 24px;
  }
  .recimad-efficiency__eyebrow {
    color: #ffffff;
    color: color(display-p3 1 1 1);
    font-family: "Onest", system-ui, sans-serif;
    font-size: 28px;
    font-style: normal;
    font-weight: 600;
    line-height: 34px;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    width: 100%;
  }
  .recimad-efficiency__accordion,
  .recimad-efficiency__mobile-detail {
    max-width: 100%;
    width: 100%;
  }
  .recimad-efficiency__mobile-detail {
    margin-inline: 0;
    padding-inline: 0;
  }
  .recimad-efficiency__carousel {
    margin-inline: -24px;
    padding-inline: 24px;
  }
  .recimad-efficiency__slide {
    flex: 0 0 min(343px, 100vw - 48px);
  }
  .recimad-solutions {
    padding-inline: 0;
  }
  .recimad-solutions__panel {
    min-height: 0;
    padding-inline: 0;
  }
  .recimad-solutions__eyebrow {
    margin-bottom: 0;
    padding-inline: 24px;
  }
  .recimad-solutions__list {
    display: none;
  }
  .recimad-solutions__list.is-scrollable {
    scroll-padding-inline: 24px;
  }
  .recimad-solutions__marquees {
    display: flex;
  }
  .recimad-solutions__carousel {
    margin-inline: 0;
    padding-inline: calc((100vw - min(343px, 100vw - 32px)) / 2);
    scroll-padding-inline: 16px;
  }
  .recimad-solutions__slide {
    flex-basis: min(343px, 100vw - 32px);
    height: 600px;
  }
  .recimad-solutions__copy--slide {
    bottom: 17px;
    left: 17px;
    padding: 18px;
    right: 17px;
  }
  .recimad-footer__cta {
    padding: 96px 24px 24px;
  }
  .recimad-footer__cta-inner {
    align-items: center;
    width: 100%;
  }
  .recimad-footer__brand-row {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin: 0 auto 40px;
    max-width: 464px;
    width: 100%;
  }
  .recimad-footer__logo img {
    height: 18px;
    width: 104px;
  }
  .recimad-footer__pill {
    font-size: 16px;
    gap: 16px;
    height: auto;
    line-height: 1;
    min-height: 48px;
    padding: 10px 16px 10px 8px;
  }
  .recimad-footer__pill-icon {
    height: 36px;
    width: 36px;
  }
  .recimad-footer__pill-icon img {
    height: 13px;
    width: 28px;
  }
  .recimad-footer__top {
    right: 0;
    top: 0;
  }
  .recimad-footer__cta h2 {
    font-size: 17vw;
    line-height: 0.95;
    margin-bottom: 44px;
    max-width: 100%;
    overflow-wrap: anywhere;
    white-space: normal;
    width: 100%;
  }
  .recimad-footer__card {
    align-items: center;
    flex-direction: column;
    gap: 20px;
    justify-content: center;
    max-width: 100%;
    min-width: 0;
    overflow: hidden;
    padding: 16px;
    text-align: center;
    width: 100%;
  }
  .recimad-footer__card-copy {
    align-items: center;
    gap: 12px;
    padding: 0;
    text-align: center;
    width: 100%;
  }
  .recimad-footer__card-icon-wrap {
    align-self: center;
    margin-inline: auto;
    width: min(300px, 100%);
  }
  .recimad-footer__card-copy strong {
    font-size: 18px;
    line-height: 1.25;
  }
  .recimad-footer__card-copy p {
    font-size: 17px;
    line-height: 1.45;
    max-width: 100%;
  }
  .recimad-footer__card-cta {
    align-self: stretch;
    border-radius: 22px !important;
    box-sizing: border-box;
    display: flex;
    flex: 0 0 auto;
    font-size: 17px;
    gap: 12px;
    justify-content: center;
    margin-inline: 0;
    max-width: 100%;
    min-width: 0;
    padding: 18px 24px;
    white-space: normal;
    width: 100%;
  }
  .recimad-footer__card-cta span {
    flex: 1 1 auto;
    line-height: 1.25;
    min-width: 0;
    text-align: center;
  }
  .recimad-footer__card-cta-arrow {
    flex-shrink: 0;
    height: 19px;
    width: 23px;
  }
  .recimad-footer__contact {
    gap: 52px;
    justify-items: center;
    padding: 72px 24px 0;
    width: 100%;
  }
  .recimad-footer__contact-copy {
    max-width: 100%;
    padding-top: 0;
    text-align: center;
    width: 100%;
  }
  .recimad-footer__contact-copy h2 {
    font-size: 13vw;
    line-height: 1.15;
    margin-bottom: 28px;
  }
  .recimad-footer__contact-copy p {
    font-size: 18px;
    line-height: 1.45;
    margin-inline: auto;
    max-width: 100%;
  }
  .recimad-footer__form-slot {
    align-self: stretch;
    justify-self: stretch;
    max-width: 100%;
    text-align: center;
    width: 100%;
  }
  .recimad-footer__form-slot .elementor-form-fields-wrapper {
    align-items: center;
    gap: 36px;
  }
  .recimad-footer__form-slot .elementor-field-group {
    align-items: center;
    padding-bottom: 8px !important;
  }
  .recimad-footer__form-slot .elementor-field-group.elementor-col-50 {
    width: 100%;
  }
  .recimad-footer__form-slot .elementor-field-label {
    font-size: 15px;
    line-height: 20px;
    text-align: center;
    width: 100%;
  }
  .recimad-footer__form-slot .elementor-field-textual,
  .recimad-footer__form-slot .elementor-field {
    font-size: 17px;
    line-height: 24px;
    text-align: center;
  }
  .recimad-footer__form-slot textarea.elementor-field {
    height: 96px;
    min-height: 96px;
  }
  .recimad-footer__form-slot .elementor-field-type-submit {
    display: flex;
    justify-content: center;
  }
  .recimad-footer__form-slot .elementor-button {
    margin-inline: auto;
  }
  .recimad-footer__form-slot .elementor-message,
  .recimad-footer__form-slot .elementor-form-help-inline {
    text-align: center;
    width: 100%;
  }
  .recimad-footer__bar {
    align-items: center;
    gap: 22px;
    padding: 56px 24px 48px;
    text-align: center;
    width: 100%;
  }
  .recimad-footer__tagline {
    font-size: 13px;
    justify-content: center;
    margin-inline: auto;
    max-width: 100%;
    text-align: center;
    width: 100%;
  }
  .recimad-footer__social {
    align-items: stretch;
    flex-direction: column;
    gap: 12px;
  }
  .recimad-footer__social-link {
    box-sizing: border-box;
    font-size: 17px;
    gap: 16px;
    justify-content: center;
    white-space: normal;
    width: 100%;
  }
  .recimad-footer__social-link span {
    text-align: center;
  }
  .recimad-footer__meta {
    align-items: center;
    flex-direction: column;
    gap: 14px;
    justify-content: center;
    width: 100%;
  }
  .recimad-footer__meta li {
    align-items: center;
    flex-direction: column;
    flex-wrap: wrap;
    font-size: 15px;
    gap: 8px;
    justify-content: center;
    text-align: center;
    width: 100%;
  }
  .recimad-footer__phones {
    justify-content: center;
    text-align: center;
  }
}
@media (max-width: 390px) {
  .recimad-hero {
    min-height: max(994px, 100vh);
  }
  .recimad-hero__copy {
    padding-top: 103px;
  }
}
.recimad-thanks {
  --recimad-orange: #fe4c00;
  align-items: center;
  background: radial-gradient(ellipse at 30% 10%, rgba(254, 76, 0, 0.18) 0%, rgba(24, 24, 24, 0) 42%), #181818;
  box-sizing: border-box;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  font-family: "Onest", system-ui, sans-serif;
  gap: 64px;
  justify-content: center;
  min-height: 100vh;
  padding: 72px 32px;
  text-align: center;
  width: 100%;
}

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

.recimad-thanks__logo {
  display: inline-flex;
  line-height: 0;
  text-decoration: none;
}

.recimad-thanks__logo img {
  display: block;
  height: 58px;
  width: auto;
}

.recimad-thanks__copy {
  align-items: center;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 760px;
  width: 100%;
}

.recimad-thanks__eyebrow {
  color: rgba(255, 255, 255, 0.7);
  font-family: "DM Mono", monospace;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  margin: 0 0 24px;
  text-transform: uppercase;
}

.recimad-thanks h1 {
  color: #ffffff;
  font-family: "Onest", system-ui, sans-serif;
  font-size: 64px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.05;
  margin: 0 0 24px;
}

.recimad-thanks__text {
  color: rgba(255, 255, 255, 0.88);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.45;
  margin: 0;
  max-width: 560px;
}

.recimad-thanks .recimad-hero__cta {
  border-radius: 22px;
  gap: 21px;
  height: 66px;
  margin-top: 40px;
  padding: 17px 23px 17px 8px;
  width: auto;
}

@media (max-width: 1199px) {
  .recimad-thanks {
    gap: 48px;
    padding: 56px 24px;
  }
  .recimad-thanks h1 {
    font-size: clamp(40px, 7vw, 56px);
    line-height: 1.08;
  }
  .recimad-thanks__text {
    font-size: 18px;
    max-width: 520px;
  }
  .recimad-thanks .recimad-hero__cta {
    border-radius: 22px;
    gap: 21px;
    height: 66px;
    margin-top: 36px;
    padding: 17px 23px 17px 8px;
    width: auto;
  }
  .recimad-thanks .recimad-hero__cta span:last-child {
    font-size: 22px;
    font-weight: 500;
    line-height: 18px;
  }
  .recimad-thanks .recimad-hero__cta-icon {
    border-radius: 11px;
    height: 48px;
    width: 48px;
  }
  .recimad-thanks .recimad-hero__cta-icon img {
    height: 15px;
    width: 34px;
  }
}
@media (max-width: 767px) {
  .recimad-thanks {
    gap: 36px;
    min-height: 100svh;
    padding: 40px 16px;
  }
  .recimad-thanks__logo img {
    height: 46px;
  }
  .recimad-thanks__eyebrow {
    font-size: 14px;
    margin-bottom: 16px;
  }
  .recimad-thanks h1 {
    font-size: 40px;
    margin-bottom: 16px;
  }
  .recimad-thanks__text {
    font-size: 18px;
    line-height: 1.45;
  }
  .recimad-thanks .recimad-hero__cta {
    border-radius: 22px;
    gap: 14px;
    height: 56px;
    margin-top: 28px;
    padding: 8px 18px 8px 8px;
    width: auto;
  }
  .recimad-thanks .recimad-hero__cta span:last-child {
    font-size: 16px;
    font-weight: 600;
    line-height: 18px;
  }
  .recimad-thanks .recimad-hero__cta-icon {
    border-radius: 8px;
    height: 40px;
    width: 40px;
  }
  .recimad-thanks .recimad-hero__cta-icon img {
    height: 12px;
    width: 28px;
  }
}