:root{
  --hcpx-navy: var(--brand-navy, #121A41);
  --hcpx-red: rgba(153, 1, 1, .95);
  --hcpx-ink: var(--ink, #0f172a);
  --hcpx-muted: var(--muted, #475569);
  --hcpx-line: var(--line, #e2e8f0);
  --hcpx-surface: rgba(255,255,255,.92);
  --hcpx-surface-2: #f7fafc;
  --hcpx-shadow: 0 18px 44px rgba(2, 6, 23, .10);
  --hcpx-shadow-strong: 0 32px 80px rgba(2, 6, 23, .18);
  --hcpx-radius: 28px;
  --hcpx-radius-sm: 18px;
  --hcpx-shell: min(1320px, calc(100% - 48px));
  --hcpx-focus: 0 0 0 4px rgba(18, 26, 65, .16);
}

.hcpx-page{
  position: relative;
  background:
    radial-gradient(820px 260px at 14% 0%, rgba(18,26,65,.06), transparent 60%),
    radial-gradient(820px 260px at 86% 0%, rgba(153,1,1,.05), transparent 65%),
    linear-gradient(180deg, #fff, #fbfdff 44%, #fff 100%);
  color: var(--hcpx-ink);
}

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

.hcpx-skip-link{
  position: absolute;
  left: -999px;
  top: 14px;
  z-index: 9999;
  background: var(--hcpx-navy);
  color: #fff;
  padding: 10px 14px;
  border-radius: 12px;
}
.hcpx-skip-link:focus{
  left: 14px;
  outline: none;
  box-shadow: var(--hcpx-focus);
}

.hcpx-kicker{
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.74);
}
.hcpx-kicker--soft{
  color: #0063d1;
}

.hcpx-btn{
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  border-radius: 18px;
  border: 1px solid transparent;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background-color .18s ease;
}
.hcpx-btn:focus{
  outline: none;
  box-shadow: var(--hcpx-focus);
}
.hcpx-btn:hover{
  transform: translateY(-2px);
}

.hctx-btn--primary{
  background: linear-gradient(180deg, #182257, #121A41 60%, #101837);
  color: #fff;
  box-shadow: 0 14px 30px rgba(18,26,65,.24);
}
.hctx-btn--primary:hover{
  box-shadow: 0 18px 36px rgba(18,26,65,.30);
}

.hctx-btn--ghost{
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.94));
  color: var(--hcpx-navy);
  border-color: rgba(18,26,65,.14);
  box-shadow: 0 10px 24px rgba(2,6,23,.06);
}
.hctx-btn--ghost:hover{
  border-color: rgba(18,26,65,.22);
  background: #eef2f7;
}

.hctx-btn--whatsapp{
  background: linear-gradient(180deg, #13a24b, #0f8d40 60%, #0c7536);
  color: #fff;
  box-shadow: 0 14px 30px rgba(19,162,75,.22);
}
.hctx-btn--whatsapp:hover{
  box-shadow: 0 18px 36px rgba(19,162,75,.28);
}

.hcpx-hero{
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hcpx-hero__media{
  position: absolute;
  inset: 0;
}

.hcpx-hero__video,
.hcpx-hero__fallback{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hcpx-hero__fallback{
  display: none;
}

.hcpx-hero__overlay{
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8,12,28,.70) 0%, rgba(8,12,28,.54) 42%, rgba(8,12,28,.36) 100%),
    linear-gradient(180deg, rgba(18,26,65,.20), rgba(153,1,1,.10));
  backdrop-filter: blur(2px);
}

.hcpx-hero__grid{
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.06fr .94fr;
  gap: 24px;
  align-items: center;
  width: 100%;
  padding: 48px 0;
}

.hcpx-hero__copy h1{
  margin: 0 0 16px;
  color: #fff;
  font-size: clamp(38px, 4.8vw, 72px);
  line-height: .98;
  letter-spacing: -.05em;
  max-width: 11ch;
}

.hcpx-hero__lead{
  margin: 0;
  color: rgba(255,255,255,.88);
  font-size: 18px;
  line-height: 1.7;
  max-width: 54ch;
}

.hcpx-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.hcpx-hero__points{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}
.hcpx-hero__points span{
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.08);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.hcpx-heroCard{
  position: relative;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(16px);
  box-shadow: var(--hcpx-shadow-strong);
  color: #fff;
}

.hcpx-heroCard h2{
  margin: 0;
  font-size: 32px;
  line-height: 1.02;
  letter-spacing: -.03em;
  color: white; 
}

.hcpx-quickList{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.hcpx-quickItem{
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.08);
  transition:
    transform .18s ease,
    background-color .18s ease,
    border-color .18s ease;
}
.hcpx-quickItem:hover{
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.18);
}

.hcpx-quickItem__icon{
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.14);
}
.hcpx-quickItem__icon svg{
  width: 22px;
  height: 22px;
}

.hcpx-quickItem__text{
  display: grid;
  gap: 4px;
}
.hcpx-quickItem__text small{
  color: rgba(255,255,255,.72);
  font-size: 12px;
}
.hcpx-quickItem__text strong{
  color: #fff;
  font-size: 15px;
}

.hcpx-heroCard__foot{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.hcpx-heroCard__foot p{
  margin: 0;
  font-size: 13px;
  color: rgba(255,255,255,.82);
}
.hcpx-statusDot{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #13a24b;
  box-shadow: 0 0 0 6px rgba(19,162,75,.14);
}

.hcpx-formSection{
  position: relative;
  margin-top: -56px;
  z-index: 2;
  padding: 0 0 34px;
}

.hcpx-formWrap{
  display: grid;
  grid-template-columns: .88fr 1.12fr;
  gap: 22px;
  align-items: start;
}

.hcpx-formIntro,
.hcpx-formCard,
.hcpx-channelCard,
.hcpx-faqItem{
  border-radius: 28px;
  border: 1px solid rgba(18,26,65,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.97), rgba(248,250,252,.95));
  box-shadow: var(--hcpx-shadow);
}

.hcpx-formIntro{
  padding: 24px;
}

.hcpx-formIntro h2{
  margin: 0 0 10px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
  letter-spacing: -.04em;
  color: var(--hcpx-navy);
  max-width: 10ch;
}

.hcpx-formIntro p{
  margin: 0;
  color: var(--hcpx-muted);
  line-height: 1.7;
}

.hcpx-miniSteps{
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.hcpx-miniStep{
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 20px;
  border: 1px solid rgba(18,26,65,.08);
  background: rgba(255,255,255,.72);
}
.hcpx-miniStep span{
  width: 50px;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  color: var(--hcpx-navy);
  font-weight: 900;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.94));
  border: 1px solid rgba(18,26,65,.08);
}
.hcpx-miniStep strong{
  color: var(--hcpx-navy);
  font-size: 15px;
}

.hcpx-formCard{
  padding: 24px;
}

.hcpx-formCard__top{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
}

.hcpx-formCard__top h3{
  margin: 0;
  color: var(--hcpx-navy);
  font-size: 30px;
  line-height: 1.04;
  letter-spacing: -.03em;
}

.hcpx-formBadge{
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(18,26,65,.06);
  color: var(--hcpx-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hcpx-formReal{
  display: grid;
  gap: 18px;
}

.hcpx-formGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.hcpx-field{
  display: grid;
  gap: 8px;
}

.hcpx-field--full{
  grid-column: 1 / -1;
}

.hcpx-field label{
  font-size: 13px;
  font-weight: 800;
  color: var(--hcpx-navy);
}

.hcpx-input,
.hcpx-select,
.hcpx-textarea{
  width: 100%;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--hcpx-line);
  background: #fff;
  color: var(--hcpx-ink);
  transition:
    border-color .16s ease,
    box-shadow .16s ease;
}
.hcpx-input:focus,
.hcpx-select:focus,
.hcpx-textarea:focus{
  outline: none;
  border-color: rgba(18,26,65,.30);
  box-shadow: var(--hcpx-focus);
}
.hcpx-textarea{
  resize: vertical;
  min-height: 140px;
}

.hcpx-formActions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hcpx-submit{
  appearance: none;
  cursor: pointer;
  border: 0;
}

.hcpx-channelSection{
  padding: 12px 0 34px;
}

.hcpx-sectionHead{
  margin-bottom: 18px;
}
.hcpx-sectionHead h2{
  margin: 0;
  color: var(--hcpx-navy);
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
  letter-spacing: -.04em;
}

.hcpx-channelGrid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.hcpx-channelCard{
  padding: 22px;
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease;
}
.hcpx-channelCard:hover{
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(2,6,23,.10);
  border-color: rgba(18,26,65,.16);
}

.hcpx-channelCard__icon{
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  color: var(--hcpx-navy);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.94));
  border: 1px solid rgba(18,26,65,.08);
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
  margin-bottom: 16px;
}
.hcpx-channelCard__icon svg{
  width: 22px;
  height: 22px;
}

