.qp-hiwd{
  position: relative;
  padding: 80px 0;
  --qp-section-bg: var(--color-surface, #001220);
  --qp-hiwd-accent: var(--color-primary, #FF6F61);
  --qp-hiwd-accent-2: var(--color-secondary, #c72482);
  background: var(--qp-section-bg);
  color: #fff;
  overflow: visible;
}

.qp-hiwd__inner{
  position: relative;
  z-index: 1;
}

.qp-hiwd__grid{
  --qp-hiwd-gap: clamp(20px, 2.5vw, 28px);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--qp-hiwd-gap);
  align-items: start;
}

.qp-hiwd__top{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--qp-hiwd-gap);
  align-items: stretch;
}

.qp-hiwd__left{
  position: relative;
  grid-column: 1 / span 2;
  width: 100%;
  max-width: none;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(255, 111, 97, 0.18);
  border-top: 3px solid var(--qp-hiwd-accent);
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(8px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.24);
}

.qp-hiwd__aside{
  grid-column: 3;
  min-width: 0;
  display: flex;
}

.qp-hiwd__aside .qp-hiwd__step{
  width: 100%;
  height: 100%;
}

.qp-hiwd__title{
  margin: 0 0 18px;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(28px, 3.2vw, 48px);
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1.1;
}

.qp-hiwd__title p{
  margin: 0 0 0.28em;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  color: inherit;
}

.qp-hiwd__title p:last-child{
  margin-bottom: 0;
}

.qp-hiwd__title > *:first-child{
  margin-top: 0;
}

.qp-hiwd__intro{
  position: relative;
  max-width: none;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  line-height: 1.65;
}

.qp-hiwd__intro p,
.qp-hiwd__intro ul,
.qp-hiwd__intro ol{
  margin: 0 0 1em;
}

.qp-hiwd__intro p:last-child,
.qp-hiwd__intro ul:last-child,
.qp-hiwd__intro ol:last-child{
  margin-bottom: 0;
}

.qp-hiwd__intro ul,
.qp-hiwd__intro ol{
  padding-left: 1.25em;
}

.qp-hiwd__intro a{
  color: var(--qp-hiwd-accent);
  text-decoration: underline;
}

.qp-hiwd__intro a:hover{
  filter: brightness(1.08);
}

.qp-hiwd__right{
  min-width: 0;
  display: grid;
  gap: var(--qp-hiwd-gap);
}

.qp-hiwd__steps{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--qp-hiwd-gap);
  border: 0;
  background: transparent;
}

.qp-hiwd__step{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding: 22px 20px 24px;
  text-align: left;
  border: 1px solid rgba(255, 111, 97, 0.18);
  border-top: 3px solid #ff6f61;
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

.qp-hiwd__step--alt{
  border-top-color: #c72482;
  border-color: rgba(199, 36, 130, 0.18);
}

.qp-hiwd__step:last-child{
  border-bottom: 1px solid rgba(255, 111, 97, 0.18);
}

.qp-hiwd__step--alt:last-child{
  border-bottom-color: rgba(199, 36, 130, 0.18);
}

.qp-hiwd__step:hover{
  border-color: rgba(255, 111, 97, 0.34);
  background: rgba(255, 111, 97, 0.05);
}

.qp-hiwd__step--alt:hover{
  border-color: rgba(199, 36, 130, 0.34);
  background: rgba(199, 36, 130, 0.05);
}

.qp-hiwd__step-index{
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.qp-hiwd__step-num{
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: clamp(36px, 4vw, 42px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ff6f61;
}

.qp-hiwd__step--alt .qp-hiwd__step-num{
  color: #c72482;
}

.qp-hiwd__step-line{
  flex: 1 1 auto;
  height: 2px;
  background: linear-gradient(90deg, rgba(255, 111, 97, 0.55) 0%, rgba(255, 111, 97, 0) 100%);
}

.qp-hiwd__step--alt .qp-hiwd__step-line{
  background: linear-gradient(90deg, rgba(199, 36, 130, 0.55) 0%, rgba(199, 36, 130, 0) 100%);
}

.qp-hiwd__step-title{
  margin: 0;
  font-family: "Oswald", "Arial Narrow", sans-serif;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.25;
  color: #fff;
  text-transform: uppercase;
}

.qp-hiwd__step-desc{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.78);
}

.qp-hiwd__step-desc p{
  margin: 0 0 0.75em;
}

.qp-hiwd__step-desc p:last-child{
  margin-bottom: 0;
}

@media (max-width: 900px){
  .qp-hiwd__grid{
    --qp-hiwd-gap: 24px;
  }

  .qp-hiwd__top{
    grid-template-columns: 1fr;
  }

  .qp-hiwd__left,
  .qp-hiwd__aside{
    grid-column: 1;
  }

  .qp-hiwd__left{
    width: 100%;
    padding: 22px 20px 24px;
  }

  .qp-hiwd__steps{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px){
  .qp-hiwd__steps{
    grid-template-columns: 1fr;
  }

  .qp-hiwd__step{
    padding: 18px 16px 20px;
  }

  .qp-hiwd__step-num{
    font-size: 36px;
  }
}
