/* High Current PCB landing page body only.
   Prefix: hcp-. Header, footer, and inquiry form are intentionally excluded. */

.hcp-page {
  --hcp-bg: #ffffff;
  --hcp-soft: #f5f8fc;
  --hcp-soft-2: #eef4fa;
  --hcp-ink: #071b31;
  --hcp-text: #26384f;
  --hcp-muted: #617084;
  --hcp-line: #d9e3ee;
  --hcp-blue: #075df0;
  --hcp-blue-dark: #0347bd;
  --hcp-copper: #bb7437;
  --hcp-radius: 6px;
  --hcp-max: 1180px;
  --hcp-shadow: 0 18px 42px rgba(7, 27, 49, 0.12);
  color: var(--hcp-ink);
  background: var(--hcp-bg);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.58;
  overflow-x: hidden;
}

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

.hcp-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.hcp-page a {
  text-decoration: none;
}

.hcp-page a:visited {
  color: inherit;
}

.hcp-page button,
.hcp-page a {
  -webkit-tap-highlight-color: transparent;
}

.hcp-section {
  width: min(var(--hcp-max), calc(100% - 48px));
  margin: 0 auto;
  padding: 86px 0;
}

.hcp-page .hcp-section h1,
.hcp-page .hcp-section h2,
.hcp-page .hcp-section h3,
.hcp-page .hcp-section p {
  margin-top: 0;
  text-align: left;
}

.hcp-page .hcp-section h1 {
  margin-bottom: 24px;
  color: var(--hcp-ink);
  font-size: 48px;
  line-height: 1.04;
  font-weight: 800;
  letter-spacing: 0;
}

.hcp-page .hcp-section h2 {
  margin-bottom: 18px;
  padding: 0;
  border: 0;
  color: var(--hcp-ink);
  background: none;
  font-size: 42px;
  line-height: 1.12;
  font-weight: 800;
  letter-spacing: 0;
  text-indent: 0;
  word-break: normal;
}

.hcp-page .hcp-section h3 {
  color: var(--hcp-ink);
  font-size: 21px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: 0;
}

.hcp-page .hcp-section p {
  color: var(--hcp-muted);
  font-size: 17px;
}

.hcp-section__intro {
  max-width: 760px;
}

.hcp-section__intro--center {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.hcp-page .hcp-section__intro--center h2,
.hcp-page .hcp-section__intro--center p {
  text-align: center;
}

.hcp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hcp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: var(--hcp-radius);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease;
}

.hcp-btn--primary {
  color: #fff;
  background: var(--hcp-blue);
  box-shadow: 0 10px 22px rgba(7, 93, 240, 0.2);
}

.hcp-page .hcp-btn--primary,
.hcp-page .hcp-btn--primary:link,
.hcp-page .hcp-btn--primary:visited,
.hcp-page .hcp-btn--primary:hover,
.hcp-page .hcp-btn--primary:active {
  color: #fff;
}

.hcp-btn--primary:hover {
  color: #fff;
  background: var(--hcp-blue-dark);
}

.hcp-btn--primary:visited {
  color: #fff;
}

.hcp-btn--secondary {
  color: var(--hcp-ink);
  background: #fff;
  border-color: #afbdcc;
}

.hcp-btn--secondary:visited {
  color: var(--hcp-ink);
}

.hcp-btn--secondary:hover {
  color: var(--hcp-blue);
  border-color: var(--hcp-blue);
}

.hcp-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  grid-template-areas:
    "copy media"
    "proof media";
  gap: 48px;
  align-items: center;
  min-height: 760px;
  padding-top: 178px;
  padding-bottom: 72px;
}

.hcp-hero__content {
  grid-area: copy;
}

.hcp-hero__content p {
  max-width: 620px;
  margin-bottom: 32px;
  color: var(--hcp-text);
  font-size: 19px;
}

.hcp-hero__media {
  grid-area: media;
  overflow: hidden;
  border-radius: var(--hcp-radius);
  background: #071b31;
  box-shadow: var(--hcp-shadow);
  height: 100%;
  min-height: 560px;
}

.hcp-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: 53% 50%;
}

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

