/* ============================================================
   SHARED VARS
   ============================================================ */
:root {
  --pd-blue: #00349d;
  --pd-blue-dk: #1e3a8a;
  --pd-red: #dc2626;
  --pd-red-dk: #b91c1c;
  --pd-t: 150ms ease;
  --pd-t-slow: 300ms ease;
}

/* ============================================================
   HERO
   ============================================================ */
.pd-hero {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 1024px) {
  .pd-hero {
    height: 80vh;
  }
}

.pd-hero__bg {
  position: absolute;
  inset: 0;
}
.pd-hero__bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.pd-hero__bg-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom right,
    rgb(0 52 157 / 0.95),
    rgb(17 24 39 / 0.8),
    rgb(0 0 0 / 0.9)
  );
}

.pd-hero__inner {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 3rem 1rem;
}
@media (min-width: 640px) {
  .pd-hero__inner {
    padding: 2rem 1.5rem;
  }
}
@media (min-width: 1024px) {
  .pd-hero__inner {
    padding: 2rem;
  }
}

.pd-hero__content {
  max-width: 56rem;
}

.pd-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  color: rgb(255 255 255 / 0.8);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  transition: color var(--pd-t);
}
.pd-hero__back:hover {
  color: #ffffff;
}
.pd-hero__back-icon {
  width: 16px;
  height: 16px;
}

.pd-hero__brand-badge {
  display: inline-block;
  background-color: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.2);
  padding: 0.5rem 1rem;
  border-radius: 9999px;
  margin-bottom: 0.75rem;
}
.pd-hero__brand-badge span {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
}

.pd-hero__heading {
  font-size: 1.875rem;
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .pd-hero__heading {
    font-size: 3rem;
  }
}
@media (min-width: 1024px) {
  .pd-hero__heading {
    font-size: 4.5rem;
  }
}

.pd-hero__tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.9);
  margin-bottom: 0.75rem;
}
@media (min-width: 640px) {
  .pd-hero__tagline {
    font-size: 1.5rem;
  }
}

.pd-hero__desc {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.8);
  line-height: 1.625;
  margin-bottom: 1.25rem;
  max-width: 42rem;
}
@media (min-width: 640px) {
  .pd-hero__desc {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.pd-hero__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .pd-hero__actions {
    flex-direction: row;
    gap: 1rem;
  }
}

.pd-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition:
    background-color var(--pd-t),
    color var(--pd-t),
    box-shadow var(--pd-t),
    transform var(--pd-t);
}
.pd-hero__btn:hover {
  transform: translateY(-4px);
}

.pd-hero__btn--red {
  background-color: var(--pd-red);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}
.pd-hero__btn--red:hover {
  background-color: var(--pd-red-dk);
  box-shadow: 0 20px 25px -5px rgb(220 38 38 / 0.5);
}
.pd-hero__btn--red:hover .pd-hero__btn-icon {
  transform: translateX(4px);
}

.pd-hero__btn--outline {
  background-color: rgb(255 255 255 / 0.1);
  color: #ffffff;
  border: 2px solid rgb(255 255 255 / 0.3);
  backdrop-filter: blur(24px);
}
.pd-hero__btn--outline:hover {
  background-color: #ffffff;
  color: #111827;
}

.pd-hero__btn-icon {
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  flex-shrink: 0;
  transition: transform var(--pd-t);
}

.pd-hero__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  max-width: 42rem;
}
@media (min-width: 640px) {
  .pd-hero__stats {
    gap: 1rem;
  }
}

.pd-hero__stat {
  background-color: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.2);
  padding: 0.75rem 1rem;
  border-radius: 0.75rem;
}

.pd-hero__stat-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 4px;
}
.pd-hero__stat-label span {
  font-size: 0.625rem;
  font-weight: 600;
  color: rgb(255 255 255 / 0.7);
}
@media (min-width: 640px) {
  .pd-hero__stat-label span {
    font-size: 0.75rem;
  }
}

.pd-hero__stat-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
@media (min-width: 640px) {
  .pd-hero__stat-icon {
    width: 20px;
    height: 20px;
  }
}
.pd-hero__stat-icon--green {
  color: #4ade80;
}
.pd-hero__stat-icon--yellow {
  color: #facc15;
}
.pd-hero__stat-icon--blue {
  color: #60a5fa;
}

