.pb-home {
  background: #000;
  color: #fff;
  font-family: Arial, Helvetica, sans-serif;
}

.pb-home img {
  display: block;
  max-width: 100%;
  height: auto;
}

.pb-wrap {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* HERO */
.pb-hero {
  background: #000;
  padding: 40px 0 70px;
}

.pb-hero__wrap {
  min-height: 520px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 20px;
}

.pb-hero__logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pb-hero__logo img {
  width: min(520px, 100%);
}

.pb-hero__product {
  display: flex;
  justify-content: center;
  align-items: center;
}

.pb-hero__product img {
  width: min(650px, 100%);
}

/* INTRO */
.pb-intro {
  background: #000;
  padding: 50px 0 80px;
}

.pb-intro__top {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.pb-intro__title {
  margin: 0;
  font-size: 4.6rem;
  line-height: 0.98;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.pb-intro__text {
  max-width: 420px;
  padding-top: 38px;
}

.pb-intro__text p {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.65;
  color: #f2f2f2;
}

.pb-intro__video-wrap {
  margin-top: 70px;
}

.pb-intro__video-box {
  width: min(760px, 100%);
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}
.pb-intro__video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
}

/* FEATURES */
.pb-features {
  background: #000;
  padding: 80px 0 110px;
}

.pb-features__head {
  text-align: center;
  margin-bottom: 42px;
}

.pb-features__kicker {
  margin: 0 0 8px;
  font-size: 1.05rem;
  color: #a9a9a9;
}

.pb-features__title {
  margin: 0;
  font-size: 3.8rem;
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: -0.04em;
}

.pb-features__grid {
  width: min(980px, 100%);
  margin: 0 auto 28px;
  display: grid;
  grid-template-columns: 1.55fr 0.95fr;
  grid-template-rows: 330px 330px;
  gap: 16px;
}

.pb-feature {
  border-radius: 24px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 18px 50px rgba(0,0,0,0.28);
}

.pb-feature img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.pb-feature--main {
  grid-row: 1 / span 2;
}

.pb-feature--top {
  grid-column: 2;
  grid-row: 1;
}

.pb-feature--bottom {
  grid-column: 2;
  grid-row: 2;
}

.pb-features__text-left {
  width: min(980px, 100%);
  margin: 0 auto 70px;
}

.pb-features__text-left p {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.75;
  color: #d8d8d8;
}

.pb-features__text-center {
  text-align: center;
}

.pb-features__text-center p {
  margin: 0 0 6px;
  font-size: 1.35rem;
  line-height: 1.45;
}

/* SPECS */
.pb-specs {
  background: #000;
  padding: 30px 0 110px;
}

.pb-specs__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 60px 50px;
  align-items: start;
}

.pb-spec {
  text-align: center;
}

.pb-spec__icon {
  width: 50px;
  height: 50px;
  margin: 0 auto 14px;
  color: #fff;
}

.pb-spec__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.pb-spec h3 {
  margin: 0 0 8px;
  font-size: 1.15rem;
  font-weight: 400;
  color: #fff;
}

.pb-spec p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.5;
  color: #d7d7d7;
}

/* REVEAL ON SCROLL */
.pb-reveal {
  opacity: 1;
  transform: none;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.pb-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* FOTO FEATURES */
.pb-feature img {
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.pb-feature img.is-swapping {
  opacity: 0.35;
  transform: scale(0.98);
}

/* TESTI FEATURES PIU BELLI */

.pb-features__text-center {
  width: min(760px, 100%);
  margin: 0 auto;
  text-align: center;
  padding: 34px 28px;
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 18px 50px rgba(0,0,0,0.22);
}

.pb-features__text-center p {
  margin: 0 0 10px;
  font-size: 1.45rem;
  line-height: 1.45;
  color: #fff;
}

.pb-features__text-center p:first-child {
  font-size: 1.7rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.pb-features__text-center p:last-child {
  margin-bottom: 0;
}

/* UN TOCCO PIU PARTICOLARE */
.pb-features__title,
.pb-intro__title {
  text-wrap: balance;
}

.pb-feature {
  box-shadow: 0 18px 50px rgba(0,0,0,0.35);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .pb-hero__wrap,
  .pb-intro__top {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pb-hero {
    padding: 30px 0 50px;
  }

  .pb-hero__logo,
  .pb-hero__product {
    justify-content: center;
  }

  .pb-intro__text {
    max-width: 100%;
    padding-top: 0;
  }

  .pb-features__title {
    font-size: 2.4rem;
  }
}

@media (max-width: 767px) {
  .pb-wrap {
    width: min(100% - 32px, 100%);
  }

  .pb-intro__title {
    font-size: 2.5rem;
  }

  .pb-features__title {
    font-size: 2rem;
  }

.pb-features__grid {
  width: 100%;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 14px;
}

.pb-features__text-left p,
.pb-features__text-center {
  width: 100%;
}

.pb-features__text-center {
  padding: 24px 18px;
}

.pb-features__text-center p {
  font-size: 1.12rem;
}

.pb-features__text-center p:first-child {
  font-size: 1.3rem;
}
  .pb-feature--main,
  .pb-feature--top,
  .pb-feature--bottom {
    grid-column: auto;
    grid-row: auto;
  }

  .pb-feature img {
    height: auto;
    object-fit: contain;
  }

  .pb-features__text-left {
    margin-bottom: 45px;
  }

  .pb-specs__grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}