.dhpc {
  --dhpc-ink: #4a4a4a;
  --dhpc-muted: #6b7280;
  --dhpc-line: #eef1f4;
  --dhpc-surface: #ffffff;
  --dhpc-soft: #f3f5f7;
  --dhpc-brand: #4a9fe3;
  --dhpc-brand-dark: #2f80c9;
  --dhpc-accent: #ca5313;
  --dhpc-accent-dark: #a9440f;
  --dhpc-good: #3e92d2;
  --dhpc-font-family: "Helvetica Neue", Arial, sans-serif;
  color: var(--dhpc-ink);
  font-family: var(--dhpc-font-family);
  margin: 32px 0;
}

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

.dhpc__shell {
  background: #ffffff;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  box-shadow: 0 18px 52px rgba(74, 74, 74, 0.06);
  overflow: hidden;
}

.dhpc-brandbar {
  align-items: center;
  background: #ffffff;
  border-bottom: 2px solid var(--dhpc-accent);
  display: flex;
  gap: 16px;
  justify-content: space-between;
  min-height: 66px;
  padding: 14px clamp(22px, 4vw, 42px);
}

.dhpc-brandbar__mark {
  align-items: center;
  display: flex;
  min-height: 36px;
}

.dhpc-brandbar__mark img {
  display: block;
  height: auto;
  max-height: 38px;
  max-width: 150px;
}

.dhpc-brandbar__mark strong {
  color: var(--dhpc-brand);
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
}