.hcp-proof div {
  min-height: 112px;
  padding: 20px;
  border: 1px solid var(--hcp-line);
  border-radius: var(--hcp-radius);
  background: #fff;
}

.hcp-proof strong {
  display: block;
  margin-bottom: 8px;
  color: var(--hcp-ink);
  font-size: 23px;
  line-height: 1.1;
}

.hcp-proof span {
  display: block;
  color: var(--hcp-muted);
  font-size: 14px;
  line-height: 1.45;
}

.hcp-capabilities {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--hcp-max)) / 2));
  padding-left: max(24px, calc((100vw - var(--hcp-max)) / 2));
  background: var(--hcp-soft);
}

.hcp-capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 40px;
}

.hcp-capability-grid article {
  min-height: 202px;
  padding: 28px;
  border: 1px solid var(--hcp-line);
  border-radius: var(--hcp-radius);
  background: #fff;
}

.hcp-capability-grid h3 {
  margin-bottom: 14px;
}

.hcp-capability-grid p {
  margin-bottom: 0;
  font-size: 15px;
}

.hcp-cases {
  padding-top: 96px;
}

.hcp-case-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 46px;
}

.hcp-case {
  display: grid;
  grid-template-columns: 1fr;
  overflow: hidden;
  border: 1px solid var(--hcp-line);
  border-radius: var(--hcp-radius);
  background: #fff;
}

.hcp-case img {
  width: 100%;
  height: 250px;
  min-height: 250px;
  object-fit: cover;
}

.hcp-case:nth-child(2) img {
  object-position: 64% 50%;
}

.hcp-case:nth-child(3) img {
  object-position: 45% 50%;
}

.hcp-case:nth-child(4) img {
  object-position: 72% 50%;
}

.hcp-case__body {
  padding: 30px;
}

.hcp-case__body p {
  margin-bottom: 20px;
  font-size: 15px;
}

.hcp-case dl {
  display: grid;
  grid-template-columns: 124px minmax(0, 1fr);
  gap: 0;
  margin: 0 0 24px;
  border-top: 1px solid var(--hcp-line);
}

.hcp-case dt,
.hcp-case dd {
  margin: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--hcp-line);
  font-size: 14px;
  line-height: 1.35;
}

.hcp-case dt {
  color: var(--hcp-muted);
  font-weight: 700;
}

.hcp-case dd {
  color: var(--hcp-ink);
  font-weight: 700;
}

.hcp-case__body a {
  color: var(--hcp-blue);
  font-size: 14px;
  font-weight: 800;
}

.hcp-case__body a:visited {
  color: var(--hcp-blue);
}

.hcp-decision {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  gap: 52px;
  align-items: start;
}

.hcp-decision-table {
  border: 1px solid var(--hcp-line);
  border-radius: var(--hcp-radius);
  background: #fff;
  overflow: hidden;
}

.hcp-decision-table > div {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  padding: 22px 24px;
  border-bottom: 1px solid var(--hcp-line);
}

.hcp-decision-table > div:last-child {
  border-bottom: 0;
}

.hcp-decision-table strong {
  color: var(--hcp-ink);
  font-size: 17px;
}

.hcp-decision-table span {
  color: var(--hcp-muted);
  font-size: 15px;
}

.hcp-quality {
  width: 100%;
  max-width: none;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 54px;
  align-items: center;
  padding-right: max(24px, calc((100vw - var(--hcp-max)) / 2));
  padding-left: max(24px, calc((100vw - var(--hcp-max)) / 2));
  background: var(--hcp-soft);
}

.hcp-quality__copy p {
  margin-bottom: 0;
}

.hcp-quality__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.hcp-quality__grid span {
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 18px;
  color: var(--hcp-ink);
  border: 1px solid var(--hcp-line);
  border-radius: var(--hcp-radius);
  background: #fff;
  font-size: 15px;
  font-weight: 800;
}

.hcp-applications {
  border-bottom: 1px solid var(--hcp-line);
}

.hcp-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.hcp-application-grid article {
  overflow: hidden;
  min-height: 0;
  border: 1px solid var(--hcp-line);
  border-radius: var(--hcp-radius);
  background: #fff;
}