.pd-hero__stat-value {
  font-size: 0.75rem;
  font-weight: 700;
  color: #ffffff;
}
@media (min-width: 640px) {
  .pd-hero__stat-value {
    font-size: 0.875rem;
  }
}

/* ============================================================
   SPECS
   ============================================================ */
.pd-specs {
  padding-block: 5rem;
  background-color: #ffffff;
}

.pd-specs__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .pd-specs__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .pd-specs__container {
    padding-inline: 2rem;
  }
}

.pd-specs__header {
  text-align: center;
  margin-bottom: 3rem;
}
.pd-specs__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pd-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.pd-specs__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .pd-specs__heading {
    font-size: 2.25rem;
  }
}

.pd-specs__table-wrap {
  max-width: 56rem;
  margin-inline: auto;
  background: linear-gradient(to bottom right, #ffffff, #f9fafb);
  border-radius: 1.5rem;
  border: 1px solid #e5e7eb;
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  overflow: hidden;
}

.pd-specs__table {
  divide-y: 1px solid #e5e7eb;
}

.pd-specs__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  padding: 1.5rem;
  border-bottom: 1px solid #e5e7eb;
  transition: background-color var(--pd-t);
}
@media (min-width: 768px) {
  .pd-specs__row {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}
.pd-specs__row:hover {
  background-color: #ffffff;
}
.pd-specs__row:last-child {
  border-bottom: none;
}

.pd-specs__key {
  font-weight: 700;
  color: #111827;
}
.pd-specs__val {
  color: #4b5563;
}

.pd-specs__download {
  background: linear-gradient(to right, var(--pd-blue), #1d4ed8);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.pd-specs__download-left {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pd-specs__download-icon-wrap {
  background-color: rgb(255 255 255 / 0.2);
  width: 48px;
  height: 48px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.pd-specs__download-icon {
  width: 24px;
  height: 24px;
  color: #ffffff;
}

.pd-specs__download-title {
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}
.pd-specs__download-desc {
  font-size: 0.875rem;
  color: rgb(255 255 255 / 0.8);
}

.pd-specs__download-btn {
  background-color: #ffffff;
  color: var(--pd-blue);
  padding: 0.5rem 1.5rem;
  border-radius: 0.5rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: background-color var(--pd-t);
}
.pd-specs__download-btn:hover {
  background-color: #f3f4f6;
}

/* ============================================================
   FEATURES
   ============================================================ */
.pd-features {
  padding-block: 5rem;
  background-color: #f9fafb;
}

.pd-features__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .pd-features__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .pd-features__container {
    padding-inline: 2rem;
  }
}

.pd-features__header {
  text-align: center;
  margin-bottom: 4rem;
}
.pd-features__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pd-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.pd-features__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .pd-features__heading {
    font-size: 2.25rem;
  }
}
.pd-features__subheading {
  font-size: 1.125rem;
  color: #4b5563;
  max-width: 48rem;
  margin-inline: auto;
}

.pd-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) {
  .pd-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pd-features__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.pd-features__card {
  background: linear-gradient(to bottom right, #ffffff, #f9fafb);
  padding: 2rem;
  border-radius: 1rem;
  border: 1px solid #f3f4f6;
  transition:
    border-color var(--pd-t-slow),
    box-shadow var(--pd-t-slow);
}
.pd-features__card:hover {
  border-color: rgb(0 52 157 / 0.2);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

.pd-features__card-icon {
  width: 56px;
  height: 56px;
  background-color: rgb(0 52 157 / 0.1);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.pd-features__icon-svg {
  width: 28px;
  height: 28px;
  color: var(--pd-blue);
}
.pd-features__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}
.pd-features__card-desc {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.625;
}

/* ============================================================
   WARRANTY
   ============================================================ */
.pd-warranty {
  padding-block: 5rem;
  background: linear-gradient(to bottom right, var(--pd-blue), #1e3a8a);
  color: #ffffff;
}

.pd-warranty__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .pd-warranty__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .pd-warranty__container {
    padding-inline: 2rem;
  }
}

.pd-warranty__header {
  text-align: center;
  margin-bottom: 3rem;
}

.pd-warranty__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.25rem;
  background-color: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 9999px;
}
.pd-warranty__badge-icon {
  width: 20px;
  height: 20px;
  color: #4ade80;
}
.pd-warranty__badge span {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
}

.pd-warranty__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .pd-warranty__heading {
    font-size: 2.25rem;
  }
}
.pd-warranty__subheading {
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.8);
  max-width: 48rem;
  margin-inline: auto;
}