.dhpc-brandbar span {
  color: var(--dhpc-accent);
  display: block;
  font-size: clamp(18px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.2;
  text-align: right;
}

.dhpc-brandbar span small {
  color: var(--dhpc-muted);
  display: block;
  font-size: clamp(10px, 1vw, 13px);
  font-weight: 800;
  letter-spacing: 0.14em;
  margin-top: 5px;
  text-transform: uppercase;
}

.dhpc__intro,
.dhpc__app {
  padding: clamp(34px, 6vw, 72px);
}

.dhpc__intro {
  background: #f7f7f7;
  color: var(--dhpc-ink);
  border-bottom: 1px solid var(--dhpc-line);
  position: relative;
}

.dhpc__intro::after {
  background: var(--dhpc-accent);
  bottom: 0;
  content: "";
  display: block;
  height: 4px;
  left: clamp(34px, 6vw, 72px);
  position: absolute;
  width: 96px;
}

.dhpc__intro h2,
.dhpc-step h3,
.dhpc-result h3,
.dhpc-lead h3 {
  color: var(--dhpc-brand);
  font-size: clamp(30px, 4.4vw, 52px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 12px;
}

.dhpc__intro p,
.dhpc-step p,
.dhpc-result__header p,
.dhpc-lead p {
  color: var(--dhpc-muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
  max-width: 760px;
}

.dhpc__intro p:not(.dhpc__eyebrow),
.dhpc-step p,
.dhpc-result__header p,
.dhpc-lead p {
  color: var(--dhpc-muted);
}

.dhpc__intro p:not(.dhpc__eyebrow) {
  color: var(--dhpc-muted);
}

.dhpc__intro .dhpc-intro-text {
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.7;
  max-width: 920px;
}

.dhpc__eyebrow {
  color: var(--dhpc-accent);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.dhpc-progress {
  background: #e7edf2;
  border-radius: 999px;
  height: 8px;
  margin-bottom: 28px;
  overflow: hidden;
}

.dhpc-progress span {
  background: var(--dhpc-brand);
  display: block;
  height: 100%;
  transition: width 180ms ease;
}

.dhpc-step__meta {
  color: var(--dhpc-brand);
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 10px;
}

.dhpc-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 28px 0;
}

.dhpc-card {
  align-items: flex-start;
  background: var(--dhpc-surface);
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  color: var(--dhpc-ink);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 9px;
  min-height: 168px;
  padding: 24px;
  text-align: left;
  transition: border-color 200ms ease, box-shadow 200ms ease, transform 200ms ease;
  width: 100%;
}

.dhpc-card:hover,
.dhpc-card:focus-visible {
  border-color: var(--dhpc-brand);
  box-shadow: 0 14px 30px rgba(74, 159, 227, 0.10);
  outline: none;
  transform: translateY(-3px);
}

.dhpc-card.is-selected {
  background: var(--dhpc-soft);
  border-color: var(--dhpc-brand);
  box-shadow: inset 0 0 0 1px var(--dhpc-brand);
}

.dhpc-card span {
  font-size: 17px;
  font-weight: 400;
}

.dhpc-card small {
  color: var(--dhpc-muted);
  font-size: 14px;
  font-weight: 300;
  line-height: 1.35;
}

.dhpc-icon {
  color: var(--dhpc-brand);
  flex: 0 0 auto;
  height: 42px;
  width: 42px;
}

.dhpc-field {
  display: block;
  margin: 28px 0;
  max-width: 460px;
}

.dhpc-field > span,
.dhpc-lead label {
  color: var(--dhpc-ink);
  display: block;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 8px;
}

.dhpc-field__control {
  align-items: center;
  border: 1px solid var(--dhpc-line);
  border-radius: 4px;
  display: flex;
  overflow: hidden;
}

.dhpc-field input,
.dhpc-lead input {
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  color: var(--dhpc-ink);
  font: inherit;
  min-height: 56px;
  padding: 0 18px;
  width: 100%;
}

.dhpc-field input:focus,
.dhpc-lead input:focus {
  border-color: var(--dhpc-brand);
  box-shadow: 0 0 0 2px rgba(74, 159, 227, 0.15);
  outline: none;
}

.dhpc-field__control input {
  border: 0;
}

.dhpc-field__control strong {
  color: var(--dhpc-muted);
  padding: 0 14px;
}

.dhpc-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.dhpc-actions--split {
  justify-content: space-between;
}

.dhpc-button {
  align-items: center;
  background: var(--dhpc-accent);
  border: 1px solid var(--dhpc-accent);
  border-radius: 2px;
  color: #ffffff;
  cursor: pointer;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: 0.5px;
  min-height: 56px;
  padding: 0 34px;
  text-transform: uppercase;
  transition: background 200ms ease, border-color 200ms ease, transform 200ms ease;
}

.dhpc-button:hover,
.dhpc-button:focus-visible {
  background: var(--dhpc-accent-dark);
  border-color: var(--dhpc-accent-dark);
  transform: translateY(-1px);
}

.dhpc-button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.dhpc-button--ghost {
  background: #ffffff;
  color: var(--dhpc-brand);
  border-color: var(--dhpc-line);
}

.dhpc-button--ghost:hover,
.dhpc-button--ghost:focus-visible {
  background: var(--dhpc-soft);
  color: var(--dhpc-brand-dark);
}

.dhpc-result-grid {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  margin: 28px 0;
}

.dhpc-model-selection {
  margin-top: 28px;
}

.dhpc-section-heading {
  margin: 0 0 18px;
  text-align: center;
}

.dhpc-section-heading span {
  color: var(--dhpc-accent);
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.dhpc-section-heading h4 {
  color: var(--dhpc-ink);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.12;
  margin: 0;
}

.dhpc-reco {
  background: #ffffff;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  padding: 40px;
  transition: border-color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.dhpc-reco:hover {
  border-color: #d8dee5;
  box-shadow: 0 18px 42px rgba(74, 74, 74, 0.06);
  transform: translateY(-4px);
}

.dhpc-product-media {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  min-height: 190px;
  margin-bottom: 28px;
  overflow: hidden;
  padding: 20px;
}

.dhpc-product-media figure {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
  margin: 0;
  min-height: 150px;
}

.dhpc-product-media img {
  display: block;
  height: 132px;
  max-width: 100%;
  object-fit: contain;
  width: 100%;
}

.dhpc-product-media figcaption {
  color: var(--dhpc-muted);
  font-size: 11px;
  font-weight: 300;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.dhpc-result-lock {
  background: #f7f7f7;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  margin: 24px 0;
  padding: 32px;
}

.dhpc-result-lock h4 {
  font-size: 24px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.dhpc-result-lock p {
  color: var(--dhpc-muted);
  margin: 0;
  max-width: 760px;
}

.dhpc-sales-cta {
  align-items: center;
  background: #f7f7f7;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  display: grid;
  gap: 24px;
  grid-template-columns: minmax(0, 1fr) auto;
  margin: 30px 0 0;
  padding: 34px 40px;
}

.dhpc-sales-cta span {
  color: var(--dhpc-brand);
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.dhpc-sales-cta h4 {
  color: var(--dhpc-ink);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 300;
  letter-spacing: -0.5px;
  line-height: 1.16;
  margin: 0 0 10px;
}

.dhpc-sales-cta p {
  color: var(--dhpc-muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  margin: 0;
  max-width: 680px;
}

.dhpc-sales-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.dhpc-whatsapp {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  color: #1f8f54;
  display: inline-flex;
  font-size: 16px;
  font-weight: 600;
  gap: 10px;
  justify-content: center;
  letter-spacing: 0.5px;
  min-height: 56px;
  padding: 0 24px;
  text-decoration: none;
  text-transform: uppercase;
  transition: border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.dhpc-whatsapp:hover,
.dhpc-whatsapp:focus-visible {
  border-color: #1f8f54;
  color: #13733f;
  transform: translateY(-1px);
}

.dhpc-whatsapp svg {
  fill: none;
  height: 22px;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  width: 22px;
}

.dhpc-trust {
  background: #ffffff;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  display: grid;
  gap: 1px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 24px 0 0;
  overflow: hidden;
}

.dhpc-trust article {
  background: #ffffff;
  padding: 36px 40px;
}

.dhpc-trust article + article {
  border-left: 1px solid var(--dhpc-line);
}

.dhpc-trust span {
  color: var(--dhpc-brand);
  display: block;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.dhpc-trust h4 {
  color: var(--dhpc-ink);
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 300;
  letter-spacing: -0.4px;
  line-height: 1.18;
  margin: 0 0 18px;
}

.dhpc-trust ul,
.dhpc-trust ol {
  color: var(--dhpc-muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0;
  padding-left: 20px;
}

.dhpc-trust li + li {
  margin-top: 6px;
}

.dhpc-variant {
  background: #ffffff;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  margin: 24px 0 8px;
  padding: 40px;
}

.dhpc-estimate {
  align-items: center;
  animation: dhpc-soft-appear 420ms ease both;
  background:
    radial-gradient(circle at 50% 0%, rgba(74, 159, 227, 0.16), rgba(74, 159, 227, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 58%, #f8fafc 100%);
  border: 1px solid rgba(74, 159, 227, 0.18);
  border-radius: 4px;
  box-shadow: 0 28px 70px rgba(15, 23, 42, 0.09), 0 4px 18px rgba(74, 159, 227, 0.08);
  display: grid;
  gap: clamp(16px, 2.6vw, 28px);
  grid-template-columns: 1fr;
  justify-items: center;
  margin: clamp(24px, 4vw, 48px) auto clamp(28px, 4.5vw, 54px);
  max-width: 860px;
  overflow: hidden;
  padding: clamp(30px, 4.2vw, 54px) clamp(20px, 4vw, 44px);
  position: relative;
  text-align: center;
}

.dhpc-estimate::before {
  background: linear-gradient(90deg, rgba(74, 159, 227, 0), rgba(74, 159, 227, 0.72), rgba(202, 83, 19, 0.45), rgba(74, 159, 227, 0));
  content: "";
  height: 3px;
  left: 12%;
  position: absolute;
  right: 12%;
  top: 0;
}

.dhpc-estimate span {
  color: var(--dhpc-accent);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.dhpc-estimate h4 {
  color: var(--dhpc-ink);
  font-size: clamp(28px, 3.2vw, 42px);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 12px;
}

.dhpc-estimate p,
.dhpc-estimate small {
  color: var(--dhpc-muted);
  line-height: 1.5;
}

.dhpc-estimate p {
  margin: 0;
  max-width: 720px;
}

.dhpc-estimate small {
  grid-column: 1 / -1;
  max-width: 660px;
}

.dhpc-estimate__numbers {
  display: grid;
  gap: clamp(8px, 1.4vw, 12px);
  justify-items: center;
  min-width: 0;
  order: -1;
  width: 100%;
}

.dhpc-estimate__numbers strong {
  background: linear-gradient(135deg, #ffffff 0%, #f9fcff 100%);
  border: 1px solid rgba(74, 159, 227, 0.16);
  border-radius: 4px;
  box-shadow: 0 18px 42px rgba(74, 159, 227, 0.10);
  color: #2f80c9;
  display: block;
  font-size: clamp(34px, 5.1vw, 69px);
  font-weight: 300;
  letter-spacing: -2px;
  line-height: 0.95;
  min-width: min(100%, 680px);
  padding: clamp(20px, 3vw, 34px) clamp(20px, 4vw, 46px);
  text-align: center;
}

.dhpc-estimate__numbers span {
  color: #ca5313;
  font-size: clamp(12px, 1.15vw, 15px);
  font-weight: 900;
  letter-spacing: 0.20em;
  margin: 0;
  text-transform: uppercase;
}

@keyframes dhpc-soft-appear {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.dhpc-cascade {
  background: #0f172a;
  border: 1px solid rgba(74, 159, 227, 0.28);
  border-radius: 2px;
  color: #ffffff;
  margin: 26px 0 0;
  padding: clamp(30px, 5vw, 56px);
}

.dhpc-cascade span {
  color: #8cc8f4;
  display: block;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  margin-bottom: 12px;
  text-transform: uppercase;
}

.dhpc-cascade h4 {
  color: #ffffff;
  font-size: clamp(30px, 4vw, 50px);
  font-weight: 300;
  letter-spacing: -0.7px;
  line-height: 1.08;
  margin: 0 0 18px;
  max-width: 940px;
}

.dhpc-cascade p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(17px, 1.6vw, 21px);
  font-weight: 300;
  line-height: 1.6;
  margin: 0 0 14px;
  max-width: 880px;
}

.dhpc-cascade__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.dhpc-variant h4 {
  font-size: 22px;
  line-height: 1.2;
  margin: 0 0 8px;
}

.dhpc-variant p {
  color: var(--dhpc-muted);
  font-size: 15px;
  line-height: 1.5;
}

.dhpc-variant-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  margin-top: 16px;
}

.dhpc-variant-option {
  background: #ffffff;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  padding: 24px;
}

.dhpc-variant-option h5 {
  font-size: 17px;
  line-height: 1.25;
  margin: 0;
}

.dhpc-variant-option span {
  color: var(--dhpc-brand);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.dhpc-variant-option strong {
  color: var(--dhpc-brand);
  display: block;
  margin: 10px 0;
}

.dhpc-variant-choice {
  border-top: 1px solid var(--dhpc-line);
  margin-top: auto;
  padding-top: 18px;
}

.dhpc-variant-choice .dhpc-button {
  color: #ffffff;
  margin-top: 0;
  text-decoration: none;
  width: 100%;
}

.dhpc-variant-choice small {
  color: var(--dhpc-muted);
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 10px;
  text-align: center;
}

.dhpc-reco--primary {
  border-color: var(--dhpc-brand);
  box-shadow: 0 18px 42px rgba(74, 159, 227, 0.10);
}

.dhpc-reco__top {
  display: flex;
  gap: 14px;
  margin-bottom: 16px;
}

.dhpc-reco__icon {
  align-items: center;
  background: #ffffff;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  display: flex;
  height: 58px;
  justify-content: center;
  width: 58px;
}

.dhpc-reco__top span {
  color: var(--dhpc-brand);
  display: block;
  font-size: 12px;
  font-weight: 900;
  margin-bottom: 5px;
  text-transform: uppercase;
}

.dhpc-reco h4 {
  color: var(--dhpc-ink);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0;
}

.dhpc-reco h5 {
  font-size: 14px;
  font-weight: 400;
  margin: 16px 0 8px;
}

.dhpc-reco p,
.dhpc-reco li {
  color: var(--dhpc-muted);
  font-size: 14px;
  line-height: 1.45;
}

.dhpc-reco ul {
  margin: 0;
  padding-left: 18px;
}

.dhpc-reco a {
  color: var(--dhpc-brand);
  display: inline-block;
  font-weight: 800;
  margin-top: 14px;
}

.dhpc-reco-choice {
  border-top: 1px solid var(--dhpc-line);
  margin-top: 22px;
  padding-top: 22px;
}

.dhpc-reco-choice .dhpc-button {
  color: #ffffff;
  margin-top: 0;
  text-decoration: none;
  width: 100%;
}

.dhpc-reco-choice small {
  color: var(--dhpc-muted);
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 10px;
  text-align: center;
}

.dhpc-match {
  align-items: center;
  background: #edf2f5;
  border-radius: 999px;
  display: flex;
  height: 28px;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
}

.dhpc-match span {
  background: var(--dhpc-brand);
  height: 100%;
}

.dhpc-match strong {
  color: #ffffff;
  font-size: 12px;
  left: 12px;
  position: absolute;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
}

.dhpc-series {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin: 0 0 14px;
}

.dhpc-system-type {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
}

.dhpc-system-type span {
  color: var(--dhpc-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dhpc-system-type strong {
  background: #ffffff;
  border: 1px solid var(--dhpc-brand);
  border-radius: 4px;
  color: var(--dhpc-brand-dark);
  font-size: 12px;
  padding: 4px 8px;
}

.dhpc-series span {
  color: var(--dhpc-muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.dhpc-series strong {
  background: #ffffff;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  color: var(--dhpc-brand-dark);
  font-size: 12px;
  padding: 4px 7px;
}

.dhpc-model-pick {
  background: #f7f7f7;
  border: 1px solid var(--dhpc-line);
  border-left: 3px solid var(--dhpc-brand);
  margin: 18px 0;
  padding: 22px;
}

.dhpc-model-pick > span,
.dhpc-price span {
  color: var(--dhpc-brand);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.dhpc-model-pick > strong {
  color: var(--dhpc-ink);
  display: block;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.25;
  margin-bottom: 6px;
}

.dhpc-model-pick__technical {
  color: var(--dhpc-muted);
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin: 0 0 14px;
}

.dhpc-model-pick dl {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
}

.dhpc-model-pick dl div {
  min-width: 0;
}

.dhpc-model-pick dt {
  color: var(--dhpc-muted);
  font-size: 11px;
  font-weight: 800;
  margin: 0 0 3px;
  text-transform: uppercase;
}

.dhpc-model-pick dd {
  color: var(--dhpc-ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
}

.dhpc-allinone {
  background:
    linear-gradient(135deg, rgba(74, 159, 227, 0.12), rgba(255, 255, 255, 0.86) 45%),
    #ffffff;
  border: 1px solid rgba(74, 159, 227, 0.22);
  box-shadow: 0 18px 44px rgba(15, 23, 42, 0.07);
  margin-top: 18px;
  padding: 22px;
}

.dhpc-allinone span {
  color: var(--dhpc-brand);
  display: block;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.14em;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.dhpc-allinone h5 {
  color: var(--dhpc-ink);
  font-size: 22px;
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 8px;
}

.dhpc-allinone small {
  color: var(--dhpc-muted);
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin-bottom: 12px;
}

.dhpc-allinone p {
  color: var(--dhpc-ink);
  font-size: 15px;
  line-height: 1.65;
  margin: 0 0 14px;
}

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

.dhpc-allinone li {
  color: var(--dhpc-muted);
  font-size: 13px;
  line-height: 1.45;
  min-width: 0;
  padding-left: 18px;
  position: relative;
}

.dhpc-allinone li::before {
  background: #ca5313;
  content: "";
  height: 6px;
  left: 0;
  position: absolute;
  top: 7px;
  width: 6px;
}

.dhpc-price {
  background: #ffffff;
  border: 1px solid rgba(202, 83, 19, 0.24);
  border-left: 4px solid #ca5313;
  margin-top: 16px;
  padding: 16px;
}

.dhpc-price strong {
  color: var(--dhpc-accent);
  display: block;
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 600;
  line-height: 1.2;
}

.dhpc-price em {
  color: var(--dhpc-brand-dark);
  display: block;
  font-size: clamp(24px, 3.2vw, 34px);
  font-style: normal;
  font-weight: 800;
  line-height: 1.18;
  margin-top: 10px;
}

.dhpc-price b {
  color: var(--dhpc-muted);
  display: block;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
  margin-top: 6px;
  text-transform: uppercase;
}

.dhpc-model-pick small,
.dhpc-price small {
  color: var(--dhpc-muted);
  display: block;
  font-size: 12px;
  line-height: 1.45;
  margin-top: 10px;
}

.dhpc-lead {
  background: #ffffff;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  margin-top: 26px;
  padding: 40px;
}

.dhpc-lead__grid {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 22px 0;
}

.dhpc-sms-code {
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border: 1px solid rgba(74, 159, 227, 0.22);
  border-radius: 2px;
  margin: 10px 0 22px;
  padding: 22px;
}

.dhpc-sms-code input {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-align: center;
}

.dhpc-sms-code small {
  color: var(--dhpc-muted);
  display: block;
  line-height: 1.5;
  margin-top: 10px;
}

.dhpc-consent {
  align-items: flex-start;
  display: flex !important;
  gap: 10px;
  line-height: 1.4;
}

.dhpc-consent input {
  flex: 0 0 auto;
  margin-top: 3px;
  min-height: auto;
  width: auto;
}

.dhpc-form-message,
.dhpc-alert {
  color: var(--dhpc-brand-dark);
  font-weight: 800;
  margin-top: 14px;
}

.dhpc-lead.is-sent input,
.dhpc-lead.is-sent button[type="submit"] {
  opacity: 0.6;
}

.dhpc-seo {
  background: #ffffff;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  margin-top: 22px;
  padding: clamp(22px, 4vw, 38px);
}

.dhpc-seo__grid {
  display: grid;
  gap: 28px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dhpc-seo h2 {
  color: var(--dhpc-ink);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0;
  line-height: 1.16;
  margin: 0 0 12px;
}

.dhpc-seo p,
.dhpc-seo li {
  color: var(--dhpc-muted);
  font-size: 16px;
  line-height: 1.6;
}

.dhpc-seo p {
  margin: 0 0 14px;
}

.dhpc-seo__models {
  border-top: 1px solid var(--dhpc-line);
  margin-top: 28px;
  padding-top: 28px;
}

.dhpc-seo__models ul {
  display: grid;
  gap: 12px;
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
}

.dhpc-seo__models li {
  background: #ffffff;
  border: 1px solid var(--dhpc-line);
  border-radius: 2px;
  padding: 22px 24px;
}

.dhpc-seo__models strong {
  color: var(--dhpc-ink);
}

.dhpc-faq {
  border-top: 1px solid var(--dhpc-line);
  margin-top: 28px;
  padding-top: 28px;
}

.dhpc-faq details {
  border-bottom: 1px solid var(--dhpc-line);
  padding: 14px 0;
}

.dhpc-faq summary {
  color: var(--dhpc-ink);
  cursor: pointer;
  font-weight: 800;
}

.dhpc-faq details p {
  margin: 10px 0 0;
  max-width: 860px;
}

.dhpc-brand-notice {
  color: var(--dhpc-muted);
  font-size: 12px;
  line-height: 1.45;
  margin: 10px 2px 0;
}

@media (max-width: 700px) {
  .dhpc {
    margin: 18px 0;
  }

  .dhpc__shell,
  .dhpc-seo {
    border-left: 0;
    border-right: 0;
  }

  .dhpc__intro,
  .dhpc__app {
    padding: 20px 16px;
  }

  .dhpc__intro h2,
  .dhpc-step h3,
  .dhpc-result h3,
  .dhpc-lead h3 {
    font-size: 25px;
    line-height: 1.16;
  }

  .dhpc-cards,
  .dhpc-result-grid,
  .dhpc-lead__grid,
  .dhpc-seo__grid,
  .dhpc-variant-grid,
  .dhpc-trust,
  .dhpc-sales-cta {
    grid-template-columns: 1fr;
  }

  .dhpc-cards {
    gap: 10px;
    margin: 22px 0;
  }

  .dhpc-card {
    min-height: 124px;
    padding: 15px;
  }

  .dhpc-estimate {
    grid-template-columns: 1fr;
  }

  .dhpc-cascade,
  .dhpc-variant,
  .dhpc-reco,
  .dhpc-lead,
  .dhpc-result-lock,
  .dhpc-sales-cta {
    padding: 16px;
  }

  .dhpc-estimate {
    margin: 24px auto 32px;
    padding: 28px 14px;
  }

  .dhpc-sales-cta__actions {
    justify-content: stretch;
  }

  .dhpc-trust article {
    padding: 22px 18px;
  }

  .dhpc-trust article + article {
    border-left: 0;
    border-top: 1px solid var(--dhpc-line);
  }

  .dhpc-whatsapp {
    width: 100%;
  }

  .dhpc-product-media {
    min-height: 150px;
    padding: 10px;
  }

  .dhpc-product-media img {
    height: 105px;
  }

  .dhpc-model-pick {
    padding: 16px;
  }

  .dhpc-model-pick dl {
    grid-template-columns: 1fr;
  }

  .dhpc-allinone ul {
    grid-template-columns: 1fr;
  }

  .dhpc-reco__top {
    align-items: flex-start;
    gap: 10px;
  }

  .dhpc-reco__icon {
    height: 48px;
    min-width: 48px;
    width: 48px;
  }

  .dhpc-reco h4,
  .dhpc-estimate h4,
  .dhpc-variant h4 {
    font-size: 19px;
  }

  .dhpc-series,
  .dhpc-system-type {
    align-items: flex-start;
  }

  .dhpc-series span,
  .dhpc-system-type span {
    flex-basis: 100%;
  }

  .dhpc-estimate__numbers {
    min-width: 0;
  }

  .dhpc-estimate__numbers strong {
    font-size: clamp(27px, 7vw, 41px);
    letter-spacing: -1.2px;
    min-width: 0;
    padding: 18px 12px;
    width: 100%;
  }

  .dhpc-brandbar {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 16px;
  }

  .dhpc-brandbar span {
    text-align: left;
  }

  .dhpc-actions,
  .dhpc-actions--split {
    justify-content: stretch;
  }

  .dhpc-button {
    width: 100%;
  }

  .dhpc-seo {
    padding: 20px 16px;
  }
}

@media (max-width: 420px) {
  .dhpc-card {
    min-height: 112px;
  }

  .dhpc-icon {
    height: 36px;
    width: 36px;
  }

  .dhpc-product-media {
    min-height: 126px;
  }

  .dhpc-reco__top {
    flex-direction: column;
  }

  .dhpc-match strong {
    font-size: 11px;
  }
}
