/* =========================================================
   HUB PAGOS CASE STUDY
   Prefijo único: hpc-
   Max width: 1440px
========================================================= */

:root{
  --hpc-bg:#030814;
  --hpc-bg-2:#050816;
  --hpc-ink:#07162d;
  --hpc-white:#ffffff;
  --hpc-soft:#f5f5f7;
  --hpc-muted:rgba(245,245,247,.68);
  --hpc-muted-dark:rgba(7,22,45,.68);
  --hpc-purple:#8b7cff;
  --hpc-border:rgba(255,255,255,.12);
  --hpc-border-dark:rgba(7,22,45,.10);
  --hpc-shell:min(100% - 48px, 1440px);
}

*{
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body.hpc-page{
  margin:0;
  background:var(--hpc-bg);
  color:var(--hpc-white);
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x:hidden;
}

.hpc-page img{
  max-width:100%;
}

.hpc-shell{
  width:var(--hpc-shell);
  margin:0 auto;
}

.hpc-eyebrow{
  display:block;
  margin-bottom:18px;

  color:var(--hpc-purple);
  font-size:.76rem;
  line-height:1.4;
  font-weight:850;
  letter-spacing:.38em;
  text-transform:uppercase;
}

.hpc-section{
  padding:clamp(88px, 9vw, 150px) 0;
}

.hpc-section--light{
  background:
    radial-gradient(circle at 12% 12%, rgba(139,124,255,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  color:var(--hpc-ink);
}

.hpc-section--dark{
  background:var(--hpc-bg);
  color:var(--hpc-white);
}

.hpc-section-head{
  max-width:1480px;
    text-align: center;
  margin-bottom:clamp(36px, 5vw, 64px);
}

.hpc-section-head--center{
  margin-left:auto;
  margin-right:auto;
  text-align:center;
}

.hpc-section-head h2,
.hpc-statement h2,
.hpc-solution__copy h2,
.hpc-validation h2,
.hpc-outcome-card h2,
.hpc-closing h2{
  margin:0;

  font-size:clamp(3.2rem, 5.8vw, 7rem);
  line-height:.9;
  letter-spacing:-.08em;
  font-weight:850;
  text-wrap:balance;
}

.hpc-section--light .hpc-section-head h2,
.hpc-section--light h2,
.hpc-section--light h3{
  color:var(--hpc-ink);
}

.hpc-section-head p{
  max-width:1480px;
  margin:24px 0 0;
  color:var(--hpc-muted);
  font-size:1.08rem;
  line-height:1.62;
}

.hpc-section--light .hpc-section-head p{
  color:var(--hpc-muted-dark);
}

/* HERO */

.hpc-hero{
  min-height:90svh;
  padding:clamp(7px, 0, 10px) 0 clamp(10px, 1vw, 10px);
  display:flex;
  align-items:center;

  background:
    radial-gradient(circle at 78% 18%, rgba(139,124,255,.20), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(34,211,238,.10), transparent 34%),
    linear-gradient(135deg, #030814 0%, #050816 55%, #080a18 100%);
}

.hpc-hero__grid{
  display:grid;
  grid-template-columns:minmax(0, 1fr) minmax(60px, .72fr);
  gap:clamp(48px, 7vw, 110px);
  align-items:center;
}

.hpc-back-link{
  display:inline-flex;
  align-items:center;

  min-height:44px;
  margin-bottom:38px;
  padding:0 16px;

  border-radius:999px;
  color:rgba(255,255,255,.78);
  text-decoration:none;
  font-size:.9rem;
  font-weight:750;

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

.hpc-hero h1{
  max-width:980px;
  margin:0;

  color:#ffffff;
  font-size:clamp(4.2rem, 8vw, 10rem);
  line-height:.86;
  letter-spacing:-.095em;
  font-weight:850;
}

.hpc-hero__copy p{
  max-width:760px;
  margin:34px 0 0;

  color:rgba(245,245,247,.72);
  font-size:clamp(1.08rem, 1.45vw, 1.34rem);
  line-height:1.68;
  letter-spacing:-.02em;
}

.hpc-hero__tags{
  margin-top:34px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.hpc-hero__tags span{
  min-height:40px;
  padding:0 14px;

  display:inline-flex;
  align-items:center;

  border-radius:999px;
  color:rgba(255,255,255,.78);
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.10);

  font-size:.84rem;
  font-weight:750;
}

.hpc-hero__visual{
  margin:0;
  min-height:440px;
  border-radius:44px;
  overflow:hidden;

  background:
    linear-gradient(145deg, rgba(255,255,255,.11), rgba(255,255,255,.045));

  border:1px solid var(--hpc-border);
  box-shadow:
    0 40px 120px rgba(0,0,0,.36),
    inset 0 1px 0 rgba(255,255,255,.14);
}

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

/* FACTS */

.hpc-facts{
  padding:0 0 36px;
  background:var(--hpc-bg);
}

.hpc-facts__grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:14px;
}

.hpc-facts article{
  padding:22px;
  border-radius:24px;

  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.09);
}

.hpc-facts span{
  display:block;
  margin-bottom:10px;
  color:rgba(255,255,255,.48);
  font-size:.8rem;
  font-weight:750;
}

.hpc-facts strong{
  color:#ffffff;
  font-size:1rem;
  font-weight:850;
}

/* DISCLAIMER */

.hpc-disclaimer{
  padding:32px 0;
  background:var(--hpc-bg);
}

.hpc-disclaimer p{
  margin:0;
  padding:22px 26px;

  border-radius:24px;
  color:rgba(245,245,247,.68);
  line-height:1.55;

  background:rgba(255,255,255,.055);
  border:1px solid rgba(255,255,255,.09);
}

.hpc-disclaimer strong{
  color:#ffffff;
}

/* SNAPSHOT */

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

.hpc-snapshot-card{
  min-height:250px;
  padding:28px;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  border-radius:32px;
  background:#ffffff;
  border:1px solid var(--hpc-border-dark);
  box-shadow:0 24px 70px rgba(7,22,45,.08);
}

.hpc-snapshot-card span{
  display:block;
  margin-bottom:auto;
  color:var(--hpc-purple);
  font-size:.84rem;
  font-weight:850;
}

.hpc-snapshot-card h3{
  margin:0 0 12px;
  color:var(--hpc-ink);
  font-size:1.65rem;
  line-height:1;
  letter-spacing:-.055em;
}

.hpc-snapshot-card p{
  margin:0;
  color:var(--hpc-muted-dark);
  line-height:1.55;
}

/* STATEMENT */

.hpc-statement{
  padding:clamp(90px, 10vw, 160px) 0;
  background:var(--hpc-bg);
  color:#ffffff;
}

.hpc-statement__grid{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(0, 1.1fr);
  gap:clamp(40px, 7vw, 110px);
  align-items:start;
}

.hpc-statement__copy{
  max-width:760px;
}

.hpc-statement__copy p{
  margin:0 0 28px;
  color:rgba(245,245,247,.72);
  font-size:clamp(1.3rem, 2vw, 2rem);
  line-height:1.36;
  letter-spacing:-.04em;
  font-weight:650;
}

/* GOALS */

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

.hpc-goal-card{
  padding:34px;
  border-radius:34px;

  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045));

  border:1px solid rgba(255,255,255,.11);
  box-shadow:
    0 28px 88px rgba(0,0,0,.26),
    inset 0 1px 0 rgba(255,255,255,.14);
}

.hpc-card-label{
  display:block;
  margin-bottom:22px;
  color:var(--hpc-purple);
  font-size:.76rem;
  font-weight:850;
  letter-spacing:.38em;
  text-transform:uppercase;
}

.hpc-goal-card h3{
  max-width:680px;
  margin:0 0 28px;
  color:#ffffff;
  font-size:clamp(2rem, 3vw, 3.6rem);
  line-height:.98;
  letter-spacing:-.07em;
}

.hpc-goal-card ul,
.hpc-solution__copy ul{
  margin:0;
  padding:0;
  list-style:none;

  display:flex;
  flex-direction:column;
  gap:14px;
}

.hpc-goal-card li,
.hpc-solution__copy li{
  position:relative;
  padding-left:24px;
  color:rgba(245,245,247,.70);
  line-height:1.55;
}

.hpc-goal-card li::before,
.hpc-solution__copy li::before{
  content:"";
  position:absolute;
  left:0;
  top:.68em;

  width:7px;
  height:7px;
  border-radius:50%;
  background:var(--hpc-purple);
}

/* IMPACT */

.hpc-impact{
  padding:clamp(88px, 9vw, 150px) 0;

  background:
    radial-gradient(circle at 18% 20%, rgba(139,124,255,.14), transparent 32%),
    linear-gradient(180deg, #030814 0%, #060817 100%);
}

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

.hpc-impact-grid article{
  min-height:250px;
  padding:28px;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  border-radius:32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  border:1px solid rgba(255,255,255,.11);
  box-shadow:0 28px 88px rgba(0,0,0,.26);
}

.hpc-impact-grid strong{
  display:block;
  margin-bottom:22px;

  color:var(--hpc-purple);
  font-size:clamp(1rem, 2vw, 5rem) !important;
  line-height:.86;
  letter-spacing:-.075em;
}

.hpc-impact-grid span{
  display:block;
  margin-bottom:10px;
  color:#ffffff;
  font-size:1.04rem;
  font-weight:850;
}

.hpc-impact-grid p{
  margin:0;
  color:rgba(245,245,247,.62);
  font-size:.95rem;
  line-height:1.52;
}

/* ROADMAP */

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

.hpc-roadmap article{
  padding:30px;
  min-height:240px;

  border-radius:32px;
  background:#ffffff;
  border:1px solid var(--hpc-border-dark);
  box-shadow:0 24px 70px rgba(7,22,45,.08);
}

.hpc-roadmap span{
  display:block;
  margin-bottom:42px;
  color:var(--hpc-purple);
  font-size:.84rem;
  font-weight:850;
}

.hpc-roadmap h3{
  margin:0 0 14px;
  color:var(--hpc-ink);
  font-size:clamp(1.9rem, 2.6vw, 3.2rem);
  line-height:1;
  letter-spacing:-.06em;
}

.hpc-roadmap p{
  margin:0;
  color:var(--hpc-muted-dark);
  line-height:1.55;
}

/* MEDIA */

.hpc-wide-media{
  width:100%;
  height:clamp(420px, 52vw, 760px);
  margin:42px 0 0;

  border-radius:38px;
  overflow:hidden;

  background:#edf0f7;
  border:1px solid rgba(7,22,45,.10);
  box-shadow:0 34px 100px rgba(7,22,45,.10);
}

.hpc-wide-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.hpc-wide-media--contain img{
  object-fit:contain;
  padding:28px;
}

/* PROCESS */

.hpc-process{
  padding:clamp(88px, 9vw, 150px) 0;

  background:
    radial-gradient(circle at 82% 20%, rgba(139,124,255,.14), transparent 32%),
    var(--hpc-bg);
}

.hpc-process-list{
  display:grid;
  grid-template-columns:repeat(5, minmax(0, 1fr));
  gap:14px;
}

.hpc-process-list article{
  min-height:260px;
  padding:26px;

  display:flex;
  flex-direction:column;

  border-radius:30px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  border:1px solid rgba(255,255,255,.11);
}

.hpc-process-list span{
  display:block;
  margin-bottom:auto;
  color:var(--hpc-purple);
  font-size:.84rem;
  font-weight:850;
}

.hpc-process-list h3{
  margin:0 0 12px;
  color:#ffffff;
  font-size:1.7rem;
  line-height:1;
  letter-spacing:-.055em;
}

.hpc-process-list p{
  margin:0;
  color:rgba(245,245,247,.64);
  line-height:1.52;
  font-size:.95rem;
}

/* TWO COL */

.hpc-two-col{
  display:grid;
  grid-template-columns:minmax(0, .78fr) minmax(0, 1.22fr);
  gap:clamp(40px, 7vw, 110px);
  align-items:start;
}

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

.hpc-insights article{
  padding:26px;
  border-radius:28px;
  background:#ffffff;
  border:1px solid var(--hpc-border-dark);
  box-shadow:0 20px 56px rgba(7,22,45,.07);
}

.hpc-insights span{
  display:block;
  margin-bottom:18px;
  color:var(--hpc-purple);
  font-size:.78rem;
  font-weight:850;
  letter-spacing:.18em;
  text-transform:uppercase;
}

.hpc-insights p{
  margin:0;
  color:var(--hpc-ink);
  font-size:1.1rem;
  line-height:1.48;
  letter-spacing:-.03em;
  font-weight:650;
}

/* SOLUTION */

.hpc-solution{
  padding:clamp(88px, 9vw, 150px) 0;

  background:
    radial-gradient(circle at 18% 22%, rgba(139,124,255,.14), transparent 30%),
    var(--hpc-bg);
}

.hpc-solution__grid{
  display:grid;
  grid-template-columns:minmax(0, .9fr) minmax(340px, .7fr);
  gap:clamp(44px, 7vw, 110px);
  align-items:center;
}

.hpc-solution__copy p{
  max-width:720px;
  margin:28px 0 28px;
  color:rgba(245,245,247,.72);
  font-size:1.12rem;
  line-height:1.62;
}

.hpc-phone-media{
  margin:0;
  min-height:680px;

  border-radius:44px;
  overflow:hidden;
  background:rgba(255,255,255,.065);
  border:1px solid rgba(255,255,255,.11);
  box-shadow:0 38px 110px rgba(0,0,0,.34);
}

.hpc-phone-media img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

/* MODULES */

.hpc-modules{
  padding:clamp(40px, 2vw, 150px) 0;
  background:#1d1d1f;
}

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

.hpc-module-grid article{
  overflow:hidden;
  border-radius:34px;

  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045));

  border:1px solid rgba(255,255,255,.11);
  box-shadow:0 28px 88px rgba(0,0,0,.26);
}

.hpc-module-grid figure{
  height:420px;
  margin:0;
  background:#111827;
  overflow:hidden;
}

.hpc-module-grid figure img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
}

.hpc-module-grid article > div{
  padding:28px;
}

.hpc-module-grid span{
  display:block;
  margin-bottom:18px;
  color:var(--hpc-purple);
  font-size:.84rem;
  font-weight:850;
}

.hpc-module-grid h3{
  margin:0 0 12px;
  color:#ffffff;
  font-size:clamp(2rem, 3vw, 3.5rem);
  line-height:1;
  letter-spacing:-.065em;
}

.hpc-module-grid p{
  margin:0;
  color:rgba(245,245,247,.64);
  line-height:1.55;
}

/* COMPARISON */

.hpc-comparison{
  padding:clamp(88px, 9vw, 150px) 0;
  background:var(--hpc-bg);
}

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

.hpc-comparison-grid article{
  min-height:220px;
  padding:28px;

  display:flex;
  flex-direction:column;
  justify-content:flex-end;

  border-radius:32px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  border:1px solid rgba(255,255,255,.11);
}

.hpc-comparison-grid span{
  display:block;
  margin-bottom:12px;
  color:#ffffff;
  font-size:1.3rem;
  font-weight:850;
  letter-spacing:-.04em;
}

.hpc-comparison-grid p{
  margin:0;
  color:rgba(245,245,247,.62);
  line-height:1.52;
}

/* VALIDATION */