.pd-warranty__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 64rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .pd-warranty__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.pd-warranty__card {
  background-color: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.2);
  padding: 2rem;
  border-radius: 1rem;
}

.pd-warranty__card-icon {
  width: 56px;
  height: 56px;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}
.pd-warranty__card-icon--green {
  background-color: rgb(34 197 94 / 0.2);
}
.pd-warranty__card-icon--blue {
  background-color: rgb(59 130 246 / 0.2);
}
.pd-warranty__card-icon--purple {
  background-color: rgb(168 85 247 / 0.2);
}

.pd-warranty__icon-svg {
  width: 28px;
  height: 28px;
}
.pd-warranty__icon-svg--green {
  color: #4ade80;
}
.pd-warranty__icon-svg--blue {
  color: #60a5fa;
}
.pd-warranty__icon-svg--purple {
  color: #c084fc;
}

.pd-warranty__card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.pd-warranty__card-desc {
  color: rgb(255 255 255 / 0.8);
  line-height: 1.625;
}

/* ============================================================
   BENEFITS
   ============================================================ */
.pd-benefits {
  padding-block: 5rem;
  background-color: #f9fafb;
}

.pd-benefits__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .pd-benefits__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .pd-benefits__container {
    padding-inline: 2rem;
  }
}

.pd-benefits__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .pd-benefits__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.pd-benefits__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--pd-blue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.pd-benefits__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .pd-benefits__heading {
    font-size: 2.25rem;
  }
}
.pd-benefits__desc {
  font-size: 1.125rem;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.625;
}

.pd-benefits__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.pd-benefits__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 1rem;
  color: #374151;
}

.pd-benefits__check-wrap {
  background-color: #dcfce7;
  border-radius: 9999px;
  padding: 4px;
  flex-shrink: 0;
  margin-top: 2px;
}
.pd-benefits__check {
  width: 20px;
  height: 20px;
  color: #16a34a;
}

.pd-benefits__right {
  position: relative;
}

.pd-benefits__img-wrap {
  border-radius: 1.5rem;
  overflow: hidden;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  position: relative;
}

.pd-benefits__img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.pd-benefits__img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgb(0 0 0 / 0.5), transparent);
}

.pd-benefits__stats-card {
  position: absolute;
  bottom: -1.5rem;
  left: 1.5rem;
  right: 1.5rem;
  background-color: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.25);
  border: 1px solid #f3f4f6;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.pd-benefits__stat {
  text-align: center;
}
.pd-benefits__stat--bordered {
  border-inline: 1px solid #e5e7eb;
}
.pd-benefits__stat-num {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--pd-blue);
  margin-bottom: 4px;
}
.pd-benefits__stat-label {
  font-size: 0.875rem;
  color: #4b5563;
  font-weight: 600;
}

/* ============================================================
   INSTALLATION
   ============================================================ */
.pd-install {
  padding-block: 5rem;
  background-color: #111827;
  color: #ffffff;
}

.pd-install__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .pd-install__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .pd-install__container {
    padding-inline: 2rem;
  }
}

.pd-install__header {
  text-align: center;
  margin-bottom: 3rem;
}
.pd-install__eyebrow {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: #60a5fa;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.75rem;
}
.pd-install__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
}
@media (min-width: 1024px) {
  .pd-install__heading {
    font-size: 2.25rem;
  }
}
.pd-install__subheading {
  font-size: 1.125rem;
  color: #d1d5db;
  max-width: 48rem;
  margin-inline: auto;
}

.pd-install__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .pd-install__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .pd-install__grid {
    grid-template-columns: repeat(5, 1fr);
  }
}

.pd-install__step {
  background-color: rgb(255 255 255 / 0.05);
  backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.1);
  padding: 1.5rem;
  border-radius: 1rem;
}

.pd-install__step-num {
  width: 48px;
  height: 48px;
  background: linear-gradient(to bottom right, var(--pd-blue), #1d4ed8);
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 1rem;
}

.pd-install__step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.75rem;
}
.pd-install__step-desc {
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.625;
}

