.pd-page {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.pd-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pd-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* HERO */
.pd-hero {
  position: relative;
  min-height: 460px;
  overflow: hidden;
  background: #000;
}

.pd-hero__bg {
  position: absolute;
  inset: 0;
}

.pd-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
}

.pd-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.50) 0%, rgba(0,0,0,.20) 45%, rgba(0,0,0,.05) 100%);
}

.pd-hero__content {
  position: relative;
  z-index: 2;
  min-height: 460px;
  display: flex;
  align-items: center;
}

.pd-hero__text {
  max-width: 540px;
}

.pd-hero__title {
  margin: 0;
  font-size: 3.8rem;
  line-height: 1.02;
  letter-spacing: -0.04em;
  color: #fff;
}

/* INTRO */
.pd-intro {
  background: #000;
  padding: 58px 0 40px;
}

.pd-intro__inner {
  text-align: center;
}

.pd-intro__kicker {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.4;
  color: #bdbdbd;
}

.pd-intro__title {
  margin: 0;
  font-size: 2.9rem;
  line-height: 1.2;
  font-weight: 300;
  color: #fff;
}

/* DOCS */
.pd-docs {
  background: #000;
  padding: 28px 0 70px;
}

.pd-docs__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 56px;
  align-items: start;
}

.pd-doc-card {
  text-align: center;
}

.pd-doc-card__title {
  margin: 0 0 18px;
  font-size: 1.7rem;
  line-height: 1.1;
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.02em;
}

.pd-doc-card__image {
  display: block;
  width: min(360px, 100%);
  margin: 0 auto;
  transition: transform .2s ease, opacity .2s ease;
}

.pd-doc-card__image:hover {
  transform: translateY(-2px);
  opacity: .96;
}

.pd-doc-card__image img {
  width: 100%;
  height: auto;
}

.pd-doc-card__cta {
  margin-top: 20px;
}

.pd-doc-card__cta a {
  display: inline-block;
  min-width: 132px;
  padding: 12px 20px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
  line-height: 1;
  transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.pd-doc-card__cta a:hover {
  background: #e10600;
  border-color: #e10600;
  color: #fff;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pd-hero,
  .pd-hero__content {
    min-height: 360px;
  }

  .pd-hero__title {
    font-size: 3rem;
  }

  .pd-intro__title {
    font-size: 2.3rem;
  }

  .pd-docs__grid {
    gap: 36px;
  }
}

@media (max-width: 767px) {
  .pd-wrap {
    width: min(100% - 28px, 100%);
  }

  .pd-hero,
  .pd-hero__content {
    min-height: 260px;
  }

  .pd-hero__title {
    font-size: 2.15rem;
  }

  .pd-intro {
    padding: 40px 0 28px;
  }

  .pd-intro__kicker {
    font-size: 0.92rem;
  }

  .pd-intro__title {
    font-size: 1.8rem;
    line-height: 1.3;
  }

  .pd-docs {
    padding: 18px 0 50px;
  }

  .pd-docs__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .pd-doc-card__title {
    font-size: 1.4rem;
  }

  .pd-doc-card__image {
    width: min(300px, 100%);
  }
}