.hpc-validation{
  padding:clamp(88px, 9vw, 150px) 0;
  background:#ffffff;
  color:var(--hpc-ink);
}

.hpc-validation-panel{
  padding:34px;

  border-radius:34px;
  background:#f5f5f7;
  border:1px solid var(--hpc-border-dark);
  box-shadow:0 24px 70px rgba(7,22,45,.08);
}

.hpc-validation-panel h3{
  margin:0 0 24px;
  color:var(--hpc-ink);
  font-size:2rem;
  line-height:1;
  letter-spacing:-.055em;
}

.hpc-validation-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.hpc-validation-list span{
  min-height:42px;
  padding:0 14px;

  display:inline-flex;
  align-items:center;

  border-radius:999px;
  color:var(--hpc-ink);
  background:#ffffff;
  border:1px solid rgba(7,22,45,.10);

  font-size:.92rem;
  font-weight:750;
}

/* OUTCOME */

.hpc-outcome{
  padding:clamp(88px, 9vw, 150px) 0;

  background:
    radial-gradient(circle at 50% 0%, rgba(139,124,255,.18), transparent 34%),
    var(--hpc-bg);
}

.hpc-outcome-card{
  padding:clamp(36px, 5vw, 76px);

  border-radius:42px;
  background:
    linear-gradient(145deg, rgba(255,255,255,.105), rgba(255,255,255,.045));
  border:1px solid rgba(255,255,255,.11);
  box-shadow:0 34px 100px rgba(0,0,0,.30);
}

.hpc-outcome-card p{
  max-width:820px;
  margin:28px 0 0;
  color:rgba(245,245,247,.70);
  font-size:clamp(1.08rem, 1.45vw, 1.28rem);
  line-height:1.64;
}

/* CONTRIBUTION */

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

.hpc-contribution-grid article{
  min-height:220px;
  padding:28px;

  border-radius:32px;
  background:#ffffff;
  border:1px solid var(--hpc-border-dark);
  box-shadow:0 24px 70px rgba(7,22,45,.08);
}

.hpc-contribution-grid h3{
  margin:0 0 14px;
  color:var(--hpc-ink);
  font-size:1.65rem;
  line-height:1;
  letter-spacing:1px;
}

.hpc-contribution-grid p{
  margin:0;
  color:var(--hpc-muted-dark);
  line-height:1.55;
}

/* CLOSING */

.hpc-closing{
  padding:clamp(90px, 10vw, 170px) 0;
  text-align:center;

  background:
    #232325;
}

.hpc-closing h2{
  max-width:1180px;
  margin:0 auto;
  color:#ffffff;
}

.hpc-final-link{
  margin-top:42px;
  min-height:58px;
  padding:0 24px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  border-radius:999px;
  color:#ffffff;
  text-decoration:none;
  font-weight:800;

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

/* RESPONSIVE */

@media(max-width:1200px){

  .hpc-hero__grid,
  .hpc-solution__grid,
  .hpc-statement__grid,
  .hpc-two-col{
    grid-template-columns:1fr;
  }

  .hpc-snapshot-grid,
  .hpc-impact-grid,
  .hpc-comparison-grid,
  .hpc-contribution-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr));
  }

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

  .hpc-hero__visual{
    min-height:520px;
  }

  .hpc-phone-media{
    min-height:560px;
  }
}

@media(max-width:900px){

  :root{
    --hpc-shell:calc(100% - 36px);
  }

  .hpc-hero{
    min-height:auto;
    padding:84px 0 72px;
  }

  .hpc-hero h1,
  .hpc-section-head h2,
  .hpc-statement h2,
  .hpc-solution__copy h2,
  .hpc-validation h2,
  .hpc-outcome-card h2,
  .hpc-closing h2{
    font-size:clamp(2.8rem, 11vw, 4.2rem);
    line-height:.92;
    letter-spacing:-.07em;
  }

  .hpc-hero__copy p{
    font-size:1rem;
    line-height:1.6;
  }

  .hpc-facts__grid,
  .hpc-snapshot-grid,
  .hpc-impact-grid,
  .hpc-roadmap,
  .hpc-process-list,
  .hpc-insights,
  .hpc-module-grid,
  .hpc-comparison-grid,
  .hpc-contribution-grid,
  .hpc-goals-grid{
    grid-template-columns:1fr;
  }

  .hpc-section,
  .hpc-impact,
  .hpc-process,
  .hpc-solution,
  .hpc-modules,
  .hpc-comparison,
  .hpc-validation,
  .hpc-outcome,
  .hpc-closing,
  .hpc-statement{
    padding:72px 0;
  }

  .hpc-hero__visual,
  .hpc-phone-media{
    min-height:380px;
    border-radius:30px;
  }

  .hpc-wide-media{
    height:320px;
    border-radius:28px;
  }

  .hpc-module-grid figure{
    height:320px;
  }

  .hpc-snapshot-card,
  .hpc-goal-card,
  .hpc-impact-grid article,
  .hpc-roadmap article,
  .hpc-process-list article,
  .hpc-validation-panel,
  .hpc-outcome-card,
  .hpc-contribution-grid article{
    border-radius:26px;
    padding:24px;
  }

  .hpc-impact-grid article,
  .hpc-snapshot-card{
    min-height:190px;
  }

  .hpc-impact-grid strong{
    font-size:3.5rem;
  }
}

@media(max-width:430px){

  :root{
    --hpc-shell:calc(100% - 28px);
  }

  .hpc-hero h1,
  .hpc-section-head h2,
  .hpc-statement h2,
  .hpc-solution__copy h2,
  .hpc-validation h2,
  .hpc-outcome-card h2,
  .hpc-closing h2{
    font-size:3.25rem;
  }

  .hpc-eyebrow,
  .hpc-card-label{
    font-size:.64rem;
    letter-spacing:.28em;
  }

  .hpc-hero__tags span,
  .hpc-validation-list span{
    width:100%;
    justify-content:center;
  }

  .hpc-wide-media{
    height:260px;
  }

  .hpc-module-grid figure{
    height:260px;
  }
}



/* =========================================================
   HPC TITLES SPACING FIX
   Separa títulos grandes para que no se encimen
========================================================= */

.hpc-hero h1,
.hpc-section-head h2,
.hpc-statement h2,
.hpc-solution__copy h2,
.hpc-validation h2,
.hpc-outcome-card h2,
.hpc-closing h2{
  line-height:1.04 !important;
  letter-spacing:-.05em !important;
  text-wrap:balance !important;
}

.hpc-hero h1{
  max-width:1180px !important;
  font-size:clamp(4rem, 6vw, 8.6rem) !important;
}

.hpc-section-head h2,
.hpc-statement h2,
.hpc-solution__copy h2,
.hpc-validation h2,
.hpc-outcome-card h2,
.hpc-closing h2{
  font-size:clamp(3.1rem, 5.4vw, 6.4rem) !important;
}

/* Más aire entre bloques de texto */
.hpc-section-head{
  margin-bottom:clamp(44px, 5.5vw, 76px) !important;
}

.hpc-hero__copy p,
.hpc-statement__copy p,
.hpc-solution__copy p,
.hpc-outcome-card p{
  line-height:1.65 !important;
}

/* Evita que títulos enormes se salgan o se compacten */
.hpc-hero__copy,
.hpc-section-head,
.hpc-statement,
.hpc-solution__copy,
.hpc-validation,
.hpc-outcome-card,
.hpc-closing{
  overflow-wrap:break-word !important;
  word-break:normal !important;
}




.textop{
   
    font-size: 1.4rem;

font-weight: 600;
  
    color:var(--hpc-purple);
}


.min{
     font-size: .9rem;
    text-transform: none !important;
  font-weight: 500 !important;
    color: gray;
      letter-spacing: .1em !important;

}



/* =========================================================
   HPC GOALS LIGHT VERSION
   Fondo blanco + cards claras + letras oscuras
========================================================= */

.hpc-section--dark:has(.hpc-goals-grid){
  background:
    radial-gradient(circle at 12% 18%, rgba(139,124,255,.08), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%) !important;

  color:#07162d !important;
}

.hpc-section--dark:has(.hpc-goals-grid) .hpc-section-head h2{
  color:#07162d !important;
}

.hpc-section--dark:has(.hpc-goals-grid) .hpc-section-head p{
  color:rgba(7,22,45,.68) !important;
}

.hpc-goal-card{
  background:
    linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%) !important;

  border:1px solid rgba(7,22,45,.10) !important;

  box-shadow:
    0 24px 70px rgba(7,22,45,.08),
    inset 0 1px 0 rgba(255,255,255,.95) !important;

  color:#07162d !important;
}

.hpc-goal-card .hpc-card-label{
  color:#8b7cff !important;
}

.hpc-goal-card h3{
  color:#07162d !important;
}

.hpc-goal-card li{
  color:rgba(7,22,45,.72) !important;
}

.hpc-goal-card li::before{
  background:#8b7cff !important;
}

/* =========================================================
   HPC GLOBAL TITLES MAX 4REM
   Reduce titulares grandes del case study
========================================================= */

.hpc-hero h1,
.hpc-section-head h2,
.hpc-statement h2,
.hpc-solution__copy h2,
.hpc-validation h2,
.hpc-outcome-card h2,
.hpc-closing h2{
  font-size:clamp(2.8rem, 4vw, 4rem) !important;
  line-height:1.04 !important;
  letter-spacing:-.06em !important;
  max-width:1180px !important;
}

/* Titulares dentro de cards */
.hpc-goal-card h3,
.hpc-roadmap h3,
.hpc-module-grid h3,
.hpc-validation-panel h3,
.hpc-contribution-grid h3,
.hpc-snapshot-card h3{
  font-size:clamp(1.7rem, 2.8vw, 3rem) !important;
  line-height:1.08 !important;
  letter-spacing:-.05em !important;
}

/* Números grandes de impacto */
.hpc-impact-grid strong{
  font-size:clamp(2rem, 3.2vw, 4rem) !important;
  line-height:.95 !important;
  letter-spacing:-.06em !important;
}

/* Eyebrows más sobrios */
.hpc-eyebrow,
.hpc-card-label{
  font-size:.72rem !important;
  line-height:1.35 !important;
  letter-spacing:.32em !important;
}

/* =========================================================
   HPC HERO IMAGE CLEAN PNG
   Elimina fondo/card de la imagen principal
========================================================= */

.hpc-hero__visual{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;

  overflow: visible !important;
  min-height: auto !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}

.hpc-hero__visual img{
  width: 100% !important;
  max-width: 760px !important;
  height: auto !important;

  display: block !important;
  object-fit: contain !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}



/* =========================================================
   HPC HERO FULL SCREEN FIX
   Ocupa toda la pantalla y elimina línea blanca inferior
========================================================= */

html,
body.hpc-page{
  margin:0 !important;
  padding:0 !important;
  background:#030814 !important;
  overflow-x:hidden !important;
}