.hcp-application-grid img {
  width: 100%;
  height: 156px;
  object-fit: cover;
  background: var(--hcp-soft);
}

.hcp-application-grid h3 {
  padding: 22px 22px 0;
  margin-bottom: 12px;
  font-size: 18px;
}

.hcp-application-grid p {
  padding: 0 22px 24px;
  margin-bottom: 0;
  font-size: 14px;
}

.hcp-quote-guide {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 54px;
  align-items: start;
}

.hcp-quote-guide__copy p {
  margin-bottom: 28px;
}

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

.hcp-file-list li {
  padding: 18px;
  color: var(--hcp-ink);
  border: 1px solid var(--hcp-line);
  border-radius: var(--hcp-radius);
  background: #fff;
  font-size: 15px;
  font-weight: 700;
}

.hcp-faq {
  width: 100%;
  max-width: none;
  padding-right: max(24px, calc((100vw - var(--hcp-max)) / 2));
  padding-left: max(24px, calc((100vw - var(--hcp-max)) / 2));
  background: var(--hcp-soft);
}

.hcp-faq__list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 42px;
}

.hcp-faq__item {
  border: 1px solid var(--hcp-line);
  border-radius: var(--hcp-radius);
  background: #fff;
  overflow: hidden;
}

.hcp-faq__item button {
  display: block;
  width: 100%;
  padding: 20px 48px 20px 20px;
  color: var(--hcp-ink);
  border: 0;
  background: #fff;
  cursor: pointer;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.35;
  text-align: left;
  position: relative;
}

.hcp-faq__item button:after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 20px;
  color: var(--hcp-blue);
  font-size: 22px;
  line-height: 1;
}

.hcp-faq__item.is-open button:after {
  content: "-";
}

.hcp-faq__answer {
  display: none;
  padding: 0 20px 22px;
  color: var(--hcp-muted);
  font-size: 15px;
}

.hcp-faq__item.is-open .hcp-faq__answer {
  display: block;
}

.hcp-blog {
  border-bottom: 1px solid var(--hcp-line);
}

.hcp-blog-header {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(360px, 0.75fr);
  gap: 56px;
  align-items: end;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--hcp-line);
}

.hcp-blog-header span {
  display: block;
  margin-bottom: 14px;
  color: var(--hcp-copper);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.hcp-page .hcp-blog-header h2 {
  max-width: 680px;
  margin-bottom: 0;
  font-size: 48px;
}

.hcp-blog-header p {
  margin-bottom: 18px;
  color: var(--hcp-text);
  font-size: 17px;
}

.hcp-blog-header a {
  display: inline-flex;
  color: var(--hcp-blue);
  font-size: 14px;
  font-weight: 800;
}

.hcp-blog-header a:visited {
  color: var(--hcp-blue);
}

.hcp-blog-hub {
  display: grid;
  gap: 22px;
  margin-top: 34px;
}

.hcp-blog-lead {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  min-height: 360px;
  overflow: hidden;
  border-radius: var(--hcp-radius);
  background: var(--hcp-ink);
}

.hcp-blog-lead img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
}

.hcp-blog-lead > div {
  display: flex;
  padding: 42px;
  flex-direction: column;
  justify-content: center;
}

.hcp-blog-lead span,
.hcp-blog-picks span {
  display: block;
  margin-bottom: 10px;
  color: var(--hcp-copper);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.2;
}

.hcp-blog-lead h3 {
  max-width: 520px;
  margin-bottom: 14px;
  color: #fff;
  font-size: 34px;
}

.hcp-blog-lead p {
  max-width: 520px;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
}

.hcp-blog-lead a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: var(--hcp-radius);
  font-size: 14px;
  font-weight: 800;
}

.hcp-blog-lead a:visited {
  color: #fff;
}

