.pa-page {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.pa-page img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pa-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* HERO */
.pa-hero {
  position: relative;
  min-height: 540px;
  overflow: hidden;
  background: #111;
}

.pa-hero__bg {
  position: absolute;
  inset: 0;
}

.pa-hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 93%;
}

.pa-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.15) 55%, rgba(0,0,0,.10) 100%);
}

.pa-hero__content {
  position: relative;
  z-index: 2;
  min-height: 540px;
  display: flex;
  align-items: center;
}

.pa-hero__title {
  margin: 0;
  font-size: 4.2rem;
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #fff;
}

/* INTRO */
.pa-intro {
  background: #000;
  padding: 58px 0 30px;
}

.pa-intro__kicker-wrap {
  text-align: center;
  margin-bottom: 46px;
}

.pa-intro__kicker {
  margin: 0;
  font-size: 1rem;
  color: #d3d3d3;
  font-style: italic;
}

.pa-intro__grid {
  display: grid;
  grid-template-columns: 520px 520px;
  gap: 70px;
  align-items: start;
  justify-content: center;
}

.pa-intro__title-col {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}

.pa-intro__text-col {
  max-width: 520px;
}

.pa-intro__title {
  margin: 0;
  font-size: 3.4rem;
  line-height: 1;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.pa-intro__text-col p {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.72;
  color: #f2f2f2;
}

/* VIDEO */
.pa-video {
  background: #000;
  padding: 30px 0 36px;
}

.pa-video__box {
  width: min(760px, 100%);
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,.35);
}

.pa-video__iframe {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

.pa-video__cta {
  text-align: center;
  margin-top: 34px;
}

.pa-btn {
  display: inline-block;
  padding: 14px 24px;
  border-radius: 999px;
  background: #d70f2f;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: transform .2s ease, opacity .2s ease;
}

.pa-btn:hover {
  opacity: .92;
  transform: translateY(-1px);
}

/* COPY */
.pa-copy {
  background: #000;
  padding: 38px 0 46px;
}

.pa-copy__inner {
  width: min(860px, 100%);
  text-align: center;
}

.pa-copy__inner p {
  margin: 0 0 20px;
  font-size: 1.12rem;
  line-height: 1.8;
  color: #f1f1f1;
}

.pa-copy__inner p:last-child {
  margin-bottom: 0;
}

/* ICONS */
.pa-icons {
  background: #000;
  padding: 34px 0 44px;
}

.pa-icons__grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 26px;
  align-items: start;
}

.pa-iconbox {
  text-align: center;
}

.pa-iconbox__icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  color: #fff;
}

.pa-iconbox__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.pa-iconbox h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 400;
  color: #fff;
}

/* CLAIM */
.pa-claim {
  background: #000;
  padding: 28px 0 90px;
}

.pa-claim__inner {
  width: min(760px, 100%);
  text-align: center;
}

.pa-claim__inner p {
  margin: 0 0 8px;
  color: #fff;
}

.pa-claim__inner p:first-child {
  font-size: 1.15rem;
}

.pa-claim__inner p:last-child {
  font-size: 1rem;
  color: #d8d8d8;
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pa-intro__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .pa-icons__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px 22px;
  }

  .pa-hero__title {
    font-size: 3.4rem;
  }

  .pa-intro__title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .pa-wrap {
    width: min(100% - 32px, 100%);
  }

  .pa-hero {
    min-height: 360px;
  }

  .pa-hero__content {
    min-height: 360px;
  }

  .pa-hero__title {
    font-size: 2.4rem;
  }

  .pa-intro__title {
    font-size: 2.3rem;
  }

  .pa-intro__text-col p,
  .pa-copy__inner p {
    font-size: 1rem;
  }

  .pa-icons__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pa-claim {
    padding-bottom: 60px;
  }
}