.hpc-hero{
  min-height:100vh !important;
  min-height:100svh !important;

  padding:clamp(56px, 6vw, 2px) 0 !important;

  display:flex !important;
  align-items:center !important;

  background:
    radial-gradient(circle at 78% 18%, rgba(139,124,255,.16), transparent 34%),
    radial-gradient(circle at 12% 82%, rgba(34,211,238,.08), transparent 34%),
    linear-gradient(135deg, #030814 0%, #050816 56%, #080a18 100%) !important;

  overflow:hidden !important;
}

/* Evita que el siguiente bloque pinte blanco pegado al hero */
.hpc-hero + *,
.hpc-facts,
.hpc-disclaimer{
  background:#030814 !important;
}




.height{
    
    margin-top: -50px !important;
    font-size: 1.2em !important; 
    font-weight: 600 !important;
    text-transform: none!important;
     letter-spacing:.02em !important;
}


.min{
    font-size: 1.2em !important;
    letter-spacing:.02em !important;
    margin-bottom: -10px !important;
}


/* =========================================================
   PAYCASE BRIEF SECTION
   Nueva estructura aislada: intro + bloques 2x2 + objetivos + mockup
========================================================= */

.paycase-brief{
  width:100%;
  padding-top: 60px;
  background:
    radial-gradient(circle at 78% 16%, rgba(139,124,255,.10), transparent 34%),
    radial-gradient(circle at 10% 90%, rgba(220,38,38,.045), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f5f5f7 100%);
  color:#07162d;
  overflow:hidden;
}

.paycase-brief,
.paycase-brief *{
  box-sizing:border-box;
}

.paycase-brief__shell{
  width:min(100% - 48px, 1440px);
  margin:0 auto;
}

.paycase-brief__intro{
  max-width:1440px;
  margin-bottom:clamp(4px, 1vw, 72px);
}

.paycase-brief__eyebrow{
  display:block;
  margin-bottom:22px;

  color:#8b7cff;
  font-size:.90rem;
  line-height:1.35;
  letter-spacing:.34em;
  font-weight:850;
  text-transform:uppercase;
}

.paycase-brief__intro h2{
  max-width:1420px;
  margin:0 0 24px;

  color:#07162d;
  font-size:clamp(3rem, 5vw, 4rem);
  line-height:1.02;
  letter-spacing:-.065em;
  font-weight:900;
}

.paycase-brief__intro p{
  max-width:1480px;
  margin:0;

  color:rgba(7,22,45,.56);
  font-size:clamp(1.18rem, 1.5vw, 1.3rem);
  line-height:1.45;
  letter-spacing:-.025em;
  font-weight:450;
}

.paycase-brief__intro p strong{
  color:#8b7cff;
  font-weight:850;
}

/* Layout general */
.paycase-brief__layout{
  display:grid;
  grid-template-columns:minmax(0, .95fr) minmax(390px, .72fr);
  gap:clamp(54px, 7vw, 120px);
  align-items:center;
}

.paycase-brief__left{
  display:grid;
  grid-template-columns:minmax(280px, .75fr) minmax(320px, .9fr);
  gap:32px;
  align-items:start;
}

/* Bloques 2x2 */
.paycase-brief__blocks{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:14px;
}

.paycase-mini-card{
  min-height:216px;
  padding:12px 12px 16px;

  display:flex;
  flex-direction:column;
  justify-content:flex-start;

  border-radius:24px;
  background:#6d5dfc;
  color:#ffffff;

}

.paycase-mini-card span{
  display:block;
  margin-bottom:auto;

  color:rgba(255,255,255,.72);
  font-size:.78rem;
  line-height:1;
  font-weight:850;
  letter-spacing:.12em;
}

.paycase-mini-card h3{
  margin:28px 0px;

  color:#ffffff;
  font-size:1.22rem;
  line-height:1.05;
  letter-spacing:-.04em;
  font-weight:850;
}

.paycase-mini-card p{
  margin:0;

  color:rgba(255,255,255,.78);
  font-size:.92rem;
  line-height:1.35;
  letter-spacing:-.015em;
}

/* Objetivos al lado de los bloques */
.paycase-brief__goals{
  position:relative;
  display:flex;
  flex-direction:column;
  gap:28px;
  padding-left:28px;
}

.paycase-brief__goals::before{
  content:"";
  position:absolute;
  left:0;
  top:4px;
  bottom:4px;
  width:3px;
  border-radius:999px;
  background:linear-gradient(180deg, #0828a8, rgba(8,40,168,.12));
}

.paycase-goal{
  margin:0;
}

.paycase-goal__label{
  display:block;
  margin-bottom:10px;

  color:#0828a8;
  font-size:.82rem;
  line-height:1.2;
  letter-spacing:.18em;
  font-weight:850;
  text-transform:uppercase;
}

.paycase-goal h3{
  max-width:580px;
  margin:0 0 12px;

  color:#07162d;
  font-size:clamp(1.35rem, 1.6vw, 1.9rem);
  line-height:1.08;
  letter-spacing:.03em;
  font-weight:780;
}

.paycase-goal ul{
  margin:0;
  padding:0;
  list-style:none;

  display:flex;
  flex-direction:column;
  gap:7px;
}

.paycase-goal li{
  position:relative;
  padding-left:18px;

  color:rgba(7,22,45,.66);
  font-size:1rem;
  line-height:1.38;
  letter-spacing:-.018em;
}

.paycase-goal li::before{
  content:"";
  position:absolute;
  left:0;
  top:.62em;

  width:6px;
  height:6px;
  border-radius:50%;
  background:#8b7cff;
}

/* Imagen derecha sin fondo */
.paycase-brief__media{
  width:80%;
  margin:0;

  display:flex;
  align-items:center;
  justify-content:center;

  background:transparent;
  border:0;
  box-shadow:none;
  overflow:visible;
}

.paycase-brief__media img{
  width:100%;
  max-width:480px;
  height:auto;

  display:block;
  object-fit:contain;

  background:transparent;
  border:0;
  box-shadow:none;
}


/* =========================================================
   PAYCASE BRIEF RESPONSIVE
========================================================= */

@media(max-width:1180px){

  .paycase-brief__layout{
    grid-template-columns:1fr;
    gap:48px;
  }

  .paycase-brief__media img{
    max-width:640px;
  }
}

@media(max-width:900px){

  .paycase-brief{
    padding:86px 0;
  }

  .paycase-brief__shell{
    width:calc(100% - 36px);
  }

  .paycase-brief__left{
    grid-template-columns:1fr;
    gap:34px;
  }

  .paycase-brief__blocks{
    max-width:620px;
  }

  .paycase-brief__goals{
    max-width:720px;
  }
}

@media(max-width:620px){

  .paycase-brief__shell{
    width:calc(100% - 28px);
  }

  .paycase-brief__intro h2{
    font-size:clamp(2.45rem, 11vw, 3.25rem);
    line-height:1.05;
  }

  .paycase-brief__intro p{
    font-size:1.08rem;
    line-height:1.48;
  }

  .paycase-brief__blocks{
    grid-template-columns:1fr;
  }

  .paycase-mini-card{
    min-height:auto;
    padding:22px;
  }

  .paycase-mini-card span{
    margin-bottom:18px;
  }

  .paycase-mini-card h3{
    margin:0 0 8px;
  }

  .paycase-brief__goals{
    padding-left:22px;
  }

  .paycase-goal h3{
    font-size:1.45rem;
  }

  .paycase-goal li{
    font-size:.98rem;
  }

  .paycase-brief__media img{
    max-width:100%;
  }
}



/* =========================================================
   PAYCASE MINI CARDS WIDER
   Agranda los bloques hacia la derecha
========================================================= */

.paycase-brief__left{
  grid-template-columns: minmax(220px, 1.05fr) minmax(220px, .95fr) !important;
  gap: 46px !important;
  
}

.paycase-brief__blocks{
  grid-template-columns: repeat(2, minmax(180px, 1fr)) !important;
  gap: 18px !important;
  width: 100% !important;
    padding-bottom: 40px;
}

.paycase-mini-card{
  min-height: 150px !important;
  padding: 28px 30px !important;
  border-radius: 0px !important;
}

.paycase-mini-card h3{
  font-size: clamp(1.55rem, 1vw, 2rem) !important;
  line-height: 1.05 !important;
  margin: 34px 0 16px !important;
}

.paycase-mini-card p{
  max-width: 360px !important;
  font-size: 1.12rem !important;
  line-height: 1.34 !important;
}


/* =========================================================
   PAYCASE MAIN LAYOUT MORE WIDTH
========================================================= */

.paycase-brief__layout{
  grid-template-columns: minmax(0, 1.18fr) minmax(300px, .55fr) !important;
  gap: clamp(36px, 1vw, 72px) !important;
}

.paycase-brief__media{
  justify-content: flex-end !important;
}

.paycase-brief__media img{
  max-width: 950px !important;
    width: 100%;
}

@media(max-width: 1280px){

  .paycase-brief__left{
    grid-template-columns: 1fr !important;
  }

  .paycase-brief__blocks{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .paycase-mini-card p{
    max-width: 100% !important;
  }
}

@media(max-width: 620px){

  .paycase-brief__blocks{
    grid-template-columns: 1fr !important;
  }

  .paycase-mini-card{
    min-height: auto !important;
  }
}


/* =========================================================
   PAYCASE BRIEF HORIZONTAL CENTER FIX
   Centra bloques + objetivos + imagen
========================================================= */

.paycase-brief__layout{
  width:100% !important;
  max-width:1360px !important;

  margin-left:auto !important;
  margin-right:auto !important;

  display:grid !important;
  grid-template-columns:minmax(0, 1fr) minmax(320px, .42fr) !important;
  gap:clamp(36px, 4vw, 72px) !important;

  align-items:center !important;
  justify-content:center !important;
}

.paycase-brief__left{
  width:100% !important;
  max-width:980px !important;

  justify-self:center !important;

  display:grid !important;
  grid-template-columns:minmax(440px, .78fr) minmax(420px, .92fr) !important;
  gap:clamp(34px, 4vw, 56px) !important;

  align-items:center !important;
}

.paycase-brief__blocks{
  justify-self:center !important;
}

.paycase-brief__goals{
  justify-self:center !important;
}

.paycase-brief__media{
  justify-self:center !important;
  align-self:center !important;

  display:flex !important;
  justify-content:center !important;
  align-items:center !important;
}


/* =========================================================
   PAYCASE MINI CARDS PREMIUM DARK
========================================================= */

.paycase-mini-card{
  border-radius:12px !important;

  background-color:cornflowerblue ;

}


/* =========================================================
   PAYCASE VIDEO MEDIA
========================================================= */

.paycase-brief__media{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.paycase-brief__video{
  width: 100% !important;
  max-width: 280px !important;
  height: auto !important;
    border-radius: 44px;
    margin-bottom: 60px;

  display: block !important;
  object-fit: contain !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}


/* =========================================================
   PAYCASE MOBILE FIX
   Evita que el video se encime con las cards
========================================================= */

@media(max-width: 768px){

  .paycase-brief{
    padding: 72px 0 !important;
    overflow: hidden !important;
  }

  .paycase-brief__shell{
    width: calc(100% - 28px) !important;
    margin: 0 auto !important;
  }

  .paycase-brief__layout{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 34px !important;
    align-items: start !important;
  }

  .paycase-brief__left{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 28px !important;
    max-width: 100% !important;
  }

  .paycase-brief__blocks{
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .paycase-mini-card{
    width: 100% !important;
    min-height: auto !important;
    padding: 28px 26px !important;
    border-radius: 18px !important;
  }

  .paycase-mini-card h3{
    font-size: 2rem !important;
    line-height: 1.05 !important;
    margin: 24px 0 14px !important;
  }

  .paycase-mini-card p{
    max-width: 100% !important;
    font-size: 1.08rem !important;
    line-height: 1.38 !important;
  }

  .paycase-brief__goals{
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 22px !important;
  }

  .paycase-brief__media{
    position: relative !important;
    width: 100% !important;

    margin: 8px auto 0 !important;
    padding: 0 !important;

    display: flex !important;
    justify-content: center !important;
    align-items: center !important;

    background: transparent !important;
    overflow: visible !important;

    transform: none !important;
    z-index: 1 !important;
  }

  .paycase-brief__media img,
  .paycase-brief__video{
    width: 100% !important;
    max-width: 330px !important;
    height: auto !important;

    display: block !important;
    object-fit: contain !important;

    transform: none !important;
    position: relative !important;
    inset: auto !important;
  }
}


/* =========================================================
   PAYCASE MEDIA HARD RESET MOBILE
========================================================= */

@media(max-width: 768px){

  .paycase-brief__media,
  .paycase-brief__media img,
  .paycase-brief__video{
    position: relative !important;
    left: auto !important;
    right: auto !important;
    top: auto !important;
    bottom: auto !important;
    translate: none !important;
  }

  .paycase-brief__media{
    order: 2 !important;
  }

  .paycase-brief__left{
    order: 1 !important;
  }
}


/* =========================================================
   HPC HERO IMAGE BOTTOM CUT FIX
   Pega la imagen al fondo del hero y elimina corte blanco
========================================================= */

.hpc-hero{
  position: relative !important;
  min-height: 100vh !important;
  min-height: 100svh !important;

  padding-bottom: 0 !important;
  margin-bottom: 0 !important;

  display: flex !important;
  align-items: stretch !important;

  overflow: hidden !important;
}

.hpc-hero__grid{
  min-height: 100vh !important;
  min-height: 100svh !important;

  align-items: end !important;
}

.hpc-hero__copy{
  align-self: center !important;
  padding-bottom: clamp(40px, 4vw, 80px) !important;
}

.hpc-hero__visual{
  height: 100% !important;
  min-height: 100vh !important;
  min-height: 100svh !important;

  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;

  padding: 0 !important;
  margin: 0 !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;

  overflow: visible !important;
}

.hpc-hero__visual img{
  display: block !important;

  width: 100% !important;
  max-width: 760px !important;
  height: auto !important;

  object-fit: contain !important;
  object-position: bottom right !important;

  margin: 0 0 -2px 0 !important;
  padding: 0 !important;

  vertical-align: bottom !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* =========================================================
   HPC HERO TOP PADDING + CENTER ALIGN FIX
   Recorta padding superior y centra contenido con imagen
========================================================= */

.hpc-hero{
  min-height: 95vh !important;
  min-height: 95svh !important;

  padding-top: clamp(24px, 3vw, 48px) !important;
  padding-bottom: 0 !important;

  display: flex !important;
  align-items: center !important;

  overflow: hidden !important;
}

.hpc-hero__grid{
  min-height: 95vh !important;
  min-height: 95svh !important;

  display: grid !important;
  align-items: center !important;

  grid-template-columns: minmax(0, .92fr) minmax(560px, .78fr) !important;
  gap: clamp(40px, 6vw, 96px) !important;
}

.hpc-hero__copy{
  align-self: center !important;
  padding-bottom: 0 !important;
  transform: translateY(-8px) !important;
}

.hpc-hero__visual{
  min-height: 95vh !important;
  min-height: 95svh !important;

  align-self: center !important;

  display: flex !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;

  padding: 0 !important;
  margin: 0 !important;

  overflow: visible !important;
}

.hpc-hero__visual img{
  max-width: 760px !important;
  width: 100% !important;
  height: auto !important;

  display: block !important;
  object-fit: contain !important;
  object-position: bottom right !important;

  margin-bottom: -2px !important;
}

/* =========================================================
   HPC HERO MOBILE RECUT
========================================================= */

@media(max-width: 900px){

  .hpc-hero{
    min-height: auto !important;
    padding-top: 96px !important;
    padding-bottom: 0 !important;
  }

  .hpc-hero__grid{
    min-height: auto !important;
    grid-template-columns: 1fr !important;
    gap: 32px !important;
    align-items: center !important;
  }

  .hpc-hero__copy{
    transform: none !important;
  }

  .hpc-hero__visual{
    min-height: auto !important;
    justify-content: center !important;
  }

  .hpc-hero__visual img{
    max-width: 100% !important;
    transform: none !important;
    margin-bottom: -1px !important;
  }
}


/* =========================================================
   HPC HERO LIGHT MODE PATCH
   Fondo blanco + letras oscuras
========================================================= */

html,
body.hpc-page{
  background:#ffffff !important;
}

.hpc-hero{
  background:
    radial-gradient(circle at 76% 18%, rgba(139,124,255,.12), transparent 34%),
    radial-gradient(circle at 12% 88%, rgba(220,38,38,.055), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #f6f6fa 100%) !important;

  color:#07162d !important;
  border-bottom:1px solid rgba(7,22,45,.08) !important;
}

/* Textos */
.hpc-hero h1{
  color:#07162d !important;
}

.hpc-hero__copy p{
  color:rgba(7,22,45,.68) !important;
}

.hpc-hero .hpc-eyebrow{
  color:#8b7cff !important;
}

/* Botón volver */
.hpc-back-link{
  color:#07162d !important;

  background:rgba(255,255,255,.72) !important;
  border:1px solid rgba(7,22,45,.10) !important;

  box-shadow:
    0 16px 42px rgba(7,22,45,.08),
    inset 0 1px 0 rgba(255,255,255,.95) !important;

  backdrop-filter:blur(18px) saturate(160%) !important;
  -webkit-backdrop-filter:blur(18px) saturate(160%) !important;
}

.hpc-back-link:hover{
  background:#ffffff !important;
  color:#07162d !important;
}

/* Pills / tags */
.hpc-hero__tags span{
  color:#07162d !important;

  background:rgba(255,255,255,.72) !important;
  border:1px solid rgba(7,22,45,.10) !important;

  box-shadow:
    0 14px 34px rgba(7,22,45,.07),
    inset 0 1px 0 rgba(255,255,255,.95) !important;
}

/* Imagen limpia */
.hpc-hero__visual{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

.hpc-hero__visual img{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

/* Mata fondos oscuros heredados justo después */
.hpc-hero + section,
.hpc-hero + div,
.hpc-hero + *{
  background:#ffffff !important;
}

/* =========================================================
   HPC HERO LIGHT SOFT GLOW
========================================================= */

.hpc-hero::before{
  content:"" !important;
  position:absolute !important;
  inset:0 !important;
  pointer-events:none !important;

  background:
    radial-gradient(circle at 82% 30%, rgba(139,124,255,.16), transparent 32%),
    radial-gradient(circle at 18% 78%, rgba(7,22,45,.045), transparent 36%) !important;

  z-index:0 !important;
}

.hpc-hero__grid,
.hpc-back-link{
  position:relative !important;
  z-index:1 !important;
}


/* =========================================================
   HPC EYEBROW RED + PURPLE GRADIENT
========================================================= */

.hpc-hero .hpc-eyebrow,
.hpc-eyebrow{
    font-size: 1.2em !important;
    letter-spacing: 2px !important;
    font-weight: 700 !important;
  background: linear-gradient(
    90deg,
    #ff2d2d 0%,
    #ff4b5f 18%,
    #8b7cff 78%,
    #6d5dfc 90%
  ) !important;

  -webkit-background-clip: text !important;
  background-clip: text !important;

  -webkit-text-fill-color: transparent !important;
  color: transparent !important;

  text-shadow: none !important;
}


/* =========================================================
   PAYCASE LAYOUT REVERSE
   Video izquierda + cards/objetivos derecha
========================================================= */

.paycase-brief__layout{
  display:grid !important;
  grid-template-columns:minmax(360px, .62fr) minmax(720px, 1fr) !important;
  gap:clamp(54px, 6vw, 110px) !important;
  align-items:center !important;
}

/* Video / imagen del lado izquierdo */
.paycase-brief__media{
  order:1 !important;
  grid-column:1 !important;

  width:100% !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  overflow:visible !important;
}

.paycase-brief__media img,
.paycase-brief__video{
  width:100% !important;
  max-width:520px !important;
  height:auto !important;

  display:block !important;
  object-fit:contain !important;

  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

/* Cards + objetivos del lado derecho */
.paycase-brief__left{
  order:2 !important;
  grid-column:2 !important;

  display:grid !important;
  grid-template-columns:minmax(420px, .82fr) minmax(430px, .92fr) !important;
  gap:clamp(36px, 4vw, 60px) !important;
  align-items:center !important;

  width:100% !important;
  max-width:100% !important;
}


/* =========================================================
   PAYCASE CARDS RED + PURPLE GRADIENT
========================================================= */

.paycase-mini-card{
  border-radius:12px !important;

  background:
    radial-gradient(circle at 16% 12%, rgba(255,255,255,.20), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(11,16,38,.34), transparent 40%),
    linear-gradient(145deg, #ff2d2d 0%, #c04cff 42%, #6d5dfc 72%, #312e81 100%) !important;

  border:1px solid rgba(255,255,255,.14) !important;

  box-shadow:
    0 26px 80px rgba(49,46,129,.26),
    0 18px 46px rgba(255,45,45,.12),
    inset 0 1px 0 rgba(255,255,255,.20),
    inset 0 -1px 0 rgba(0,0,0,.22) !important;
}

.paycase-mini-card span,
.paycase-mini-card h3{
  color:#ffffff !important;
}

.paycase-mini-card p{
  color:rgba(255,255,255,.84) !important;
}


/* =========================================================
   PAYCASE OBJECTIVES LINE RED + PURPLE
========================================================= */

.paycase-brief__goals::before{
  background:linear-gradient(
    180deg,
    #ff2d2d 0%,
    #c04cff 42%,
    #8b7cff 72%,
    rgba(139,124,255,.16) 100%
  ) !important;

  box-shadow:
    0 0 24px rgba(192,76,255,.22),
    0 0 36px rgba(255,45,45,.12) !important;
}

.paycase-goal__label{
  background:linear-gradient(
    90deg,
    #ff2d2d 0%,
    #c04cff 45%,
    #8b7cff 100%
  ) !important;

  -webkit-background-clip:text !important;
  background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
  color:transparent !important;
}

.paycase-goal li::before{
  background:linear-gradient(135deg, #ff2d2d 0%, #8b7cff 100%) !important;
}


/* =========================================================
   PAYCASE REVERSE RESPONSIVE
========================================================= */

@media(max-width:1180px){

  .paycase-brief__layout{
    grid-template-columns:1fr !important;
    gap:44px !important;
  }

  .paycase-brief__media{
    order:2 !important;
    grid-column:auto !important;
  }

  .paycase-brief__left{
    order:1 !important;
    grid-column:auto !important;

    grid-template-columns:1fr !important;
    max-width:900px !important;
    margin:0 auto !important;
  }

  .paycase-brief__media img,
  .paycase-brief__video{
    max-width:520px !important;
  }
}

@media(max-width:620px){

  .paycase-brief__blocks{
    grid-template-columns:1fr !important;
  }

  .paycase-mini-card{
    min-height:auto !important;
  }

  .paycase-brief__media img,
  .paycase-brief__video{
    max-width:330px !important;
  }
}



/* =========================================================
   PAYCASE VIDEO SIZE FIX
   Reduce el video del lado izquierdo
========================================================= */

.paycase-brief__media{
  justify-content: center !important;
  align-items: center !important;
}

.paycase-brief__video,
.paycase-brief__media video{
  width: 100% !important;
  max-width: 360px !important;
  height: auto !important;

  display: block !important;
  object-fit: contain !important;

  transform: none !important;
}

/* =========================================================
   PAYCASE VIDEO SMALLER
========================================================= */

.paycase-brief__video,
.paycase-brief__media video{
  max-width: 300px !important;
}


/* =========================================================
   PAYCASE VIDEO COLUMN BALANCE
========================================================= */

.paycase-brief__layout{
  grid-template-columns: minmax(260px, .36fr) minmax(720px, 1fr) !important;
  gap: clamp(36px, 4vw, 72px) !important;
}

.paycase-brief__media{
  max-width: 380px !important;
  justify-self: center !important;
}



/* =========================================================
   PAYCASE VIDEO LEFT + CARDS TOP + GOALS BELOW
   Video izquierda, contenido derecha en vertical
========================================================= */

.paycase-brief__layout{
  display:grid !important;
  grid-template-columns:minmax(260px, .34fr) minmax(760px, 1fr) !important;
  gap:clamp(44px, 5vw, 88px) !important;
  align-items:center !important;

  max-width:1440px !important;
  margin:0 auto !important;
}

/* Video del lado izquierdo */
.paycase-brief__media{
  display:flex !important;
  order:1 !important;
  grid-column:1 !important;
  width:100% !important;
  max-width:260px !important;

  justify-self:center !important;
  align-self:center !important;

  align-items:center !important;
  justify-content:center !important;

  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  overflow:visible !important;
}

.paycase-brief__media img,
.paycase-brief__media video,
.paycase-brief__video{
  width:100% !important;
  max-width:340px !important;
  height:auto !important;

  display:block !important;
  object-fit:contain !important;

  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

/* Contenido del lado derecho */
.paycase-brief__left{
  order:2 !important;
  grid-column:2 !important;

  width:100% !important;
  max-width:100% !important;

  display:flex !important;
  flex-direction:column !important;
  gap:clamp(34px, 4vw, 56px) !important;

  align-self:center !important;
}

/* 4 bloques en una sola fila arriba */
.paycase-brief__blocks{
  width:100% !important;

  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:clamp(14px, 1.6vw, 22px) !important;
}

.paycase-mini-card{
  min-height:240px !important;
  padding:24px 24px !important;
  border-radius:18px !important;
}

.paycase-mini-card span{
  margin-bottom:auto !important;
}

.paycase-mini-card h3{
  margin:34px 0 12px !important;
  font-size:clamp(1.35rem, 1.65vw, 1.85rem) !important;
  line-height:1.04 !important;
}

.paycase-mini-card p{
  max-width:100% !important;
  font-size:clamp(.95rem, 1vw, 1.05rem) !important;
  line-height:1.34 !important;
}

/* Objetivos debajo de las cards */
.paycase-brief__goals{
  width:100% !important;
  max-width:100% !important;

  margin:0 !important;
  padding-left:0 !important;
  padding-top:30px !important;

  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:clamp(36px, 5vw, 72px) !important;

  border-top:3px solid transparent !important;
  border-image:linear-gradient(
    90deg,
    #ff2d2d 0%,
    #c04cff 46%,
    #8b7cff 100%
  ) 1 !important;
}

/* Apaga línea vertical anterior */
.paycase-brief__goals::before{
  display:none !important;
  content:none !important;
}

.paycase-goal h3{
  max-width:540px !important;
}

.paycase-goal ul{
  max-width:560px !important;
}

/* =========================================================
   PAYCASE VIDEO LEFT RESPONSIVE
========================================================= */

@media(max-width:1180px){

  .paycase-brief__layout{
    grid-template-columns:1fr !important;
    gap:42px !important;
  }

  .paycase-brief__media{
    order:1 !important;
    grid-column:auto !important;
    max-width:360px !important;
  }

  .paycase-brief__left{
    order:2 !important;
    grid-column:auto !important;
  }

  .paycase-brief__blocks{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  }

  .paycase-brief__goals{
    grid-template-columns:1fr 1fr !important;
  }
}

@media(max-width:720px){

  .paycase-brief__media{
    max-width:300px !important;
  }

  .paycase-brief__media img,
  .paycase-brief__media video,
  .paycase-brief__video{
    max-width:280px !important;
  }

  .paycase-brief__blocks{
    grid-template-columns:1fr !important;
    gap:16px !important;
  }

  .paycase-mini-card{
    min-height:auto !important;
    padding:26px 24px !important;
  }

  .paycase-mini-card h3{
    margin:0 0 12px !important;
    font-size:1.85rem !important;
  }

  .paycase-mini-card span{
    margin-bottom:22px !important;
  }

  .paycase-brief__goals{
    grid-template-columns:1fr !important;
    gap:32px !important;
  }
}


/* =========================================================
   PAYCASE MINI CARDS APPLE-LIKE CLEAN
   Cards más pequeñas, fondo limpio, sin blur ni glow
========================================================= */

.paycase-brief__blocks{
  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:18px !important;
  width:100% !important;
}

/* Card limpia tipo Apple */
.paycase-mini-card{
  min-height:190px !important;
  padding:26px 24px !important;

  border-radius:22px !important;

  background:#f5f5f7 !important;
  border:0 !important;

  box-shadow:none !important;
  filter:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;

  display:flex !important;
  flex-direction:column !important;
  justify-content:flex-start !important;
}

/* Número */
.paycase-mini-card span{
  margin:0 0 34px !important;

  color:#8b7cff !important;
  font-size:.76rem !important;
  line-height:1 !important;
  letter-spacing:.16em !important;
  font-weight:850 !important;
}

/* Título */
.paycase-mini-card h3{
  margin:0 0 12px !important;

  color:#07162d !important;
  font-size:clamp(1.28rem, 1.45vw, 1.65rem) !important;
  line-height:1.05 !important;
  letter-spacing:-.05em !important;
  font-weight:850 !important;
}

/* Texto */
.paycase-mini-card p{
  margin:0 !important;
  max-width:92% !important;

  color:rgba(7,22,45,.68) !important;
  font-size:.95rem !important;
  line-height:1.38 !important;
  letter-spacing:-.018em !important;
  font-weight:520 !important;
}


/* =========================================================
   PAYCASE REMOVE CARD EFFECTS
========================================================= */

.paycase-mini-card::before,
.paycase-mini-card::after,
.paycase-brief__blocks::before,
.paycase-brief__blocks::after{
  display:none !important;
  content:none !important;
}

.paycase-mini-card{
  outline:none !important;
  text-shadow:none !important;
}

/* =========================================================
   PAYCASE CARDS LAYOUT POLISH
========================================================= */

.paycase-brief__left{
  gap:clamp(34px, 4vw, 52px) !important;
}

.paycase-brief__blocks{
  max-width:980px !important;
}

.paycase-brief__goals{
  max-width:980px !important;
}

/* =========================================================
   PAYCASE CLEAN CARDS RESPONSIVE
========================================================= */

@media(max-width:1180px){

  .paycase-brief__blocks{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    max-width:720px !important;
  }

  .paycase-mini-card{
    min-height:180px !important;
  }
}

@media(max-width:620px){

  .paycase-brief__blocks{
    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .paycase-mini-card{
    min-height:auto !important;
    padding:24px !important;
    border-radius:20px !important;
  }

  .paycase-mini-card span{
    margin-bottom:22px !important;
  }

  .paycase-mini-card h3{
    font-size:1.45rem !important;
  }

  .paycase-mini-card p{
    max-width:100% !important;
    font-size:.98rem !important;
  }
}


/* =========================================================
   PAYCASE REMOVE TOP AIR + GOALS LINE
========================================================= */

/* Quita aire superior general de esta sección */
.paycase-brief{
  padding-top: 0 !important;
}

/* Evita separación extra entre intro y layout */
.paycase-brief__intro{
    margin-top: 40px;
  margin-bottom: clamp(28px, 3vw, 44px) !important;
}

/* Alinea todo al inicio superior del video */
.paycase-brief__layout{
  align-items: start !important;
}

/* Video pegado al inicio de la sección */
.paycase-brief__media{
   ;
  align-self: start!important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Contenido derecho pegado al inicio del video */
.paycase-brief__left{ 
  
  align-self: start !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Quita la línea degradada de objetivos */
.paycase-brief__goals{
  border-top: 0 !important;
  border-image: none !important;
  padding-top: 0 !important;
}

/* Por si quedó pseudo línea heredada */
.paycase-brief__goals::before,
.paycase-brief__goals::after{
  display: none !important;
  content: none !important;
}


/* =========================================================
   PAYCASE FINAL LAYOUT
   Objetivos izquierda + video centro + cards derecha
========================================================= */

.paycase-brief{
  padding-top: clamp(56px, 6vw, 88px) !important;
  padding-bottom: clamp(64px, 7vw, 104px) !important;

  background:
    radial-gradient(circle at 84% 14%, rgba(139,124,255,.10), transparent 34%),
    radial-gradient(circle at 18% 86%, rgba(220,38,38,.035), transparent 30%),
    linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%) !important;
}

/* Header superior */
.paycase-brief__intro{
  max-width: 1440px !important;
  margin: 0 auto clamp(46px, 5vw, 72px) !important;
}

.paycase-brief__intro h2{
  max-width: 900px !important;
  margin-bottom: 18px !important;

  font-size: clamp(3rem, 5vw, 4.6rem) !important;
  line-height: .98 !important;
  letter-spacing: -.075em !important;
}

.paycase-brief__intro p{
  max-width: 1360px !important;
  font-size: clamp(1rem, 1.25vw, 1.18rem) !important;
  line-height: 1.45 !important;
}

/* Layout principal */
.paycase-brief__layout{
  width: 100% !important;
  max-width: 1440px !important;

  margin: 0 auto !important;

  display: grid !important;
  grid-template-columns: minmax(320px, .72fr) minmax(260px, .46fr) minmax(420px, .82fr) !important;
  gap: clamp(42px, 5vw, 78px) !important;

  align-items: center !important;
}

/* Reordena: objetivos izquierda */
.paycase-brief__goals{
  order: 1 !important;
  grid-column: 1 !important;

  width: 100% !important;
  max-width: 460px !important;

  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 44px !important;

  border: 0 !important;
  border-image: none !important;
}

.paycase-brief__goals::before,
.paycase-brief__goals::after{
  display: none !important;
  content: none !important;
}

/* Video / mockup al centro */
.paycase-brief__media{
  order: 2 !important;
  grid-column: 2 !important;

  width: 100% !important;
  max-width: 300px !important;

  justify-self: center !important;
  align-self: center !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  margin: 0 !important;
  padding: 0 !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.paycase-brief__media img,
.paycase-brief__media video,
.paycase-brief__video{
  width: 100% !important;
  max-width: 300px !important;
  height: auto !important;

  display: block !important;
  object-fit: contain !important;

  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

/* Cards derecha */
.paycase-brief__left{
  display: contents !important;
}

.paycase-brief__blocks{
  order: 3 !important;
  grid-column: 3 !important;

  width: 100% !important;
  max-width: 520px !important;

  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 22px !important;

  justify-self: end !important;
}

/* Cards más Apple, compactas */
.paycase-mini-card{
  min-height: 190px !important;
  padding: 24px 24px !important;

  border-radius: 22px !important;

  background: rgba(245,245,247,.82) !important;
  border: 0 !important;
  box-shadow: none !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-start !important;
}

.paycase-mini-card span{
  margin: 0 0 34px !important;

  color: #8b7cff !important;
  font-size: .72rem !important;
  line-height: 1 !important;
  letter-spacing: .16em !important;
  font-weight: 850 !important;
}

.paycase-mini-card h3{
  margin: 0 0 10px !important;

  color: #07162d !important;
  font-size: clamp(1.22rem, 1.35vw, 1.55rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -.05em !important;
  font-weight: 850 !important;
}

.paycase-mini-card p{
  margin: 0 !important;
  max-width: 100% !important;

  color: rgba(7,22,45,.68) !important;
  font-size: .9rem !important;
  line-height: 1.38 !important;
  letter-spacing: -.018em !important;
}


/* =========================================================
   PAYCASE GOALS POLISH
========================================================= */

.paycase-goal__label{
  background: linear-gradient(
    90deg,
    #ff2d2d 0%,
    #c04cff 45%,
    #8b7cff 100%
  ) !important;

  -webkit-background-clip: text !important;
  background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  color: transparent !important;

  font-size: .78rem !important;
  line-height: 1.25 !important;
  letter-spacing: .28em !important;
  font-weight: 900 !important;
}

.paycase-goal h3{
  margin: 0 0 18px !important;

  color: #07162d !important;
  font-size: clamp(1.75rem, 2vw, 2.45rem) !important;
  line-height: 1.05 !important;
  letter-spacing: .2px !important;
  font-weight: 900 !important;
}

.paycase-goal ul{
  margin: 0 !important;
  padding: 0 !important;

  display: flex !important;
  flex-direction: column !important;
  gap: 10px !important;

  list-style: none !important;
}

.paycase-goal li{
  position: relative !important;
  padding-left: 22px !important;

  color: rgba(7,22,45,.68) !important;
  font-size: 1rem !important;
  line-height: 1.42 !important;
}

.paycase-goal li::before{
  content: "" !important;
  position: absolute !important;
  left: 0 !important;
  top: .62em !important;

  width: 7px !important;
  height: 7px !important;
  border-radius: 50% !important;

  background: linear-gradient(135deg, #ff2d2d 0%, #8b7cff 100%) !important;
}

/* =========================================================
   PAYCASE FINAL LAYOUT RESPONSIVE
========================================================= */

@media(max-width: 1180px){

  .paycase-brief__layout{
    grid-template-columns: 1fr !important;
    gap: 40px !important;
  }

  .paycase-brief__left{
    display: flex !important;
    flex-direction: column !important;
    gap: 40px !important;
  }

  .paycase-brief__goals,
  .paycase-brief__media,
  .paycase-brief__blocks{
    grid-column: auto !important;
    justify-self: center !important;
  }

  .paycase-brief__media{
    order: 1 !important;
    max-width: 300px !important;
  }

  .paycase-brief__blocks{
    order: 2 !important;
    max-width: 720px !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .paycase-brief__goals{
    order: 3 !important;
    max-width: 720px !important;

    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 36px !important;
  }
}

@media(max-width: 720px){

  .paycase-brief{
    padding-top: 64px !important;
  }

  .paycase-brief__intro h2{
    font-size: clamp(2.5rem, 11vw, 3.3rem) !important;
  }

  .paycase-brief__media,
  .paycase-brief__media img,
  .paycase-brief__media video,
  .paycase-brief__video{
    max-width: 280px !important;
  }

  .paycase-brief__blocks{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .paycase-mini-card{
    min-height: auto !important;
    padding: 24px !important;
    border-radius: 20px !important;
  }

  .paycase-mini-card span{
    margin-bottom: 22px !important;
  }

  .paycase-brief__goals{
    grid-template-columns: 1fr !important;
    gap: 34px !important;
  }

  .paycase-goal h3{
    font-size: 1.8rem !important;
  }
}


/* =========================================================
   PAYCASE INDEX STYLE
   Fondo gris carbón + cards negras como Home
========================================================= */

.paycase-brief{
  background:#1d1d1f !important;
  color:#f5f5f7 !important;
}

/* Contenedor general */
.paycase-brief__shell{
  width:min(100% - 48px, 1440px) !important;
  margin:0 auto !important;
}

/* Header */
.paycase-brief__eyebrow{
  color:#8b7cff !important;
}

.paycase-brief__intro h2{
  color:#f5f5f7 !important;
  font-size:clamp(2.8rem, 5vw, 4rem) !important;
  line-height:1.02 !important;
  letter-spacing:-.065em !important;
}

.paycase-brief__intro p{
  color:rgba(245,245,247,.64) !important;
}

.paycase-brief__intro p strong{
  color:#8b7cff !important;
}

/* Cards negras */
.paycase-mini-card{
  background:#000000 !important;
  border:1px solid rgba(255,255,255,.08) !important;
  border-radius:28px !important;

  box-shadow:none !important;
  filter:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;
}

/* Textos dentro de cards */
.paycase-mini-card span{
  color:#8b7cff !important;
}

.paycase-mini-card h3{
  color:#ffffff !important;
}

.paycase-mini-card p{
  color:rgba(245,245,247,.66) !important;
}

/* Objetivos */
.paycase-goal__label{
  color:#8b7cff !important;
  background:none !important;
  -webkit-text-fill-color:initial !important;
}

.paycase-goal h3{
  color:#ffffff !important;
}

.paycase-goal li{
  color:rgba(245,245,247,.64) !important;
}

.paycase-goal li::before{
  background:#8b7cff !important;
}

/* Quita líneas o efectos anteriores */
.paycase-brief__goals{
  border:0 !important;
  border-image:none !important;
}

.paycase-brief__goals::before,
.paycase-brief__goals::after{
  display:none !important;
  content:none !important;
}

/* Video / mockup limpio */
.paycase-brief__media{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

.paycase-brief__media img,
.paycase-brief__media video,
.paycase-brief__video{
  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}


/* =========================================================
   PAYCASE VIDEO -10%
========================================================= */



.paycase-brief__media{
  max-width: 264px !important; /* antes 360px */
}



/* =========================================================
   PAYCASE GOALS SPEC STYLE
   Estilo tipo specs: sin bullets, línea divisoria y títulos más sobrios
========================================================= */

.paycase-brief__goals{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:clamp(42px, vw, 88px) !important;

  width:100% !important;
  max-width:1080px !important;

  margin:0 auto !important;
  padding:0 !important;

  border:0 !important;
  border-image:none !important;
}

.paycase-goal{
  margin:0 !important;
  padding:0 !important;
}

.paycase-goal__label{
  display:block !important;
  margin:0 0 12px !important;

  color:#fff !important;
  background:none !important;
  -webkit-text-fill-color:initial !important;

  font-size:clamp(1rem, 1vw, 2rem) !important;
  line-height:1.18 !important;
  letter-spacing:1px !important;
  font-weight:550 !important;
  text-transform:none !important;
}

/* Línea divisoria debajo del título */
.paycase-goal__label::after{
  content:"" !important;
  display:block !important;

  width:100% !important;
  height:1px !important;

  margin-top:14px !important;

  background:gray !important;
}



/* Lista sin bullets */
.paycase-goal ul{
  margin:0 !important;
  padding:0 !important;

  list-style:none !important;

  display:flex !important;
  flex-direction:column !important;
  gap:6px !important;
}

.paycase-goal li{
  margin:0 !important;
  padding:0 !important;

  color:#fff !important;

  font-size:clamp(1rem, 1vw, 1.45rem) !important;
  line-height:1.32 !important;
  letter-spacing:-.025em !important;
  font-weight:320 !important;
}

/* Apaga los bullets anteriores */
.paycase-goal li::before{
  display:none !important;
  content:none !important;
}


/* =========================================================
   PAYCASE ORDER FIX
   Bloques izquierda + video centro + objetivos derecha
========================================================= */

.paycase-brief__layout{
  width:100% !important;
  max-width:1440px !important;
  margin:0 auto !important;

  display:grid !important;
  grid-template-columns:minmax(360px, .8fr) minmax(240px, .42fr) minmax(420px, .9fr) !important;
  gap:clamp(36px, 4vw, 72px) !important;

  align-items:center !important;
}

/* Permite que blocks y goals funcionen como columnas independientes */
.paycase-brief__left{
  display:contents !important;
}

/* 1. Bloques lado izquierdo */
.paycase-brief__blocks{
  grid-column:1 !important;
  order:1 !important;

  width:100% !important;
  max-width:560px !important;

  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:22px !important;

  justify-self:start !important;
  align-self:center !important;
}

/* 2. Video centro */
.paycase-brief__media{
  grid-column:2 !important;
  order:2 !important;

  width:100% !important;
  max-width:280px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  justify-self:center !important;
  align-self:center !important;

  margin:0 !important;
  padding:0 !important;

  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
  overflow:visible !important;
}

.paycase-brief__media img,
.paycase-brief__media video,
.paycase-brief__video{
  width:100% !important;
  max-width:270px !important;
  height:auto !important;

  display:block !important;
  object-fit:contain !important;

  background:transparent !important;
  border:0 !important;
  box-shadow:none !important;
}

/* 3. Objetivos lado derecho, uno arriba y otro abajo */
.paycase-brief__goals{
  grid-column:3 !important;
  order:3 !important;

  width:100% !important;
  max-width:520px !important;

  display:flex !important;
  flex-direction:column !important;
  gap:clamp(36px, 4vw, 56px) !important;

  justify-self:start !important;
  align-self:center !important;

  margin:0 !important;
  padding:0 !important;

  border:0 !important;
  border-image:none !important;
}

.paycase-brief__goals::before,
.paycase-brief__goals::after{
  display:none !important;
  content:none !important;
}


/* =========================================================
   PAYCASE ORDER FIX TABLET
========================================================= */

@media(max-width:1180px){

  .paycase-brief__layout{
    grid-template-columns:1fr 320px !important;
    gap:42px !important;
    align-items:center !important;
  }

  .paycase-brief__blocks{
    grid-column:1 !important;
    grid-row:1 !important;

    max-width:620px !important;
    justify-self:center !important;
  }

  .paycase-brief__media{
    grid-column:2 !important;
    grid-row:1 / span 2 !important;

    max-width:300px !important;
    justify-self:center !important;
  }

  .paycase-brief__media img,
  .paycase-brief__media video,
  .paycase-brief__video{
    max-width:280px !important;
  }

  .paycase-brief__goals{
    grid-column:1 !important;
    grid-row:2 !important;

    max-width:620px !important;
    justify-self:center !important;
  }
}


/* =========================================================
   PAYCASE ORDER FIX MOBILE
========================================================= */

@media(max-width:760px){

  .paycase-brief__layout{
    display:flex !important;
    flex-direction:column !important;
    gap:34px !important;
  }

  .paycase-brief__blocks{
    order:1 !important;

    width:100% !important;
    max-width:100% !important;

    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .paycase-brief__media{
    order:2 !important;

    width:100% !important;
    max-width:280px !important;
  }

  .paycase-brief__media img,
  .paycase-brief__media video,
  .paycase-brief__video{
    max-width:260px !important;
  }

  .paycase-brief__goals{
    order:3 !important;

    width:100% !important;
    max-width:100% !important;

    display:flex !important;
    flex-direction:column !important;
    gap:32px !important;
  }
}



/* =========================================================
   UX SWITCHCASE
   Tabs que cambian texto + imagen dentro del iPhone
========================================================= */

.ux-switchcase{
  width:100%;
  padding:clamp(62px, 4vw, 112px) 0;
  background:#1d1d1f;
  color:#f5f5f7;

  overflow:hidden;
}

.ux-switchcase,
.ux-switchcase *{
  box-sizing:border-box;
}

.ux-switchcase__shell{
    
  width:min(100% - 48px, 1440px);
  margin:0 auto;
}

.ux-switchcase__intro{
    text-align: center;

  max-width:1480px;
  margin:0 0 clamp(4px, 2vw, 70px);
}

.ux-switchcase__eyebrow{
  display:block;
  margin-bottom:18px;

  color:#8b7cff;
  font-size:.72rem;
  line-height:1.35;
  letter-spacing:.34em;
  font-weight:850;
  text-transform:uppercase;
}

.ux-switchcase__intro h2{
  max-width:1480px;
  margin:0 0 18px;

  color:#f5f5f7;
  font-size:clamp(2.8rem, 3.6vw, 4rem);
  line-height:1.02;
  letter-spacing:-1px;
  font-weight:900;
}

.ux-switchcase__intro p{
  max-width:1480px;
  margin:0;

  color:rgba(245,245,247,.62);
  font-size:clamp(1.02rem, 1.3vw, 1.18rem);
  line-height:1.52;
  letter-spacing:-.018em;
}

.ux-switchcase__intro p strong{
  color:#8b7cff;
  font-weight:650;
}

/* Layout principal */
.ux-switchcase__stage{
  width:100%;
  max-width:1080px;
    margin-top: 40px !important;
  margin:0 auto;

  display:grid;
  grid-template-columns:minmax(0, .92fr) minmax(260px, .48fr);
  gap:clamp(44px, 6vw, 96px);
  align-items:center;
}



/* =========================================================
   UX SWITCHCASE TABS RESIZE FIX
   Corrige tabs enormes al hacer resize
========================================================= */

.ux-switchcase__tabs{
  width: min(100%, 720px) !important;
  max-width: 620px !important;
 padding-top: -100px !important;
  margin-left: auto !important;
  margin-right: auto !important;

  padding: 6px !important;
  gap: 6px !important;

  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

  border-radius: 20px !important;
}

.ux-switchcase__tab{
  min-width: 0 !important;
  min-height: 54px !important;

  padding: 0 14px !important;

  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  border-radius: 16px !important;

  font-size: .95rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.ux-switchcase__tab-icon{
  font-size: .9rem !important;
  line-height: 1 !important;
}




/* Texto izquierda */
.ux-switchcase__content{
  max-width:560px;
}

.ux-switchcase__kicker{
  display:block;
  margin-bottom:16px;

  color:#8b7cff;
  font-size:.74rem;
  line-height:1.35;
  letter-spacing:.32em;
  font-weight:850;
  text-transform:uppercase;
}

.ux-switchcase__content h3{
  margin:0 0 22px;

  color:#f5f5f7;
  font-size:clamp(1.7rem, 2.6vw, 2.5rem);
  line-height:1.08;
  letter-spacing:-.055em;
  font-weight:760;
}

.ux-switchcase__body{
  padding-top:22px;
  border-top:1px solid rgba(245,245,247,.22);
}

.ux-switchcase__body p{
  margin:0;

  color:rgba(245,245,247,.58);
  font-size:1.02rem;
  line-height:1.56;
  letter-spacing:-.018em;
}

.ux-switchcase__body ul{
  margin:0;
  padding:0;

  list-style:none;

  display:flex;
  flex-direction:column;
  gap:14px;
}

.ux-switchcase__body li{
  position:relative;
  padding-left:22px;

  color:rgba(245,245,247,.58);
  font-size:1.02rem;
  line-height:1.46;
  letter-spacing:-.018em;
}

.ux-switchcase__body li::before{
  content:"";
  position:absolute;
  left:0;
  top:.65em;

  width:7px;
  height:7px;
  border-radius:50%;

  background:#8b7cff;
}

.ux-switchcase__goal-group + .ux-switchcase__goal-group{
  margin-top:28px;
}

.ux-switchcase__goal-label{
  display:block;
  margin-bottom:12px;

  color:#8b7cff;
  font-size:.72rem;
  line-height:1.3;
  letter-spacing:.28em;
  font-weight:850;
  text-transform:uppercase;
}

.ux-switchcase__goal-title{
  margin:0 0 14px !important;

  color:#f5f5f7 !important;
  font-size:clamp(1.35rem, 2vw, 1.85rem) !important;
  line-height:1.12 !important;
  letter-spacing:-.045em !important;
  font-weight:720 !important;
}

/* iPhone derecha */
.ux-switchcase__phone{
  margin:0;

  width:100%;
  max-width:330px;

  justify-self:center;

  display:flex;
  align-items:center;
  justify-content:center;

  background:transparent;
  border:0;
  box-shadow:none;
  overflow:visible;
}

.ux-switchcase__phone img{
  width:100%;
  max-width:330px;
  height:auto;

  display:block;
  object-fit:contain;

  background:transparent;
  border:0;
  box-shadow:none;

  transition:
    opacity .24s ease,
    transform .34s cubic-bezier(.16,1,.3,1);
}

.ux-switchcase__phone img.is-changing{
  opacity:0;
  transform:scale(.985) translateY(8px);
}

/* Tabs */
.ux-switchcase__tabs{
  width:max-content;
  max-width:100%;

  margin:clamp(38px, 5vw, 66px) auto 0;
  padding:8px;

  display:flex;
  align-items:center;
  gap:6px;

  border-radius:18px;
  background:rgba(245,245,247,.09);
  border:1px solid rgba(255,255,255,.08);
}

.ux-switchcase__tab{
  appearance:none;
  border:0;
  cursor:pointer;

  min-width:108px;
  min-height:52px;
  padding:8px 16px;

  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:5px;

  border-radius:14px;
  background:transparent;

  color:rgba(245,245,247,.72);

  font:inherit;
  font-size:.86rem;
  line-height:1;
  font-weight:650;
  letter-spacing:-.015em;

  transition:
    background .22s ease,
    color .22s ease,
    transform .22s cubic-bezier(.16,1,.3,1);
}

.ux-switchcase__tab:hover{
  color:#ffffff;
  background:rgba(255,255,255,.08);
}

.ux-switchcase__tab.is-active{
  color:#07162d;
  background:#f5f5f7;
}

.ux-switchcase__tab-icon{
  font-size:.88rem;
  line-height:1;
  opacity:.9;
}

/* =========================================================
   UX SWITCHCASE TABLET
========================================================= */

@media(max-width:1100px){

  .ux-switchcase__stage{
    max-width:860px;
    grid-template-columns:minmax(0, 1fr) minmax(220px, .42fr);
    gap:42px;
  }

  .ux-switchcase__phone,
  .ux-switchcase__phone img{
    max-width:280px;
  }

  .ux-switchcase__content h3{
    font-size:clamp(1.6rem, 3vw, 2.2rem);
  }

  .ux-switchcase__tabs{
    width:100%;
    max-width:620px;
  }

  .ux-switchcase__tab{
    flex:1;
    min-width:0;
  }
}


/* =========================================================
   UX SWITCHCASE MOBILE
========================================================= */

@media(max-width:720px){

  .ux-switchcase{
    padding:64px 0;
  }

  .ux-switchcase__shell{
    width:calc(100% - 28px);
  }

  .ux-switchcase__intro{
    margin-bottom:42px;
  }

  .ux-switchcase__intro h2{
    font-size:clamp(2.4rem, 11vw, 3.25rem);
    line-height:1.04;
  }

  .ux-switchcase__intro p{
    font-size:1rem;
  }

  .ux-switchcase__stage{
    grid-template-columns:1fr;
    gap:36px;
  }

  .ux-switchcase__content{
    max-width:100%;
    order:1;
  }

  .ux-switchcase__phone{
    order:2;
    max-width:260px;
  }

  .ux-switchcase__phone img{
    max-width:260px;
  }

  .ux-switchcase__content h3{
    font-size:1.75rem;
  }

  .ux-switchcase__body p,
  .ux-switchcase__body li{
    font-size:.98rem;
  }

  .ux-switchcase__tabs{
    width:100%;
    margin-top:34px;
    overflow-x:auto;
    justify-content:flex-start;

    scrollbar-width:none;
  }

  .ux-switchcase__tabs::-webkit-scrollbar{
    display:none;
  }

  .ux-switchcase__tab{
    flex:0 0 auto;
    min-width:102px;
    min-height:50px;
    padding:8px 14px;
    font-size:.82rem;
  }
}


/* =========================================================
   UX SWITCHCASE SMOOTH IMAGE CHANGE
   Evita salto visual al cambiar tabs
========================================================= */

.ux-switchcase__phone{
  position:relative !important;

  width:100% !important;
  max-width:330px !important;
  min-height:520px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;

  overflow:visible !important;
}

.ux-switchcase__phone img{
  width:100% !important;
  max-width:330px !important;
  height:auto !important;

  display:block !important;
  object-fit:contain !important;

  opacity:1 !important;
  transform:none !important;

  transition:
    opacity .28s ease,
    transform .28s cubic-bezier(.16,1,.3,1) !important;
}

.ux-switchcase__phone img.is-changing{
  opacity:0 !important;
  transform:scale(.985) translateY(6px) !important;
}

/* Mantiene estable la caja de texto para que no empuje nada */
.ux-switchcase__content{
  min-height:330px !important;
}

.ux-switchcase__body{
  min-height:120px !important;
}

/* =========================================================
   UX SWITCHCASE SMOOTH MOBILE
========================================================= */

@media(max-width:720px){

  .ux-switchcase__phone{
    max-width:260px !important;
    min-height:430px !important;
  }

  .ux-switchcase__phone img{
    max-width:260px !important;
  }

  .ux-switchcase__content{
    min-height:auto !important;
  }

  .ux-switchcase__body{
    min-height:auto !important;
  }
}



/* =========================================================
   UX SWITCHCASE NO JUMP FIX
   Cambia texto + imagen sin salto visual
========================================================= */

.ux-switchcase__stage{
  align-items:center !important;
}

.ux-switchcase__content{
  min-height:420px !important;
  display:flex !important;
  flex-direction:column !important;
  justify-content:center !important;
}

.ux-switchcase__body{
  min-height:190px !important;
}

.ux-switchcase__phone{
  position:relative !important;
  width:100% !important;
  max-width:330px !important;
  min-height:560px !important;

  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.ux-switchcase__phone img{
  width:100% !important;
  max-width:330px !important;
  height:auto !important;

  display:block !important;
  object-fit:contain !important;

  opacity:1 !important;
  transform:none !important;

  transition:
    opacity .24s ease,
    transform .28s cubic-bezier(.16,1,.3,1) !important;
}

.ux-switchcase__phone img.is-changing{
  opacity:0 !important;
  transform:scale(.985) translateY(6px) !important;
}

.ux-switchcase__content.is-changing{
  opacity:.72 !important;
  transition:opacity .18s ease !important;
}

/* =========================================================
   UX SWITCHCASE NO ANIMATION RESET
   Mata fades/transforms que causan salto visual
========================================================= */

.ux-switchcase__phone img,
.ux-switchcase__phone img.is-changing,
.ux-switchcase__content,
.ux-switchcase__content.is-changing{
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}


/* =========================================================
   UX SWITCHCASE STABLE IMAGE BOX
   Evita salto de layout al cambiar imagen
========================================================= */

.ux-switchcase__phone{
  width: 100% !important;
  max-width: 330px !important;
  min-height: 560px !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: visible !important;
}

.ux-switchcase__phone img{
  width: 100% !important;
  max-width: 330px !important;
  height: auto !important;

  display: block !important;
  object-fit: contain !important;
}

/* Mantiene estable el bloque de texto */
.ux-switchcase__content{
  min-height: 420px !important;
}

.ux-switchcase__body{
  min-height: 190px !important;
}

@media(max-width: 720px){

  .ux-switchcase__phone{
    max-width: 260px !important;
    min-height: 430px !important;
  }

  .ux-switchcase__phone img{
    max-width: 260px !important;
  }

  .ux-switchcase__content,
  .ux-switchcase__body{
    min-height: auto !important;
  }
}


/* =========================================================
   UX SWITCHCASE REMOVE KICKER + LINE
   Quita texto "Problema" y la línea horizontal
========================================================= */

#uxSwitchKicker,
.ux-switchcase__kicker{
  display: none !important;
}

.ux-switchcase__body{
  border-top: 0 !important;
  padding-top: 0 !important;
}

.ux-switchcase__body::before,
.ux-switchcase__body::after,
.ux-switchcase__content::before,
.ux-switchcase__content::after{
  display: none !important;
  content: none !important;
}


/* =========================================================
   UX SWITCHCASE TABS RESIZE FIX
   Corrige tabs enormes al hacer resize
========================================================= */

.ux-switchcase__tabs{
  width: min(100%, 720px) !important;
  max-width: 720px !important;

  margin-left: auto !important;
  margin-right: auto !important;

  padding: 6px !important;
  gap: 6px !important;

  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

  border-radius: 20px !important;
}

.ux-switchcase__tab{
  min-width: 0 !important;
  min-height: 54px !important;

  padding: 0 14px !important;

  display: inline-flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;

  border-radius: 16px !important;

  font-size: .95rem !important;
  line-height: 1 !important;
  white-space: nowrap !important;
}

.ux-switchcase__tab-icon{
  font-size: .9rem !important;
  line-height: 1 !important;
}


/* =========================================================
   UX SWITCHCASE TABS TABLET
========================================================= */

@media(max-width: 900px){

  .ux-switchcase__tabs{
    width: 100% !important;
    max-width: 620px !important;

    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;

    padding: 5px !important;
    gap: 5px !important;
  }

  .ux-switchcase__tab{
    min-height: 48px !important;
    padding: 0 10px !important;

    font-size: .82rem !important;
    gap: 6px !important;
  }

  .ux-switchcase__tab-icon{
    font-size: .78rem !important;
  }
}

/* =========================================================
   UX SWITCHCASE TABS MOBILE
   En mobile se vuelven scroll horizontal, compactas
========================================================= */

@media(max-width: 560px){

  .ux-switchcase__tabs{
    width: 100% !important;
    max-width: 100% !important;

    display: flex !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;

    justify-content: flex-start !important;

    padding: 6px !important;
    gap: 6px !important;

    scrollbar-width: none !important;
  }

  .ux-switchcase__tabs::-webkit-scrollbar{
    display: none !important;
  }

  .ux-switchcase__tab{
    flex: 0 0 auto !important;

    min-width: 118px !important;
    min-height: 46px !important;

    padding: 0 12px !important;

    font-size: .82rem !important;
    border-radius: 14px !important;
  }
}



.center{text-align: center;
margin-top: 40px;}




/* =========================================================
   HPC MODULE IMAGES FIT 100%
   Evita que las imágenes se corten dentro de las cards
========================================================= */

.hpc-module-grid article figure,
.hpc-module-grid figure,
.hpc-module-card__media,
.hpc-module-card figure{
  width: 100% !important;

  aspect-ratio: 16 / 9 !important;
  height: auto !important;
  min-height: 0 !important;

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  overflow: hidden !important;

  background: #000 !important;
  border-radius: 28px 28px 0 0 !important;
}

.hpc-module-grid article figure img,
.hpc-module-grid figure img,
.hpc-module-card__media img,
.hpc-module-card figure img{
  width: 100% !important;
  height: 100% !important;

  display: block !important;

  object-fit: contain !important;
  object-position: center center !important;

  max-width: 100% !important;
  max-height: 100% !important;

  transform: none !important;
}




/* =========================================================
   HPC MODULE IMAGES RESPONSIVE
========================================================= */

@media(max-width: 1180px){

  .hpc-module-grid article figure,
  .hpc-module-grid figure,
  .hpc-module-card__media,
  .hpc-module-card figure{
    aspect-ratio: 16 / 10 !important;
  }
}

@media(max-width: 720px){

  .hpc-module-grid article figure,
  .hpc-module-grid figure,
  .hpc-module-card__media,
  .hpc-module-card figure{
    aspect-ratio: 4 / 3 !important;
    border-radius: 22px 22px 0 0 !important;
  }

  .hpc-module-grid article figure img,
  .hpc-module-grid figure img,
  .hpc-module-card__media img,
  .hpc-module-card figure img{
    object-fit: contain !important;
  }
}


/* =========================================================
   HPC IMPACT METRICS FINAL APPLE-LIKE
   4 columnas, sin cards, texto compacto, degradado continuo
========================================================= */

.hpc-impact{
  background:#000000 !important;
  color:#f5f5f7 !important;
  padding:clamp(54px, 5vw, 78px) 0 !important;
  overflow:hidden !important;
}

.hpc-impact .hpc-shell{
  width:min(100% - 48px, 1440px) !important;
  margin:0 auto !important;
}

/* Header */
.hpc-impact .hpc-section-head{
  margin:0 0 clamp(34px, 4vw, 48px) !important;
  text-align:center !important;
}

.hpc-impact .hpc-eyebrow{
  display:block !important;
  margin:0 !important;

  background:linear-gradient(
    90deg,
    #ff9f2f 0%,
    #ff4fa3 45%,
    #8b7cff 100%
  ) !important;

  -webkit-background-clip:text !important;
  background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
  color:transparent !important;

  font-size:.72rem !important;
  line-height:1.25 !important;
  letter-spacing:.34em !important;
  font-weight:850 !important;
  text-transform:uppercase !important;
}

/* Oculta el título grande si lo tienes */
.hpc-impact .hpc-section-head h2{
  display:none !important;
}

/* Grid */
.hpc-impact-grid{
  width:100% !important;
  max-width:1440px !important;
  margin:0 auto !important;

  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:clamp(24px, 4vw, 72px) !important;

  align-items:start !important;
}

/* Quita por completo apariencia de card */
.hpc-impact-grid article{
  padding:0 !important;
  margin:0 !important;

  min-height:0 !important;
  height:auto !important;

  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  filter:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;

  text-align:center !important;
}

/* Número base */
.hpc-impact-grid article strong{
  display:block !important;
  margin:0 0 6px !important;

  font-size:clamp(1.85rem, 3.15vw, 2rem) !important;
  line-height:1 !important;
  letter-spacing:-.045em !important;
  font-weight:800 !important;

  background:linear-gradient(
    90deg,
    #ff9f2f 0%,
    #ff4fa3 45%,
    #8b7cff 100%
  ) !important;

  background-size:400% 100% !important;

  -webkit-background-clip:text !important;
  background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
  color:transparent !important;
}

/* Hace que el degradado parezca continuo de izquierda a derecha */
.hpc-impact-grid article:nth-child(1) strong{
  background-position:0% 50% !important;
}

.hpc-impact-grid article:nth-child(2) strong{
  background-position:33% 50% !important;
}

.hpc-impact-grid article:nth-child(3) strong{
  background-position:66% 50% !important;
}

.hpc-impact-grid article:nth-child(4) strong{
  background-position:100% 50% !important;
}

/* Label */
.hpc-impact-grid article span{
  display:block !important;
  margin:0 0 4px !important;

  color:#f5f5f7 !important;

  font-size:1rem !important;
  line-height:1.18 !important;
  letter-spacing:-.01em !important;
  font-weight:750 !important;
}

/* Descripción */
.hpc-impact-grid article p{
  max-width:230px !important;
  margin:0 auto !important;

  color:#fff !important;

  font-size:1rem !important;
  line-height:1.28 !important;
  letter-spacing:-.005em !important;
  font-weight:450 !important;
}


/* =========================================================
   HPC IMPACT METRICS FINAL RESPONSIVE
========================================================= */

@media(max-width:1024px){

  .hpc-impact-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:34px 48px !important;
    max-width:760px !important;
  }

  .hpc-impact-grid article strong{
    font-size:clamp(1.5rem, 4vw, 2rem) !important;
  }

  .hpc-impact-grid article p{
    max-width:240px !important;
  }
}

@media(max-width:560px){

  .hpc-impact{
    padding:54px 0 !important;
  }

  .hpc-impact .hpc-shell{
    width:calc(100% - 28px) !important;
  }

  .hpc-impact-grid{
    grid-template-columns:1fr !important;
    gap:30px !important;
    max-width:320px !important;
  }

  .hpc-impact-grid article strong{
    font-size:2rem !important;
  }

  .hpc-impact-grid article span{
    font-size:.82rem !important;
  }

  .hpc-impact-grid article p{
    font-size:.78rem !important;
    max-width:260px !important;
  }
}


/* =========================================================
   HUB VIDEO SHOWCASE
   Video centrado en lugar del grid de módulos
========================================================= */

.hub-video-showcase{
  width:100%;
  padding:clamp(80px, 8vw, 132px) 0;
margin-bottom: -100px !important;
  color:#f5f5f7;

  overflow:hidden;
}

.hub-video-showcase,
.hub-video-showcase *{
  box-sizing:border-box;
}

.hub-video-showcase__shell{
  width:min(100% - 48px, 1440px);
  margin:0 auto;
}

.hub-video-showcase__head{
    margin-top: -90px !important;
  max-width:1460px;
  margin:0 auto clamp(42px, 5vw, 72px);

  text-align:center;
}

.hub-video-showcase__head span{
  display:block;
  margin-bottom:16px;

  color:#8b7cff;
  font-size:.72rem;
  line-height:1.3;
  letter-spacing:.34em;
  font-weight:850;
  text-transform:uppercase;
}

.hub-video-showcase__head h2{
  max-width:1440px;
  margin:0 auto 18px;

  color:#f5f5f7;
  font-size:clamp(2.6rem, 5vw, 4rem);
  line-height:1.02;
  letter-spacing:-.065em;
  font-weight:900;
}

.hub-video-showcase__head p{
  max-width:1460px;
  margin:0 auto;

  color:rgba(245,245,247,.64);
  font-size:clamp(1rem, 1.35vw, 1.22rem);
  line-height:1.52;
  letter-spacing:-.02em;
}

/* Video */
.hub-video-showcase__media{
  width:100%;
  max-width:1480px;
  margin:0 auto;

  border-radius:36px;
  overflow:hidden;

  background:#000;

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

  box-shadow:
    0 40px 120px rgba(0,0,0,.38),
    inset 0 1px 0 rgba(255,255,255,.08);
}

.hub-video-showcase__media video{
  width:100%;
  height:auto;

  display:block;

  object-fit:contain;
  object-position:center;

  background:#000;
}


/* =========================================================
   HUB VIDEO SHOWCASE RESPONSIVE
========================================================= */

@media(max-width:900px){

  .hub-video-showcase{
    padding:72px 0;
  }

  .hub-video-showcase__shell{
    width:calc(100% - 36px);
  }

  .hub-video-showcase__head{
    margin-bottom:36px;
  }

  .hub-video-showcase__head h2{
    font-size:clamp(2.25rem, 9vw, 3.3rem);
    line-height:1.04;
  }

  .hub-video-showcase__media{
    border-radius:28px;
  }
}

@media(max-width:560px){

  .hub-video-showcase{
    padding:64px 0;
  }

  .hub-video-showcase__shell{
    width:calc(100% - 28px);
  }

  .hub-video-showcase__head{
    text-align:left;
  }

  .hub-video-showcase__head h2,
  .hub-video-showcase__head p{
    margin-left:0;
    margin-right:0;
  }

  .hub-video-showcase__media{
    border-radius:22px;
  }
}



/* =========================================================
   HUB VIDEO SHOWCASE SIZE FIX
   Reduce el video y evita que se vea gigante
========================================================= */

.hub-video-showcase__media{
  width: min(100%, 860px) !important;
  max-width: 1440px !important;
  margin: 0 auto !important;

  border-radius: 28px !important;
  overflow: hidden !important;
}

.hub-video-showcase__media video{
  width: 100% !important;
  max-width: 960px !important;

  height: auto !important;
  max-height: 580px !important;

  display: block !important;

  object-fit: contain !important;
  object-position: center center !important;

  background: #000 !important;
}


/* =========================================================
   HUB VIDEO TITLE SIZE FIX
========================================================= */

.hub-video-showcase__head h2{
  font-size: clamp(2.2rem, 4vw, 3.4rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -1px !important;
}

.hub-video-showcase__head p{
  max-width: 1480px !important;
  font-size: clamp(.98rem, 1.15vw, 1.12rem) !important;
}



/* =========================================================
   HUB VIDEO REMOVE BLACK BACKGROUND
========================================================= */

.hub-video-showcase__media{
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.hub-video-showcase__media video{
  background: transparent !important;
  object-fit: contain !important;
}

/* Por si el negro viene de un wrapper interno */
.hub-video-showcase__media::before,
.hub-video-showcase__media::after{
  display: none !important;
  content: none !important;
}



/* =========================================================
   HPC INSIGHTS REMOVE SHADOWS
========================================================= */

.hpc-insights article,
.hpc-insights-card,
.hpc-insight-card{
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

/* Por si la sombra viene de pseudo-elementos */
.hpc-insights article::before,
.hpc-insights article::after,
.hpc-insights-card::before,
.hpc-insights-card::after,
.hpc-insight-card::before,
.hpc-insight-card::after{
  box-shadow: none !important;
  filter: none !important;
}

/* Deja solo borde sutil */
.hpc-insights article{
  border: 1px solid rgba(7, 22, 45, .10) !important;
  background: #ffffff !important;
}


/* =========================================================
   HPC COMPARISON INLINE SPECS
   4 items inline, estilo Apple specs, sin cards gigantes
========================================================= */

.hpc-comparison{
  background:#000 !important;
  color:#f5f5f7 !important;
  padding:clamp(64px, 7vw, 96px) 0 !important;
}

.hpc-comparison-grid{
  width:min(100% - 48px, 1280px) !important;
  margin:0 auto !important;

  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:clamp(32px, 5vw, 76px) !important;

  align-items:start !important;
}

/* Quita look de cards */
.hpc-comparison-grid article{
  position:relative !important;

  padding:0 !important;
  margin:0 !important;

  background:transparent !important;
  border:0 !important;
  border-radius:0 !important;
  box-shadow:none !important;
  filter:none !important;
  backdrop-filter:none !important;
  -webkit-backdrop-filter:none !important;

  text-align:left !important;
}

/* Iconos lineales pequeños */
.hpc-comparison-grid article::before{
  content:"" !important;
  display:block !important;

  width:34px !important;
  height:34px !important;

  margin:0 0 28px !important;

  background-repeat:no-repeat !important;
  background-position:center !important;
  background-size:contain !important;

  opacity:.95 !important;
}

/* 01 Más contextual */
.hpc-comparison-grid article:nth-child(1)::before{
  background-image:url("data:image/svg+xml,%3Csvg width='42' height='42' viewBox='0 0 42 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='6' y='7' width='30' height='28' rx='5' stroke='white' stroke-width='2.6'/%3E%3Ccircle cx='15' cy='17' r='3.2' stroke='white' stroke-width='2.6'/%3E%3Cpath d='M22 17H30' stroke='white' stroke-width='2.6' stroke-linecap='round'/%3E%3Cpath d='M13 26H29' stroke='white' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

/* 02 Más operativa */
.hpc-comparison-grid article:nth-child(2)::before{
  background-image:url("data:image/svg+xml,%3Csvg width='42' height='42' viewBox='0 0 42 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 22H25' stroke='white' stroke-width='2.8' stroke-linecap='round'/%3E%3Cpath d='M19 14L27 22L19 30' stroke='white' stroke-width='2.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3Crect x='28' y='8' width='7' height='26' rx='3.5' stroke='white' stroke-width='2.6'/%3E%3C/svg%3E") !important;
}

/* 03 Más recurrente */
.hpc-comparison-grid article:nth-child(3)::before{
  background-image:url("data:image/svg+xml,%3Csvg width='42' height='42' viewBox='0 0 42 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 12C27.8 9.9 24.9 8.7 21.8 8.7C15.3 8.7 10 14 10 20.5C10 27 15.3 32.3 21.8 32.3C26.6 32.3 30.7 29.5 32.6 25.4' stroke='white' stroke-width='2.6' stroke-linecap='round'/%3E%3Cpath d='M30 7.5V12.5H25' stroke='white' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M22 14V21L27 24' stroke='white' stroke-width='2.6' stroke-linecap='round'/%3E%3C/svg%3E") !important;
}

/* 04 Más escalable */
.hpc-comparison-grid article:nth-child(4)::before{
  background-image:url("data:image/svg+xml,%3Csvg width='42' height='42' viewBox='0 0 42 42' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='7' y='23' width='8' height='12' rx='2' stroke='white' stroke-width='2.6'/%3E%3Crect x='17' y='16' width='8' height='19' rx='2' stroke='white' stroke-width='2.6'/%3E%3Crect x='27' y='8' width='8' height='27' rx='2' stroke='white' stroke-width='2.6'/%3E%3C/svg%3E") !important;
}

/* Título */
.hpc-comparison-grid article span{
  display:block !important;
  margin:0 0 6px !important;

  color:#f5f5f7 !important;

  font-size:clamp(.98rem, 1.25vw, 1.18rem) !important;
  line-height:1.18 !important;
  letter-spacing:-.025em !important;
  font-weight:760 !important;
}

/* Descripción */
.hpc-comparison-grid article p{
  max-width:280px !important;
  margin:0 !important;

  color:rgba(245,245,247,.55) !important;

  font-size:clamp(.9rem, 1.05vw, 1rem) !important;
  line-height:1.34 !important;
  letter-spacing:-.015em !important;
  font-weight:520 !important;
}

/* =========================================================
   HPC COMPARISON INLINE SPECS RESPONSIVE
========================================================= */

@media(max-width:1024px){

  .hpc-comparison-grid{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:48px 64px !important;
    max-width:820px !important;
  }
}

@media(max-width:560px){

  .hpc-comparison{
    padding:56px 0 !important;
  }

  .hpc-comparison-grid{
    width:calc(100% - 32px) !important;
    grid-template-columns:1fr !important;
    gap:42px !important;
  }

  .hpc-comparison-grid article::before{
    width:32px !important;
    height:32px !important;
    margin-bottom:22px !important;
  }

  .hpc-comparison-grid article span{
    font-size:1.08rem !important;
  }

  .hpc-comparison-grid article p{
    max-width:320px !important;
    font-size:.96rem !important;
  }
}


/* =========================================================
   HPC COMPARISON ALIGN FIX
   Alinea iconos, títulos y textos en la misma línea visual
========================================================= */

.hpc-comparison-grid{
  align-items:start !important;
    margin-top: 40px !important;
}

/* Cada item se vuelve una mini columna con filas consistentes */
.hpc-comparison-grid article{
  display:grid !important;
  grid-template-rows:44px auto auto !important;
  align-items:start !important;

  min-height:0 !important;
  padding:0 !important;

  text-align:left !important;
}

/* Íconos alineados en la misma caja */
.hpc-comparison-grid article::before{
  grid-row:1 !important;

  width:34px !important;
  height:34px !important;

  margin:0 0 18px !important;

  align-self:start !important;
  justify-self:start !important;

  background-position:center !important;
  background-size:contain !important;
}

/* Títulos alineados todos igual */
.hpc-comparison-grid article span{
  grid-row:2 !important;

  display:block !important;
  min-height:32px !important;

  margin:0 0 1px !important;

  color:#f5f5f7 !important;
  font-size:clamp(1rem, 1.15vw, 1.14rem) !important;
  line-height:1.15 !important;
  letter-spacing:-.025em !important;
  font-weight:760 !important;
}

/* Descripciones alineadas debajo */
.hpc-comparison-grid article p{
  grid-row:3 !important;

  margin:0 !important;
  max-width:300px !important;

  color:rgba(245,245,247,.55) !important;
  font-size:clamp(.9rem, 1vw, .98rem) !important;
  line-height:1.34 !important;
  letter-spacing:-.015em !important;
  font-weight:520 !important;
}


/* =========================================================
   HPC COMPARISON ALIGN RESPONSIVE
========================================================= */

@media(max-width:1024px){

  .hpc-comparison-grid article{
    grid-template-rows:42px auto auto !important;
  }

  .hpc-comparison-grid article span{
    min-height:28px !important;
  }
}

@media(max-width:560px){

  .hpc-comparison-grid article{
    grid-template-rows:auto auto auto !important;
  }

  .hpc-comparison-grid article::before{
    margin-bottom:18px !important;
  }

  .hpc-comparison-grid article span{
    min-height:0 !important;
  }
}

/* =========================================================
   HPC VALIDATION REMOVE BACK SHADOW
========================================================= */

.hpc-validation-panel{
  box-shadow: none !important;
  filter: none !important;
  text-shadow: none !important;
}

/* Por si la sombra viene de pseudo-elementos */
.hpc-validation-panel::before,
.hpc-validation-panel::after{
  display: none !important;
  content: none !important;
  box-shadow: none !important;
  filter: none !important;
}

/* Mantiene solo borde limpio */
.hpc-validation-panel{
  border: 1px solid rgba(7, 22, 45, .10) !important;
  background: #f7f7fa !important;
}


/* =========================================================
   HPC RESEARCH APPLE CARDS
   Insights tipo Apple cards, sin sombras ni botón +
========================================================= */

.hpc-section--light .hpc-two-col{
  display:block !important;
}

.hpc-section--light .hpc-two-col > div:first-child{
  width:min(100% - 48px, 1440px) !important;
  margin:0 auto clamp(34px, 4vw, 56px) !important;
}

.hpc-section--light .hpc-two-col > div:first-child .hpc-eyebrow{
  color:#ff3b4f !important;
  font-size:.82rem !important;
  letter-spacing:.22em !important;
  font-weight:850 !important;
}

.hpc-section--light .hpc-two-col > div:first-child h2{
  max-width:1420px !important;
  margin:18px 0 0 !important;

  color:#07162d !important;
  font-size:clamp(2.1rem, 3.6vw, 3.4rem) !important;
  line-height:1.04 !important;
  letter-spacing:-.06em !important;
  font-weight:850 !important;
}

/* Grid tipo Apple */
.hpc-insights{
  width:min(100% - 48px, 1440px) !important;
  margin:0 auto !important;

  display:grid !important;
  grid-template-columns:repeat(4, minmax(0, 1fr)) !important;
  gap:20px !important;
}

/* Cards limpias */
.hpc-insights article{
  position:relative !important;

  min-height:420px !important;
  padding:34px 32px !important;

  display:flex !important;
  flex-direction:column !important;
  justify-content:flex-start !important;

  border-radius:18px !important;
  border:1px solid rgba(7,22,45,.05) !important;

  background:#f5f5f7 !important;

  box-shadow:none !important;
  filter:none !important;
  overflow:hidden !important;
}

/* Quita halos / pseudo elementos */
.hpc-insights article::before,
.hpc-insights article::after{
  display:none !important;
  content:none !important;
}

/* Label superior */
.hpc-insights article span{
  display:block !important;
  margin:0 0 16px !important;

  color:#1d1d1f !important;

  font-size:.86rem !important;
  line-height:1.25 !important;
  letter-spacing:-.01em !important;
  font-weight:700 !important;
  text-transform:none !important;
}

/* Texto principal */
.hpc-insights article p{
  max-width:100% !important;
  margin:0 !important;

  color:#1d1d1f !important;

  font-size:clamp(1.2rem, 1.55vw, 1.55rem) !important;
  line-height:1.12 !important;
  letter-spacing:-.045em !important;
  font-weight:780 !important;
}

/* Elimina cualquier botón + heredado */
.hpc-insights article button,
.hpc-insights article .plus,
.hpc-insights article .plus-button,
.hpc-insights article .card-plus,
.hpc-insights article [class*="plus"],
.hpc-insights article [class*="Plus"]{
  display:none !important;
}


/* =========================================================
   HPC RESEARCH APPLE CARDS RESPONSIVE
========================================================= */

@media(max-width:1180px){

  .hpc-insights{
    grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    gap:18px !important;
  }

  .hpc-insights article{
    min-height:300px !important;
  }
}

@media(max-width:720px){

  .hpc-section--light .hpc-two-col > div:first-child{
    width:calc(100% - 32px) !important;
    margin-bottom:28px !important;
  }

  .hpc-section--light .hpc-two-col > div:first-child h2{
    font-size:clamp(2rem, 9vw, 2.8rem) !important;
  }

  .hpc-insights{
    width:calc(100% - 32px) !important;
    grid-template-columns:1fr !important;
    gap:14px !important;
  }

  .hpc-insights article{
    min-height:220px !important;
    padding:28px 26px !important;
    border-radius:18px !important;
  }

  .hpc-insights article p{
    font-size:1.35rem !important;
    line-height:1.14 !important;
  }
}

/* =========================================================
   HPC INSIGHTS · estilo tipo Apple con imagen dentro
========================================================= */

.hpc-insights{
  display:grid;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:24px;
  align-items:stretch;
}

.hpc-insight-card{
  background:#f3f3f5;
  border:1px solid #e7e7ec;
  border-radius:28px;
  padding:30px 30px 0;
  min-height:560px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  box-shadow:none !important;
}

.hpc-insight-eyebrow{
  display:block;
  margin:0 0 20px;
  font-size:.92rem;
  font-weight:800;
  letter-spacing:.18em;
  color:#7a70ff;
  text-transform:uppercase;
}

.hpc-insight-title{
  margin:0;
  font-size:clamp(1.6rem, 1.55vw, 2.1rem);
  line-height:1.08;
  font-weight:700;
  color:#111827;
  max-width:14ch;
}

.hpc-insight-media{
  margin-top:auto;
  width:100%;
  min-height:280px;
  display:flex;
  align-items:flex-end;
  justify-content:center;
  padding-top:24px;
}

.hpc-insight-media img{
  display:block;
  width:100%;
  max-width:100%;
  height:100%;
  max-height:300px;
  object-fit:contain;
  object-position:center bottom;
}

/* Si alguna card necesita más aire arriba del visual */
.hpc-insight-card:nth-child(2) .hpc-insight-media img,
.hpc-insight-card:nth-child(4) .hpc-insight-media img{
  max-height:285px;
}

/* =========================
   TABLET
========================= */
@media (max-width: 1200px){
  .hpc-insights{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:22px;
  }

  .hpc-insight-card{
    min-height:520px;
  }

  .hpc-insight-title{
    max-width:16ch;
    font-size:clamp(1.45rem, 2vw, 1.9rem);
  }

  .hpc-insight-media{
    min-height:250px;
  }

  .hpc-insight-media img{
    max-height:270px;
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 767px){
  .hpc-insights{
    grid-template-columns:1fr;
    gap:18px;
  }

  .hpc-insight-card{
    min-height:auto;
    padding:24px 22px 0;
    border-radius:24px;
  }

  .hpc-insight-eyebrow{
    margin-bottom:16px;
    font-size:.82rem;
    letter-spacing:.16em;
  }

  .hpc-insight-title{
    font-size:clamp(1.3rem, 5vw, 1.7rem);
    max-width:100%;
  }

  .hpc-insight-media{
    min-height:220px;
    padding-top:20px;
  }

  .hpc-insight-media img{
    max-height:240px;
  }
}



/* =========================================================
   HPC INSIGHT IMAGE BOTTOM ALIGN
   Centra la imagen y la pega abajo de la card
========================================================= */

.hpc-insight-card{
  display: flex !important;
  flex-direction: column !important;
  overflow: hidden !important;
  padding-bottom: 0 !important;
}

.hpc-insight-media{
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;

  width: 100% !important;
  min-height: 300px !important;

  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;
}

.hpc-insight-media img{
  display: block !important;

  width: auto !important;
  max-width: 105% !important;
  height: auto !important;
  max-height: 340px !important;

  object-fit: contain !important;
  object-position: center bottom !important;

  margin: 0 auto !important;
  transform: translateY(0) !important;
}

/* Pega más la imagen al borde inferior */
.hpc-insight-media img{
  transform: translateY(39px) !important;
}

@media(max-width: 720px){
  .hpc-insight-media{
    min-height: 240px !important;
  }

  .hpc-insight-media img{
    max-height: 260px !important;
    max-width: 112% !important;
  }
}

/* =========================================================
   HPC INSIGHT IMAGE OPTICAL CENTER FIX
   Centra visualmente la imagen dentro de la card
========================================================= */

.hpc-insight-media{
  position: relative !important;

  width: 100% !important;
  margin-top: auto !important;
  padding: 0 !important;

  display: flex !important;
  align-items: flex-end !important;
  justify-content: center !important;

  overflow: visible !important;
}

.hpc-insight-media img{
  display: block !important;

  width: auto !important;
  max-width: 115% !important;
  max-height: 360px !important;

  object-fit: contain !important;
  object-position: center bottom !important;

  margin: 0 auto !important;

  /* Ajuste fino: mueve la imagen al centro visual */
  transform: translateX(-34px) translateY(32px) !important;
}

.hpc-insight-media img{
  transform: translateX(-48px) translateY(42px) !important;
}




/* =========================================================
   UX VALIDATION BOARD
   Dashboard de validación tipo collage premium
========================================================= */

.ux-validation-board{
  width:100%;
  padding:clamp(60px, 2vw, 132px) 0;
  background:#fff;
  color:#07162d;
  overflow:hidden;
}

.ux-validation-board,
.ux-validation-board *{
  box-sizing:border-box;
}

.ux-validation-board__shell{
  width:min(100% - 48px, 1440px);
  margin:0 auto;
}

.ux-validation-board__headline{
  max-width:1440px;
  margin:0 0 clamp(38px, 5vw, 68px);
}

.ux-validation-board__headline span{
  display:block;
  margin-bottom:18px;

  color:#ff3b4f;
  font-size:.82rem;
  line-height:1.25;
  letter-spacing:.24em;
  font-weight:850;
  text-transform:uppercase;
}

.ux-validation-board__headline h2{
  max-width:1400px;
  margin:0 0 18px;

  color:#07162d;
  font-size:clamp(3rem, 5.2vw, 4rem);
  line-height:1.02;
  letter-spacing:-.065em;
  font-weight:900;
}

.ux-validation-board__headline p{
  max-width:1440px;
  margin:0;

  color:rgba(7,22,45,.62);
  font-size:clamp(1rem, 1.25vw, 1.16rem);
  line-height:1.52;
  letter-spacing:-.018em;
}

/* Grid tipo dashboard */
.ux-validation-board__grid{
  display:grid;
  grid-template-columns:1.15fr .85fr .85fr;
  grid-template-rows:minmax(260px, auto) minmax(260px, auto);
  gap:20px;
}

/* Cards */
.ux-validation-card{
  position:relative;
  overflow:hidden;

  min-height:260px;
  padding:clamp(28px, 3vw, 42px);

  border-radius:28px;
  border:1px solid rgba(7,22,45,.08);

  background:#ffffff;

  display:flex;
  flex-direction:column;
  justify-content:space-between;

  box-shadow:none;
}

.ux-validation-card::after{
  content:"";
  position:absolute;
  inset:auto -24% -42% auto;

  width:280px;
  height:280px;

  border-radius:999px;

  background:gray
    radial-gradient(circle, rgba(255,59,79,.12), transparent 62%),
    radial-gradient(circle at 70% 40%, rgba(139,124,255,.16), transparent 58%);

  pointer-events:none;
}

/* Card grande */
.ux-validation-card--hero{
  grid-column:1;
  grid-row:1 / span 2;

  min-height:540px;

  background:
    radial-gradient(circle at 18% 14%, rgba(255,59,79,.10), transparent 34%),
    radial-gradient(circle at 80% 88%, rgba(139,124,255,.16), transparent 38%),
    #ffffff;
}

.ux-validation-card--entry{
  grid-column:2;
  grid-row:1;
}

.ux-validation-card--compact{
  grid-column:3;
  grid-row:1;
}

.ux-validation-card--nps{
  grid-column:2;
  grid-row:2;
}

.ux-validation-card--chips{
  grid-column:3;
  grid-row:2;
}

/* Textos */
.ux-validation-card__label{
  display:block;
  margin-bottom:20px;

  color:#8b7cff;
  font-size:.72rem;
  line-height:1.25;
  letter-spacing:.24em;
  font-weight:850;
  text-transform:uppercase;
}

.ux-validation-card strong{
  display:block;
  margin:0 0 18px;

  background:linear-gradient(
    90deg,
    #ff3b4f 0%,
    #ff4fa3 48%,
    #8b7cff 100%
  );

  -webkit-background-clip:text;
  background-clip:text;
  -webkit-text-fill-color:transparent;
  color:transparent;

  font-size:clamp(2.7rem, 6vw, 5.2rem);
  line-height:.9;
  letter-spacing:-.075em;
  font-weight:900;
}

.ux-validation-card h3{
  max-width:520px;
  margin:0 0 14px;

  color:#07162d;
  font-size:clamp(1.35rem, 2vw, 2rem);
  line-height:1.06;
  letter-spacing:-.05em;
  font-weight:850;
}

.ux-validation-card p{
  max-width:520px;
  margin:0;

  color:rgba(7,22,45,.62);
  font-size:clamp(.96rem, 1.1vw, 1.08rem);
  line-height:1.45;
  letter-spacing:-.015em;
}

.ux-validation-card--hero h3{
  font-size:clamp(1.8rem, 3vw, 2.7rem);
}

.ux-validation-card--hero p{
  font-size:clamp(1.02rem, 1.25vw, 1.18rem);
}

/* Chips */
.ux-validation-chip-list{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  align-content:flex-start;
}

.ux-validation-chip-list span{
  display:inline-flex;
  align-items:center;
  justify-content:center;

  min-height:38px;
  padding:0 15px;

  border-radius:999px;
  border:1px solid rgba(7,22,45,.10);
  background:#f5f5f7;

  color:#07162d;

  font-size:.82rem;
  line-height:1;
  letter-spacing:-.01em;
  font-weight:760;
  white-space:nowrap;
}



/* =========================================================
   UX VALIDATION BOARD TABLET
========================================================= */

@media(max-width:1100px){

  .ux-validation-board__grid{
    grid-template-columns:1fr 1fr;
    grid-template-rows:auto;
  }

  .ux-validation-card--hero{
    grid-column:1 / -1;
    grid-row:auto;

    min-height:360px;
  }

  .ux-validation-card--entry,
  .ux-validation-card--compact,
  .ux-validation-card--nps,
  .ux-validation-card--chips{
    grid-column:auto;
    grid-row:auto;
  }

  .ux-validation-card strong{
    font-size:clamp(2.5rem, 7vw, 4.4rem);
  }
}


/* =========================================================
   UX VALIDATION BOARD MOBILE
========================================================= */

@media(max-width:720px){

  .ux-validation-board{
    padding:64px 0;
  }

  .ux-validation-board__shell{
    width:calc(100% - 28px);
  }

  .ux-validation-board__headline{
    margin-bottom:32px;
  }

  .ux-validation-board__headline h2{
    font-size:clamp(2.4rem, 11vw, 3.25rem);
    line-height:1.04;
  }

  .ux-validation-board__grid{
    grid-template-columns:1fr;
    gap:14px;
  }

  .ux-validation-card{
    min-height:auto;
    padding:28px 24px;
    border-radius:24px;
  }

  .ux-validation-card--hero{
    min-height:auto;
  }

  .ux-validation-card strong{
    font-size:3.2rem;
  }

  .ux-validation-card h3,
  .ux-validation-card--hero h3{
    font-size:1.55rem;
    line-height:1.08;
  }

  .ux-validation-chip-list{
    gap:8px;
  }

  .ux-validation-chip-list span{
    min-height:34px;
    padding:0 13px;
    font-size:.78rem;
  }
}


/* =========================================================
   UX VALIDATION BOARD · GREY CARDS + SOFT HOVER
   Cards grisesitas tipo Apple, hover como primera card
========================================================= */

.ux-validation-board{
  background:#f5f5f7 !important;
}

/* Todas las cards grisesitas */
.ux-validation-card{
  background:
    linear-gradient(180deg, #f3f3f6 0%, #eeeeF2 100%) !important;

  border:1px solid rgba(7, 22, 45, .08) !important;
  box-shadow:none !important;

  transition:
    transform .28s cubic-bezier(.16, 1, .3, 1),
    border-color .28s ease,
    background .28s ease,
    box-shadow .28s ease !important;
}

/* Quita el glow fijo para que no ensucie */
.ux-validation-card::after{
  opacity:0 !important;
  transition:opacity .28s ease !important;
}

/* Hover elegante tipo primera card */
.ux-validation-card:hover{
  transform:translateY(-4px) !important;

  background:
    radial-gradient(circle at 0% 0%, rgba(255, 59, 79, .10), transparent 36%),
    radial-gradient(circle at 100% 100%, rgba(139, 124, 255, .13), transparent 42%),
    linear-gradient(180deg, #f8f8fb 0%, #f1f1f5 100%) !important;

  border-color:rgba(255, 79, 163, .22) !important;

  box-shadow:
    0 22px 60px rgba(7, 22, 45, .08),
    0 0 0 1px rgba(255, 255, 255, .72) inset !important;
}

.ux-validation-card:hover::after{
  opacity:1 !important;
}

/* Números con glow más controlado, no gigante */
.ux-validation-card strong{
  background:linear-gradient(
    90deg,
    #ff3b4f 0%,
    #ff4fa3 48%,
    #8b7cff 100%
  ) !important;

  -webkit-background-clip:text !important;
  background-clip:text !important;
  -webkit-text-fill-color:transparent !important;
  color:transparent !important;

  filter:none !important;
}

/* Textos más finos y consistentes */
.ux-validation-card h3{
  color:#07162d !important;
}

.ux-validation-card p{
  color:rgba(7, 22, 45, .62) !important;
}

/* Card grande igual gris, no blanca */
.ux-validation-card--hero{
  background:
    radial-gradient(circle at 0% 0%, rgba(255, 59, 79, .08), transparent 34%),
    radial-gradient(circle at 100% 100%, rgba(139, 124, 255, .10), transparent 38%),
    linear-gradient(180deg, #f6f6f9 0%, #f0f0f4 100%) !important;
}