.hcp-blog-picks {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.hcp-blog-picks article {
  display: flex;
  min-height: 260px;
  padding: 24px 26px;
  flex-direction: column;
  border: 1px solid var(--hcp-line);
  border-radius: var(--hcp-radius);
  background: #fff;
}

.hcp-blog-picks h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.hcp-blog-picks p {
  margin-bottom: 20px;
  font-size: 15px;
}

.hcp-blog-picks a {
  margin-top: auto;
  color: var(--hcp-blue);
  font-size: 14px;
  font-weight: 800;
}

.hcp-blog-picks a:visited {
  color: var(--hcp-blue);
}

.hcp-blog-picks a:hover,
.hcp-blog-lead a:hover {
  color: var(--hcp-blue);
}

.hcp-final-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
  margin-top: 86px;
  margin-bottom: 86px;
  padding: 48px;
  border-radius: var(--hcp-radius);
  background: var(--hcp-ink);
}

.hcp-page .hcp-final-cta h2,
.hcp-page .hcp-final-cta p {
  color: #fff;
}

.hcp-page .hcp-final-cta h2 {
  margin-bottom: 12px;
  font-size: 34px;
}

.hcp-final-cta p {
  max-width: 720px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.78);
}

.hcp-final-cta .hcp-btn--secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
}

.hcp-final-cta .hcp-btn--secondary:hover {
  border-color: #fff;
}

@media (max-width: 1100px) {
  .hcp-page .hcp-section h1 {
    font-size: 50px;
  }

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

  .hcp-case img {
    height: 270px;
    min-height: 270px;
  }

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

  .hcp-blog-hub {
    grid-template-columns: 1fr;
  }

  .hcp-blog-lead {
    grid-template-columns: 1fr;
  }

  .hcp-blog-header {
    grid-template-columns: 1fr;
    gap: 18px;
    align-items: start;
  }

  .hcp-blog-picks {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

@media (max-width: 900px) {
  .hcp-hero,
  .hcp-decision,
  .hcp-quality,
  .hcp-quote-guide,
  .hcp-final-cta {
    grid-template-columns: 1fr;
  }

  .hcp-hero {
    grid-template-areas:
      "copy"
      "media"
      "proof";
    min-height: auto;
  }

  .hcp-hero__media,
  .hcp-hero__media img {
    height: auto;
    min-height: 0;
  }

  .hcp-proof,
  .hcp-capability-grid,
  .hcp-case-grid,
  .hcp-faq__list {
    grid-template-columns: 1fr;
  }

  .hcp-final-cta {
    margin-top: 54px;
    margin-bottom: 54px;
  }
}

@media (max-width: 640px) {
  .hcp-section {
    width: calc(100% - 32px);
    padding-top: 62px;
    padding-bottom: 62px;
  }

  .hcp-capabilities,
  .hcp-quality,
  .hcp-faq {
    padding-right: 16px;
    padding-left: 16px;
  }

  .hcp-page .hcp-section h1 {
    font-size: 34px;
    line-height: 1.08;
  }

  .hcp-page .hcp-section h2 {
    font-size: 30px;
  }

  .hcp-page .hcp-blog-header h2 {
    font-size: 34px;
  }

  .hcp-hero {
    padding-top: 40px;
  }

  .hcp-hero__content p {
    font-size: 17px;
  }

  .hcp-actions,
  .hcp-btn {
    width: 100%;
  }

  .hcp-hero__media img {
    height: 330px;
  }

  .hcp-proof,
  .hcp-file-list,
  .hcp-quality__grid,
  .hcp-application-grid,
  .hcp-blog-picks {
    grid-template-columns: 1fr;
  }

  .hcp-blog-lead img {
    height: 230px;
    min-height: 230px;
  }

  .hcp-blog-lead > div {
    padding: 24px;
  }

  .hcp-blog-lead h3 {
    font-size: 24px;
  }

  .hcp-case__body,
  .hcp-capability-grid article,
  .hcp-application-grid article {
    padding: 22px;
  }

  .hcp-application-grid article {
    padding: 0;
  }

  .hcp-case dl {
    grid-template-columns: 1fr;
  }

  .hcp-case dt {
    padding-bottom: 2px;
    border-bottom: 0;
  }

  .hcp-case dd {
    padding-top: 0;
  }

  .hcp-decision-table > div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .hcp-final-cta {
    width: calc(100% - 32px);
    padding: 28px 20px;
  }
}
