.makePills{
  margin-top: 28px;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 22px);
  align-items: stretch;
}

.makePill--info{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 14px;
  border-radius: 999px;

  background: rgba(118,193,74,.10);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow: 0 14px 34px rgba(0,0,0,.18);

  color: var(--on-dark);
}


.makePill--info .makePill__img{
  width: 56px;
  height: 56px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 auto;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.16);
}

.makePill--info .makePill__img img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.makePill__meta{
  display: grid;
  gap: 4px;
  min-width: 0;
}

.makePill--info .makePill__label{
  font-weight: 850;
  font-size: 1.02rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--on-dark);
}

.makePill--info .makePill__desc{
  font-size: .9rem;
  line-height: 1.3;
  color: var(--on-dark-muted);

  white-space: normal;       
  overflow: visible;        
  text-overflow: clip;      
  max-width: none;
}

/* =========================================================
   TABLET
========================================================= */

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

@media (max-width: 760px) {
  .makePills {
    grid-template-columns: 1fr;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }

  .makePill--info {
    min-height: 84px;
  }

  .makePill--info .makePill__desc {
    max-width: 52ch;
  }
}


/* =========================================================
   MOBILE HORIZONTAL SCROLL
========================================================= */

@media (max-width: 600px) {
  .makePills {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(280px, 84vw);
    grid-template-columns: none;

    max-width: none;
    gap: 12px;

    margin-top: 24px;
    margin-left: 0;
    margin-right: 0;

    padding: 2px 18px 16px 2px;

    overflow-x: auto;
    overflow-y: hidden;

    scroll-snap-type: x mandatory;
    scroll-padding-inline: 2px;

    overscroll-behavior-inline: contain;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .makePills::-webkit-scrollbar {
    display: none;
  }

  .makePills:focus-visible {
    outline: 3px solid rgba(118, 193, 74, 0.42);
    outline-offset: 5px;
    border-radius: 18px;
  }

  .makePill--info {

    align-items: center;
    gap: 14px;

    padding: 17px;
    border-radius: 24px;

    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  .makePill--info .makePill__img {
    width: 66px;
    height: 66px;
    flex-basis: 66px;
  }

  .makePill--info .makePill__label {
    font-size: 1.04rem;
    line-height: 1.2;
  }

  .makePill--info .makePill__desc {
    max-width: 24ch;
    font-size: 0.9rem;
    line-height: 1.35;
  }
}


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

@media (max-width: 400px) {
  .makePills {
    grid-auto-columns: minmax(265px, 87vw);
    gap: 10px;
  }

  .makePill--info {
    min-height: 112px;
    padding: 15px;
    border-radius: 22px;
  }

  .makePill--info .makePill__img {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .makePill--info .makePill__label {
    font-size: 1rem;
  }

  .makePill--info .makePill__desc {
    font-size: 0.87rem;
  }
}

/* =========================================================
   PRIVATE SOLUTIONS / WATERMARK CARDS
========================================================= */
.privateSolutions__layout{
  align-items: center;
}

.privateSolutions__layout--reverse{
  grid-template-columns: minmax(0, 1.15fr) minmax(340px, .85fr);
}

.privateSolutions__layout--reverse .privateSolutions__cards{
  order: 1;
}

.privateSolutions__layout--reverse .privateSolutions__head{
  order: 2;
}

.privateSolutions__head{
  max-width: 500px;
  align-self: center;
}



.privateSolutions__head .sectionLead{
  max-width: 34ch;
  font-size: 1.02rem;
  line-height: 1.68;
}

.privateSolutions__note{
  margin-top: 22px;
  max-width: 420px;
  padding: 18px 22px;
  color: var(--brand-900);
  font-size: .98rem;
  font-weight: 750;
  line-height: 1.5;
  background: rgba(118,193,74,.10);
  border: 1px solid rgba(118,193,74,.18);
  border-radius: 18px;
}

.privateSolutions__cards{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.plSolutionCard{
  position: relative;
  min-height: 150px;
  padding: 22px 24px 24px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(15,47,31,.10);
  box-shadow: 0 14px 34px rgba(15,47,31,.07);
  transition:
    transform .22s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    background-color .22s ease;
}

.plSolutionCard:hover{
  transform: translateY(-4px);
  background: #fff;
  border-color: rgba(118,193,74,.26);
  box-shadow: 0 22px 48px rgba(15,47,31,.11);
}

.plSolutionCard__accent{
  position: absolute;
  left: 20px;
  right: 20px;
  top: 0;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(118,193,74,.30) 100%);
}

.plSolutionCard__head{
  position: relative;
  z-index: 2;
  display: grid;
  align-items: start;
  margin-bottom: 14px;
}

.plSolutionCard__title{
  margin: 0;
  color: var(--brand-900);
  font-size: clamp(1.02rem, 1.12vw, 1.16rem);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -.02em;
}

.plSolutionCard__text{
  position: relative;
  z-index: 2;
  max-width: 36ch;
  margin: 0;
  color: rgba(15,47,31,.74);
  font-size: .98rem;
  font-weight: 430;
  line-height: 1.56;
}

.plSolutionCard__watermark{
  position: absolute;
  right: 18px;
  bottom: 10px;
  width: 58px;
  height: 58px;
  color: rgba(118,193,74,.10);
  pointer-events: none;
  z-index: 1;
}

.plSolutionCard__watermark svg{
  width: 100%;
  height: 100%;
}

.plSolutionCard__watermark svg *{
  fill: currentColor;
  stroke: none;
}
/* =========================================================
   RESPONSIVE — PRIVATE SOLUTIONS
========================================================= */

@media (max-width: 980px) {
  .privateSolutions__layout--reverse {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .privateSolutions__layout--reverse .privateSolutions__head {
    order: 1;
  }

  .privateSolutions__layout--reverse .privateSolutions__cards {
    order: 2;
  }

  .privateSolutions__head {
    max-width: 720px;
  }

  .privateSolutions__head .sectionLead {
    max-width: 60ch;
  }

  .privateSolutions__note {
    max-width: 580px;
  }

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

  .privateSolutions__cards > li,
  .privateSolutions__cards > li > .reveal {
    min-width: 0;
    height: 100%;
  }

  .plSolutionCard {
    min-height: 170px;
    padding: 20px 20px 22px;
  }
}


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

@media (max-width: 720px) {
  .privateSolutions__layout--reverse {
    gap: 24px;
  }

  .privateSolutions__head {
    max-width: 100%;
  }

  .privateSolutions__head .sectionLead {
    max-width: 100%;
    font-size: 0.98rem;
    line-height: 1.58;
  }

  .privateSolutions__note {
    max-width: 100%;
    margin-top: 16px;
    padding: 15px 17px;

    border-radius: 16px;

    font-size: 0.93rem;
    line-height: 1.45;
  }

  .privateSolutions__cards {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .privateSolutions__cards > li,
  .privateSolutions__cards > li > .reveal {
    width: 100%;
    height: auto;
  }

  .plSolutionCard {
    min-height: 0;
    height: auto;

    padding: 18px 18px 19px;
    border-radius: 18px;
  }

  .plSolutionCard:hover {
    transform: none;
  }

  .plSolutionCard__head {
    margin-bottom: 8px;
  }

  .plSolutionCard__title {
    max-width: calc(100% - 42px);
    font-size: 1.03rem;
    line-height: 1.25;
  }

  .plSolutionCard__text {
    max-width: calc(100% - 34px);
    margin-bottom: 0;
    padding-right: 0;

    font-size: 0.92rem;
    line-height: 1.48;
  }

  .plSolutionCard__watermark {
    right: 14px;
    bottom: 12px;

    width: 38px;
    height: 38px;

    opacity: 0.55;
  }

  .plSolutionCard__watermark svg {
    width: 100%;
    height: 100%;
  }
}


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

@media (max-width: 420px) {
  .privateSolutions__layout--reverse {
    gap: 22px;
  }

  .privateSolutions__note {
    padding: 14px 15px;
    font-size: 0.91rem;
  }

  .privateSolutions__cards {
    gap: 9px;
  }

  .plSolutionCard {
    padding: 17px 16px 18px;
    border-radius: 17px;
  }

  .plSolutionCard__accent {
    left: 16px;
    right: 16px;
  }

  .plSolutionCard__title {
    max-width: calc(100% - 36px);
    font-size: 1rem;
  }

  .plSolutionCard__text {
    max-width: calc(100% - 24px);
    font-size: 0.9rem;
    line-height: 1.46;
  }

  .plSolutionCard__watermark {
    right: 12px;
    bottom: 10px;

    width: 34px;
    height: 34px;
  }
}

/* =========================================================
   WHY MAKE IT AT ORIGIN
========================================================= */

.whyOrigin__grid {
  align-items: stretch;
}

.whyOrigin__grid > .reveal {
  display: flex;
  min-width: 0;
  height: 100%;
}

.whyOrigin__grid .premiumCard {
  width: 100%;
  min-height: auto;
}


/* Escritorio intermedio: 2 columnas */
@media (max-width: 1100px) {
  .whyOrigin__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .whyOrigin__grid .premiumCard--soft {
    min-height: 200px;
  }
}


/* Tablet */
@media (max-width: 760px) {
  .whyOrigin__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .whyOrigin__grid > .reveal {
    height: auto;
  }

  .whyOrigin__grid .premiumCard--soft {
    min-height: 0;
    height: auto;

    display: grid;
    grid-template-columns: 54px minmax(0, 1fr);
    grid-template-areas:
      "icon title"
      "icon text";
    align-items: center;
    column-gap: 16px;
    row-gap: 5px;

    padding: 20px;
    text-align: left;
    border-radius: 20px;
  }

  .whyOrigin__grid .premiumCard--soft:hover {
    transform: none;
  }

  .whyOrigin__grid .premiumCard--soft .premiumCard__icon {
    grid-area: icon;

    width: 54px;
    height: 54px;
    margin: 0;

    align-self: center;
  }

  .whyOrigin__grid .premiumCard--soft .premiumCard__icon svg {
    width: 26px;
    height: 26px;
  }

  .whyOrigin__grid .premiumCard--soft .premiumCard__title {
    grid-area: title;

    align-self: end;
    margin: 0;

    font-size: 1.06rem;
    line-height: 1.22;
  }

  .whyOrigin__grid .premiumCard--soft .premiumCard__text {
    grid-area: text;

    align-self: start;
    max-width: none;
    margin: 0;

    font-size: 0.94rem;
    line-height: 1.48;
  }

  .whyOrigin__grid .premiumCard--soft::after {
    right: -32px;
    bottom: -42px;
    width: 92px;
    height: 92px;
  }
}


/* Móvil pequeño */
@media (max-width: 440px) {
  .whyOrigin__grid {
    gap: 10px;
  }

  .whyOrigin__grid .premiumCard--soft {
    grid-template-columns: 48px minmax(0, 1fr);
    column-gap: 13px;

    padding: 17px 16px;
    border-radius: 18px;
  }

  .whyOrigin__grid .premiumCard--soft .premiumCard__icon {
    width: 48px;
    height: 48px;
  }

  .whyOrigin__grid .premiumCard--soft .premiumCard__icon svg {
    width: 23px;
    height: 23px;
  }

  .whyOrigin__grid .premiumCard--soft .premiumCard__title {
    font-size: 1rem;
  }

  .whyOrigin__grid .premiumCard--soft .premiumCard__text {
    font-size: 0.89rem;
    line-height: 1.45;
  }
}