.hcpx-channelCard h3{
  margin: 0 0 10px;
  color: var(--hcpx-navy);
  font-size: 24px;
  line-height: 1.06;
}
.hcpx-channelCard p{
  margin: 0 0 14px;
  color: var(--hcpx-muted);
  line-height: 1.65;
}

.hcpx-linkArrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--hcpx-navy);
  font-weight: 800;
  text-decoration: none;
}
.hcpx-linkArrow::after{
  content: "→";
  transition: transform .16s ease;
}
.hcpx-linkArrow:hover::after{
  transform: translateX(3px);
}

/* ==========================================================
   FAQ SOLO / PREMIUM REVEAL TOP
   ========================================================== */

.hcpx-faqSection{
  position: relative;
  padding: 10px 0 56px;
  overflow: hidden;
}

.hcpx-faqSection::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 180px at 12% 0%, rgba(18,26,65,.05), transparent 60%),
    radial-gradient(520px 180px at 88% 100%, rgba(153,1,1,.04), transparent 60%);
  pointer-events: none;
}

.hcpx-faqSolo{
  position: relative;
  z-index: 1;
  width: min(980px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 16px;
}

.hcpx-faqItem{
  position: relative;
  border-radius: 26px;
  border: 1px solid rgba(18,26,65,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  box-shadow: 0 16px 34px rgba(2,6,23,.07);
  overflow: hidden;
  opacity: 0;
  transform: translateY(34px) scale(.98);
  transition:
    opacity .65s ease,
    transform .65s cubic-bezier(.22,.85,.25,1),
    box-shadow .22s ease,
    border-color .22s ease,
    background-color .22s ease;
  will-change: transform, opacity;
}

.hcpx-faqItem::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(320px 120px at 0% 0%, rgba(18,26,65,.04), transparent 60%),
    radial-gradient(320px 120px at 100% 100%, rgba(153,1,1,.04), transparent 60%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.hcpx-faqItem.in-view{
  opacity: 1;
  transform: translateY(0) scale(1);
}

.hcpx-faqItem:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 48px rgba(2,6,23,.11);
  border-color: rgba(18,26,65,.16);
}

.hcpx-faqItem:hover::before{
  opacity: 1;
}

.hcpx-faqItem.is-open{
  border-color: rgba(18,26,65,.14);
  box-shadow: 0 24px 52px rgba(2,6,23,.10);
}

.hcpx-faqButton{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--hcpx-navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
  transition: color .18s ease;
}

.hcpx-faqButton span:first-child{
  max-width: 90%;
}

.hcpx-faqIcon{
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.hcpx-faqIcon::before,
.hcpx-faqIcon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--hcpx-navy);
  transform: translate(-50%, -50%);
  transition:
    transform .22s ease,
    opacity .22s ease,
    background-color .22s ease;
}

.hcpx-faqIcon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

.hcpx-faqItem:hover .hcpx-faqIcon::before,
.hcpx-faqItem:hover .hcpx-faqIcon::after{
  background: rgba(153,1,1,.88);
}

.hcpx-faqItem.is-open .hcpx-faqIcon::after{
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(.3);
}

.hcpx-faqPanel{
  display: none;
  padding: 0 26px 24px;
}

.hcpx-faqPanel p{
  margin: 0;
  max-width: 74ch;
  color: var(--hcpx-muted);
  font-size: 15px;
  line-height: 1.75;
}

/* delays progresivos */
.hcpx-faqSolo .hcpx-faqItem:nth-child(1){ transition-delay: .03s; }
.hcpx-faqSolo .hcpx-faqItem:nth-child(2){ transition-delay: .10s; }
.hcpx-faqSolo .hcpx-faqItem:nth-child(3){ transition-delay: .17s; }
.hcpx-faqSolo .hcpx-faqItem:nth-child(4){ transition-delay: .24s; }
.hcpx-faqSolo .hcpx-faqItem:nth-child(5){ transition-delay: .31s; }
.hcpx-faqSolo .hcpx-faqItem:nth-child(6){ transition-delay: .38s; }

@media (max-width: 860px){
  .hcpx-faqSection{
    padding: 0 0 42px;
  }

  .hcpx-faqSolo{
    gap: 12px;
  }

  .hcpx-faqItem{
    border-radius: 22px;
  }

  .hcpx-faqButton{
    padding: 20px 18px;
    font-size: 16px;
    gap: 14px;
  }

  .hcpx-faqButton span:first-child{
    max-width: 85%;
  }

  .hcpx-faqPanel{
    padding: 0 18px 18px;
  }

  .hcpx-faqPanel p{
    font-size: 14px;
    line-height: 1.7;
  }
}

@media (max-width: 560px){
  .hcpx-hero__points{
    display: grid;
    grid-template-columns: 1fr;
  }

  .hcpx-formCard__top{
    flex-direction: column;
    align-items: flex-start;
  }
}

.hcpx-formSection{
  position: relative;
  margin-top: -56px;
  z-index: 2;
  padding: 0 0 40px;
}

.hcpx-formSection{
  position: relative;
  margin-top: -56px;
  z-index: 8;
  padding: 24px 0 44px;
}

.hcpx-formStage{
  position: relative;
  isolation: isolate;
  padding-top: 42px;
  overflow: visible;
}

.hcpx-formAura{
  position: absolute;
  border-radius: 999px;
  filter: blur(70px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}

.hcpx-formAura--one{
  width: 260px;
  height: 260px;
  top: 70px;
  left: -40px;
  background: rgba(18,26,65,.12);
}

.hcpx-formAura--two{
  width: 280px;
  height: 280px;
  right: -20px;
  bottom: 10px;
  background: rgba(153,1,1,.10);
}

.hcpx-floatCard{
  position: absolute;
  z-index: 6;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  color: var(--hcpx-navy);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow:
    0 14px 30px rgba(2,6,23,.10),
    inset 0 1px 0 rgba(255,255,255,.65);
  animation: hcpxFloatLoop 6s ease-in-out infinite;
  white-space: nowrap;
}

.hcpx-floatCard span{
  position: relative;
  z-index: 1;
}

.hcpx-floatCard--one{
  top: 0;
  left: 28px;
}

.hcpx-floatCard--two{
  top: 96px;
  right: 26px;
  animation-delay: 1.2s;
}

.hcpx-floatCard--three{
  bottom: 18px;
  left: 42%;
  animation-delay: 2.2s;
}


@keyframes hcpxFloatLoop{
  0%,100%{ transform: translateY(0); }
  50%{ transform: translateY(-10px); }
}

.hcpx-formWrap--premium{
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: .84fr 1.16fr;
  gap: 22px;
  align-items: stretch;
}

.hcpx-formIntro--premium{
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(18,26,65,.10);
  background:
    radial-gradient(360px 140px at 100% 0%, rgba(153,1,1,.05), transparent 60%),
    radial-gradient(360px 140px at 0% 100%, rgba(18,26,65,.06), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  box-shadow: 0 22px 52px rgba(2,6,23,.08);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.hcpx-formIntro--premium:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 62px rgba(2,6,23,.12);
  border-color: rgba(18,26,65,.14);
}

.hcpx-formCard--premium{
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 30px;
  border: 1px solid rgba(18,26,65,.10);
  background:
    radial-gradient(420px 140px at 0% 0%, rgba(18,26,65,.04), transparent 60%),
    radial-gradient(360px 140px at 100% 100%, rgba(153,1,1,.04), transparent 60%),
    linear-gradient(180deg, rgba(255,255,255,.99), rgba(248,250,252,.97));
  box-shadow: 0 24px 56px rgba(2,6,23,.10);
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.hcpx-formCard--premium:hover{
  transform: translateY(-4px);
  box-shadow: 0 32px 68px rgba(2,6,23,.14);
  border-color: rgba(18,26,65,.14);
}

.hcpx-guideSteps{
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.hcpx-guideStep{
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(18,26,65,.08);
  background: rgba(255,255,255,.74);
  transition:
    transform .18s ease,
    box-shadow .18s ease,
    border-color .18s ease,
    background-color .18s ease;
}

.hcpx-guideStep:hover{
  transform: translateY(-3px);
  box-shadow: 0 16px 28px rgba(2,6,23,.08);
  border-color: rgba(18,26,65,.16);
}

.hcpx-guideStep.is-active{
  border-color: rgba(153,1,1,.18);
  background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(250,246,246,.94));
}

.hcpx-guideStep__num{
  width: 52px;
  height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 17px;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.94));
  border: 1px solid rgba(18,26,65,.08);
  color: var(--hcpx-navy);
  font-size: 16px;
  font-weight: 900;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
}

.hcpx-guideStep__copy{
  display: grid;
  gap: 4px;
}

.hcpx-guideStep__copy strong{
  color: var(--hcpx-navy);
  font-size: 15px;
}

.hcpx-guideStep__copy small{
  color: var(--hcpx-muted);
  font-size: 13px;
  line-height: 1.45;
}

.hcpx-formTrust{
  display: grid;
  gap: 12px;
  margin-top: 22px;
}

.hcpx-formTrust__item{
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(18,26,65,.08);
  background: rgba(255,255,255,.68);
}

.hcpx-formTrust__item strong{
  display: block;
  margin-bottom: 4px;
  color: var(--hcpx-navy);
  font-size: 15px;
}

.hcpx-formTrust__item span{
  display: block;
  color: var(--hcpx-muted);
  font-size: 13px;
  line-height: 1.45;
}

.hcpx-formCard--premium{
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(18,26,65,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  box-shadow: 0 24px 56px rgba(2,6,23,.10);
}

.hcpx-formCard--premium::before{
  content:"";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(420px 140px at 0% 0%, rgba(18,26,65,.04), transparent 60%),
    radial-gradient(360px 140px at 100% 100%, rgba(153,1,1,.04), transparent 60%);
  pointer-events: none;
}

.hcpx-formCard__top--premium{
  position: relative;
  z-index: 1;
  margin-bottom: 16px;
}

.hcpx-formProgress{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 8px;
  border-radius: 999px;
  background: rgba(18,26,65,.08);
  overflow: hidden;
  margin-bottom: 20px;
}

.hcpx-formProgress__bar{
  display: block;
  width: 72%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(18,26,65,.92),
    rgba(153,1,1,.72)
  );
  box-shadow:
    0 0 20px rgba(18,26,65,.12),
    0 0 16px rgba(153,1,1,.10);
}

.hcpx-formReal{
  position: relative;
  z-index: 1;
}

.hcpx-formGrid{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.hcpx-field{
  display: grid;
  gap: 9px;
}

.hcpx-field label{
  font-size: 13px;
  font-weight: 800;
  color: var(--hcpx-navy);
}

.hcpx-input,
.hcpx-select,
.hcpx-textarea{
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(18,26,65,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,251,253,.96));
  color: var(--hcpx-ink);
  transition:
    transform .16s ease,
    border-color .16s ease,
    box-shadow .16s ease,
    background-color .16s ease;
}

.hcpx-input:hover,
.hcpx-select:hover,
.hcpx-textarea:hover{
  transform: translateY(-1px);
  border-color: rgba(18,26,65,.18);
  box-shadow: 0 10px 20px rgba(2,6,23,.05);
}

.hcpx-input:focus,
.hcpx-select:focus,
.hcpx-textarea:focus{
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(18,26,65,.28);
  box-shadow:
    0 0 0 4px rgba(18,26,65,.08),
    0 14px 26px rgba(2,6,23,.08);
  background: #fff;
}

.hcpx-textarea{
  min-height: 150px;
  resize: vertical;
}

.hcpx-formActions--premium{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hcpx-formActions--premium .hcpx-btn,
.hcpx-formActions--premium .hcpx-submit{
  min-width: 220px;
}

.hcpx-submit{
  appearance: none;
  cursor: pointer;
  border: 0;
}

@media (max-width: 1180px){
  .hcpx-formWrap--premium{
    grid-template-columns: 1fr;
  }

  .hcpx-formIntro--premium h2{
    max-width: none;
  }
}

@media (max-width: 860px){
  .hcpx-floatCard{
    display: none;
  }

  .hcpx-formSection{
    margin-top: -20px;
  }

  .hcpx-formIntro--premium,
  .hcpx-formCard--premium{
    padding: 20px;
    border-radius: 24px;
  }

  .hcpx-formGrid{
    grid-template-columns: 1fr;
  }

  .hcpx-formActions--premium{
    flex-direction: column;
  }

  .hcpx-formActions--premium .hcpx-btn,
  .hcpx-formActions--premium .hcpx-submit{
    width: 100%;
    min-width: 0;
  }
}

/* ==========================================================
   FIX FORM ICONS + PREMIUM INPUT LAYOUT
   ========================================================== */

.hcpx-inputWrap{
  position: relative;
  display: flex;
  align-items: center;
}

.hcpx-inputIcon{
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  color: rgba(18,26,65,.58);
  pointer-events: none;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.hcpx-inputIcon--top{
  top: 18px;
  transform: none;
}

.hcpx-inputIcon svg{
  width: 20px !important;
  height: 20px !important;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px !important;
  max-height: 20px !important;
  display: block;
  flex: 0 0 20px;
}

.hcpx-input--icon{
  padding-left: 50px !important;
}

.hcpx-textarea.hcpx-input--icon{
  padding-top: 14px;
  padding-left: 50px !important;
}

.hcpx-select.hcpx-input--icon{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(18,26,65,.55) 50%),
    linear-gradient(135deg, rgba(18,26,65,.55) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 46px;
}

.hcpx-field{
  min-width: 0;
}

.hcpx-input,
.hcpx-select,
.hcpx-textarea{
  font-size: 15px;
  line-height: 1.35;
}

.hcpx-helpText{
  display: block;
  margin-top: 6px;
  color: var(--hcpx-muted);
  font-size: 12px;
  line-height: 1.45;
}

/* Mejora visual de chips */
.hcpx-intentChips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hcpx-intentChip{
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18,26,65,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.94));
  color: var(--hcpx-navy);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    color .18s ease;
}

.hcpx-intentChip:hover{
  transform: translateY(-2px);
  border-color: rgba(18,26,65,.22);
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
}

.hcpx-intentChip.is-active{
  background: linear-gradient(180deg, #182257, #121A41 60%, #101837);
  color: #fff;
  border-color: rgba(18,26,65,.18);
  box-shadow: 0 12px 24px rgba(18,26,65,.16);
}

/* progreso */
.hcpx-formProgressMeta{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.hcpx-formProgressMeta small{
  color: var(--hcpx-muted);
  font-size: 12px;
  line-height: 1.4;
}

/* hover premium extra */
.hcpx-formCard--premium{
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.hcpx-formCard--premium:hover{
  transform: translateY(-4px);
  box-shadow: 0 28px 60px rgba(2,6,23,.12);
  border-color: rgba(18,26,65,.14);
}

.hcpx-formIntro--premium{
  transition:
    transform .24s ease,
    box-shadow .24s ease,
    border-color .24s ease;
}

.hcpx-formIntro--premium:hover{
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(2,6,23,.10);
  border-color: rgba(18,26,65,.14);
}

/* responsive */
@media (max-width: 860px){
  .hcpx-intentChips{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hcpx-inputIcon{
    left: 14px;
  }

  .hcpx-input--icon{
    padding-left: 46px !important;
  }

  .hcpx-textarea.hcpx-input--icon{
    padding-left: 46px !important;
  }
}

.hcpx-inputWrap{
  position: relative;
  display: flex;
  align-items: center;
}

.hcpx-inputIcon{
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  border-radius: 10px;
  background: linear-gradient(180deg, rgba(18,26,65,.06), rgba(18,26,65,.03));
  border: 1px solid rgba(18,26,65,.08);
  color: rgba(18,26,65,.60);
  pointer-events: none;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    transform .18s ease,
    background-color .18s ease,
    border-color .18s ease,
    color .18s ease,
    box-shadow .18s ease;
}

.hcpx-inputIcon--top{
  top: 16px;
  transform: none;
}

.hcpx-inputIcon svg{
  width: 16px !important;
  height: 16px !important;
  min-width: 16px;
  min-height: 16px;
  max-width: 16px !important;
  max-height: 16px !important;
  display: block;
}

.hcpx-input--icon{
  padding-left: 56px !important;
}

.hcpx-textarea.hcpx-input--icon{
  padding-left: 56px !important;
  padding-top: 14px;
}

.hcpx-select.hcpx-input--icon{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, rgba(18,26,65,.55) 50%),
    linear-gradient(135deg, rgba(18,26,65,.55) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 46px;
}

.hcpx-field{
  min-width: 0;
}

.hcpx-input,
.hcpx-select,
.hcpx-textarea{
  width: 100%;
  padding: 15px 16px;
  border-radius: 18px;
  border: 1px solid rgba(18,26,65,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,251,253,.96));
  color: var(--hcpx-ink);
  font-size: 15px;
  line-height: 1.35;
  transition:
    transform .16s ease,
    border-color .16s ease,
    box-shadow .16s ease,
    background-color .16s ease;
}

.hcpx-input:hover,
.hcpx-select:hover,
.hcpx-textarea:hover{
  transform: translateY(-1px);
  border-color: rgba(18,26,65,.18);
  box-shadow: 0 10px 20px rgba(2,6,23,.05);
}

.hcpx-input:focus,
.hcpx-select:focus,
.hcpx-textarea:focus{
  outline: none;
  transform: translateY(-1px);
  border-color: rgba(18,26,65,.28);
  box-shadow:
    0 0 0 4px rgba(18,26,65,.08),
    0 14px 26px rgba(2,6,23,.08);
  background: #fff;
}

.hcpx-inputWrap:focus-within .hcpx-inputIcon{
  transform: translateY(-50%) scale(1.04);
  background: linear-gradient(180deg, rgba(18,26,65,.12), rgba(18,26,65,.06));
  border-color: rgba(18,26,65,.16);
  color: var(--hcpx-navy);
  box-shadow: 0 8px 18px rgba(2,6,23,.08);
}

.hcpx-inputWrap:focus-within .hcpx-inputIcon--top{
  transform: scale(1.04);
}

.hcpx-field.is-complete .hcpx-inputIcon{
  background: linear-gradient(180deg, rgba(19,162,75,.14), rgba(19,162,75,.08));
  border-color: rgba(19,162,75,.22);
  color: #0f8d40;
}

.hcpx-field.is-complete label{
  color: #0f8d40;
}

.hcpx-helpText{
  display: block;
  margin-top: 6px;
  color: var(--hcpx-muted);
  font-size: 12px;
  line-height: 1.45;
}

.hcpx-intentChips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 16px;
}

.hcpx-intentChip{
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(18,26,65,.12);
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,250,252,.94));
  color: var(--hcpx-navy);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform .18s ease,
    border-color .18s ease,
    box-shadow .18s ease,
    background-color .18s ease,
    color .18s ease;
}

.hcpx-intentChip:hover{
  transform: translateY(-2px);
  border-color: rgba(18,26,65,.22);
  box-shadow: 0 10px 20px rgba(2,6,23,.06);
}

.hcpx-intentChip.is-active{
  background: linear-gradient(180deg, #182257, #121A41 60%, #101837);
  color: #fff;
  border-color: rgba(18,26,65,.18);
  box-shadow: 0 12px 24px rgba(18,26,65,.16);
}

.hcpx-formProgress{
  position: relative;
  width: 100%;
  height: 10px;
  border-radius: 999px;
  background: rgba(18,26,65,.08);
  overflow: hidden;
  margin-bottom: 10px;
}

.hcpx-formProgress__bar{
  display: block;
  width: 0%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(
    90deg,
    rgba(18,26,65,.92),
    rgba(153,1,1,.72)
  );
  box-shadow:
    0 0 20px rgba(18,26,65,.12),
    0 0 16px rgba(153,1,1,.10);
  transition:
    width .28s ease,
    background .22s ease;
}

.hcpx-formProgressMeta{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.hcpx-formProgressMeta small{
  color: var(--hcpx-muted);
  font-size: 12px;
  line-height: 1.4;
}

@media (max-width: 1180px){
  .hcpx-formWrap--premium{
    grid-template-columns: 1fr;
  }

  .hcpx-floatCard--one{
    left: 18px;
  }

  .hcpx-floatCard--two{
    right: 18px;
  }

  .hcpx-floatCard--three{
    left: auto;
    right: 24px;
    bottom: -8px;
  }
}

@media (max-width: 860px){
  .hcpx-floatCard{
    display: none;
  }

  .hcpx-formSection{
    margin-top: -20px;
    padding-top: 0;
  }

  .hcpx-formStage{
    padding-top: 10px;
  }

  .hcpx-formIntro--premium,
  .hcpx-formCard--premium{
    padding: 20px;
    border-radius: 24px;
  }

  .hcpx-formGrid{
    grid-template-columns: 1fr;
  }

  .hcpx-intentChips{
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hcpx-inputIcon{
    left: 12px;
    width: 26px;
    height: 26px;
  }

  .hcpx-inputIcon svg{
    width: 15px !important;
    height: 15px !important;
    max-width: 15px !important;
    max-height: 15px !important;
  }

  .hcpx-input--icon,
  .hcpx-textarea.hcpx-input--icon{
    padding-left: 50px !important;
  }
}

/* ==========================================================
   FAQ STACK AUTOPLAY / WHEEL / BLUR
   ========================================================== */

.hcpx-faqSection{
  position: relative;
  padding: 10px 0 56px;
  overflow: hidden;
}

.hcpx-faqSection::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(520px 180px at 12% 0%, rgba(18,26,65,.05), transparent 60%),
    radial-gradient(520px 180px at 88% 100%, rgba(153,1,1,.04), transparent 60%);
  pointer-events: none;
}

.hcpx-faqStack{
  position: relative;
  width: min(920px, 100%);
  height: 620px;
  margin: 0 auto;
  z-index: 1;
}

.hcpx-faqCard{
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(18,26,65,.10);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  box-shadow: 0 16px 34px rgba(2,6,23,.07);
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform-origin: center center;
  transition:
    transform .72s cubic-bezier(.22,.85,.25,1),
    opacity .45s ease,
    box-shadow .22s ease,
    border-color .22s ease,
    filter .45s ease;
  will-change: transform, opacity, filter;
}

.hcpx-faqCard::before{
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(320px 120px at 0% 0%, rgba(18,26,65,.04), transparent 60%),
    radial-gradient(320px 120px at 100% 100%, rgba(153,1,1,.04), transparent 60%);
  opacity: 0;
  transition: opacity .24s ease;
  pointer-events: none;
}

.hcpx-faqCard.is-prev{
  top: 34px;
  opacity: .42;
  transform: scale(.90);
  filter: blur(2.2px) saturate(.88);
  pointer-events: auto;
  z-index: 1;
}

.hcpx-faqCard.is-active{
  top: 170px;
  opacity: 1;
  transform: scale(1);
  filter: blur(0) saturate(1);
  pointer-events: auto;
  z-index: 3;
  box-shadow: 0 30px 64px rgba(2,6,23,.13);
}

.hcpx-faqCard.is-next{
  top: 430px;
  opacity: .42;
  transform: scale(.90);
  filter: blur(2.2px) saturate(.88);
  pointer-events: auto;
  z-index: 1;
}

.hcpx-faqCard.is-hidden{
  opacity: 0;
  pointer-events: none;
  transform: scale(.84);
  filter: blur(4px);
  z-index: 0;
}

.hcpx-faqCard:hover{
  border-color: rgba(18,26,65,.16);
}

.hcpx-faqCard.is-active:hover{
  box-shadow: 0 34px 70px rgba(2,6,23,.16);
}

.hcpx-faqCard:hover::before{
  opacity: 1;
}

.hcpx-faqCard__button{
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 24px 26px;
  border: 0;
  background: transparent;
  color: var(--hcpx-navy);
  font-size: 18px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  cursor: pointer;
}

.hcpx-faqCard__question{
  max-width: 90%;
}

.hcpx-faqCard__icon{
  position: relative;
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.hcpx-faqCard__icon::before,
.hcpx-faqCard__icon::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--hcpx-navy);
  transform: translate(-50%, -50%);
  transition:
    transform .22s ease,
    opacity .22s ease,
    background-color .22s ease;
}

.hcpx-faqCard__icon::after{
  transform: translate(-50%, -50%) rotate(90deg);
}

.hcpx-faqCard.is-active:hover .hcpx-faqCard__icon::before,
.hcpx-faqCard.is-active:hover .hcpx-faqCard__icon::after{
  background: rgba(153,1,1,.88);
}

.hcpx-faqCard.is-active.is-open .hcpx-faqCard__icon::after{
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scaleX(.3);
}

.hcpx-faqCard__panel{
  display: none;
  padding: 0 26px 24px;
}

.hcpx-faqCard__panel p{
  margin: 0;
  max-width: 74ch;
  color: var(--hcpx-muted);
  font-size: 15px;
  line-height: 1.75;
}

@media (max-width: 860px){
  .hcpx-faqStack{
    height: auto;
    display: grid;
    gap: 12px;
  }

  .hcpx-faqCard{
    position: relative;
    top: auto !important;
    left: auto;
    right: auto;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    pointer-events: auto !important;
    margin: 0;
    display: none;
  }

  .hcpx-faqCard.is-active{
    display: block;
  }

  .hcpx-faqCard__button{
    padding: 20px 18px;
    font-size: 16px;
    gap: 14px;
  }

  .hcpx-faqCard__question{
    max-width: 85%;
  }

  .hcpx-faqCard__panel{
    padding: 0 18px 18px;
  }

  .hcpx-faqCard__panel p{
    font-size: 14px;
    line-height: 1.7;
  }

  .hcpx-heroCard {
    display: none;
  }

  .hcpx-formIntro.hcpx-formIntro--premium {
    display: none;
}
}

@media (max-width: 860px){
  .hcpx-hero{
    min-height: auto;
    padding: 102px 0 32px;
  }

  .hcpx-hero__grid{
    display: grid;
    grid-template-columns: 1fr !important;
    gap: 0;
    align-items: start;
    margin-top: -90px;
  }

  .hcpx-heroCard{
    display: none !important;
  }

  .hcpx-hero__copy{
    width: 100%;
    max-width: 100%;
  }

  .hcpx-hero__copy h1{
    max-width: 100%;
    width: 100%;
    font-size: clamp(32px, 10vw, 48px);
  }

  .hcpx-hero__lead{
    max-width: 100%;
    width: 100%;
    font-size: 16px;
  }

  .hcpx-hero__actions,
  .hcpx-hero__points{
    width: 100%;
    max-width: 100%;
  }

  .hcpx-hero__points{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hcpx-hero__points span{
    width: 100%;
    justify-content: center;
  }
}