.pd-install__note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.2);
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  margin-top: 3rem;
  /* center it */
  display: flex;
  width: fit-content;
  margin-inline: auto;
}
.pd-install__note-icon {
  width: 20px;
  height: 20px;
  color: #60a5fa;
  flex-shrink: 0;
}
.pd-install__note span {
  font-size: 0.875rem;
  color: #ffffff;
}

/* ============================================================
   CTA
   ============================================================ */
.pd-cta {
  padding-block: 5rem;
  background: linear-gradient(
    to bottom right,
    var(--pd-blue),
    #1d4ed8,
    #1e3a8a
  );
  text-align: center;
  color: #ffffff;
}

.pd-cta__container {
  max-width: 56rem;
  margin-inline: auto;
  padding-inline: 1rem;
}
@media (min-width: 640px) {
  .pd-cta__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .pd-cta__container {
    padding-inline: 2rem;
  }
}

.pd-cta__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 0.75rem 1.25rem;
  background-color: rgb(255 255 255 / 0.1);
  backdrop-filter: blur(24px);
  border: 1px solid rgb(255 255 255 / 0.2);
  border-radius: 9999px;
}
.pd-cta__badge-icon {
  width: 20px;
  height: 20px;
  color: #fde047;
}
.pd-cta__badge span {
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pd-cta__heading {
  font-size: 2.25rem;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) {
  .pd-cta__heading {
    font-size: 3rem;
  }
}

.pd-cta__subheading {
  font-size: 1.125rem;
  color: rgb(255 255 255 / 0.9);
  line-height: 1.625;
  max-width: 48rem;
  margin: 0 auto 2rem;
}

.pd-cta__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}
@media (min-width: 640px) {
  .pd-cta__actions {
    flex-direction: row;
  }
}

.pd-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition:
    background-color var(--pd-t),
    color var(--pd-t),
    box-shadow var(--pd-t),
    transform var(--pd-t);
}
.pd-cta__btn:hover {
  transform: translateY(-4px);
}

.pd-cta__btn--red {
  background-color: var(--pd-red);
  color: #ffffff;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2);
}
.pd-cta__btn--red:hover {
  background-color: var(--pd-red-dk);
  box-shadow: 0 20px 25px -5px rgb(220 38 38 / 0.5);
}
.pd-cta__btn--red:hover .pd-cta__btn-icon {
  transform: translateX(4px);
}

.pd-cta__btn--white {
  background-color: #ffffff;
  color: var(--pd-blue);
}
.pd-cta__btn--white:hover {
  background-color: #f3f4f6;
}

.pd-cta__btn-icon {
  width: 16px;
  height: 16px;
  margin-left: 0.5rem;
  flex-shrink: 0;
  transition: transform var(--pd-t);
}

.pd-cta__perks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
  color: rgb(255 255 255 / 0.8);
}
.pd-cta__perk {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.pd-cta__perk-icon {
  width: 20px;
  height: 20px;
  color: #4ade80;
  flex-shrink: 0;
}
.pd-cta__perk span {
  font-size: 0.875rem;
  font-weight: 600;
}

/* ============================================================
   RELATED
   ============================================================ */
.pd-related {
  padding-block: 5rem;
  background-color: #f9fafb;
}

.pd-related__container {
  max-width: 1280px;
  margin: 0 auto;
  padding-inline: 1rem;
  text-align: center;
}
@media (min-width: 640px) {
  .pd-related__container {
    padding-inline: 1.5rem;
  }
}
@media (min-width: 1024px) {
  .pd-related__container {
    padding-inline: 2rem;
  }
}

.pd-related__header {
  margin-bottom: 2rem;
}
.pd-related__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: #111827;
  margin-bottom: 1rem;
}
.pd-related__subheading {
  font-size: 1.125rem;
  color: #4b5563;
}

.pd-related__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--pd-blue);
  color: #ffffff;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.15);
  transition:
    background-color var(--pd-t),
    transform var(--pd-t);
}
.pd-related__btn:hover {
  background-color: #1d4ed8;
  transform: translateY(-4px);
}
.pd-related__btn:hover .pd-related__btn-icon {
  transform: translateX(4px);
}
.pd-related__btn-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform var(--pd-t);
}
