.page-products {
  --pp-bg: #FDF6E3;
  --pp-ink: #3E2A1E;
  --pp-deep: #1D3557;
  --pp-brand: #FF6B35;
  --pp-success: #2A9D8F;
  --pp-surface: #FFFFFF;
  --pp-muted: #6B5D4F;
  background: var(--pp-bg);
  color: var(--pp-ink);
  font-family: var(--font-body);
  line-height: 1.6;
}

.page-products .pp-hero {
  padding: 112px 0 48px;
  background: linear-gradient(135deg, transparent 0 64%, rgba(255, 107, 53, 0.08) 64% 100%);
}

.page-products .pp-hero__grid {
  display: block;
}

.page-products .pp-hero__copy h1 {
  margin: 16px 0 18px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 5vw, 3.6rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--pp-ink);
}

.page-products .pp-hero__lead {
  margin: 0 0 24px;
  font-size: 16px;
  line-height: 1.7;
  color: var(--pp-muted);
  max-width: 58ch;
}

.page-products .pp-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.page-products .pp-hero__mark {
  margin-top: 36px;
  padding: 40px 32px;
  background: var(--pp-deep);
  border-radius: 4px 4px 18px 4px;
  clip-path: polygon(0 0, 100% 0, 94% 88%, 0 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}

.page-products .pp-hero__kicker {
  font-size: 13px;
  letter-spacing: 0.24em;
  color: rgba(253, 246, 227, 0.62);
}

.page-products .pp-hero__big {
  margin: 8px 0 0;
  display: block;
  font-family: var(--font-number);
  font-weight: 800;
  font-size: clamp(5rem, 14vw, 8.6rem);
  line-height: 0.9;
  color: var(--pp-brand);
}

.page-products .pp-hero__label {
  margin-top: 12px;
  font-size: 13px;
  letter-spacing: 0.32em;
  color: rgba(253, 246, 227, 0.9);
}

.page-products .pp-hero__badge {
  margin-top: 28px;
  padding: 6px 12px;
  border: 1px solid rgba(253, 246, 227, 0.28);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: rgba(253, 246, 227, 0.78);
}

.page-products .pp-section-head {
  margin-bottom: 36px;
  border-left: 4px solid var(--pp-brand);
  padding-left: 20px;
}

.page-products .pp-section-head__lead {
  margin: 12px 0 0;
  font-size: 16px;
  color: var(--pp-muted);
  max-width: 56ch;
}

.page-products .pp-features__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.page-products .pp-feature {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--pp-surface);
  border: 1px solid #E7DDCC;
  box-shadow: 0 6px 20px rgba(29, 53, 87, 0.06);
}

.page-products .pp-feature--spotlight::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  background: var(--pp-brand);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  opacity: 0.12;
}

.page-products .pp-feature__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.page-products .pp-feature__num {
  font-family: var(--font-number);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--pp-brand);
}

.page-products .pp-feature__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 12px;
}

.page-products .pp-feature__img--square {
  aspect-ratio: 1 / 1;
}

.page-products .pp-feature--wide .pp-feature__img {
  aspect-ratio: 2 / 1;
}

.page-products .pp-feature h3 {
  margin: 8px 0 0;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--pp-deep);
}

.page-products .pp-feature p {
  margin: 0;
  font-size: 15px;
  color: var(--pp-muted);
}

.page-products .pp-feature .btn {
  margin-top: auto;
}

.page-products .pp-tablet {
  background: var(--pp-deep);
  padding: 88px 0;
  color: var(--pp-bg);
  clip-path: polygon(0 1.5%, 100% 0, 100% 98.5%, 0 100%);
}

.page-products .pp-tablet .pp-section-head {
  border-left-color: var(--pp-brand);
}

.page-products .pp-tablet .section-index,
.page-products .pp-tablet .pp-section-head__lead {
  color: rgba(253, 246, 227, 0.62);
}

.page-products .pp-tablet .section-title {
  color: var(--pp-bg);
}

.page-products .pp-tablet__frame {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 48px;
}

.page-products .pp-tablet__img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
  border-radius: 14px;
  border: 4px solid rgba(253, 246, 227, 0.85);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.page-products .pp-tablet__aside {
  background: rgba(253, 246, 227, 0.08);
  border: 1px solid rgba(253, 246, 227, 0.2);
  border-radius: 16px;
  padding: 26px 24px;
}

.page-products .pp-tablet__list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 14px;
}

.page-products .pp-tablet__list li {
  padding-left: 30px;
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(253, 246, 227, 0.92);
}

.page-products .pp-tablet__list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 10px;
  height: 10px;
  background: var(--pp-success);
  transform: rotate(45deg);
}

.page-products .pp-data__grid {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.page-products .pp-data__panel {
  padding: 28px;
  border-radius: 14px;
  background: var(--pp-surface);
  border: 1px solid #D8CDBB;
  box-shadow: 0 8px 24px rgba(29, 53, 87, 0.06);
}

.page-products .pp-data__list {
  margin: 0;
}

.page-products .pp-data__row {
  padding: 20px 0;
  border-bottom: 1px dashed #D8CDBB;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.page-products .pp-data__row:last-child {
  border-bottom: 0;
}

.page-products .pp-data__row dt {
  font-size: 13px;
  letter-spacing: 0.14em;
  color: var(--pp-muted);
}

.page-products .pp-data__row dd {
  margin: 0;
  font-weight: 600;
  font-size: 16px;
  color: var(--pp-ink);
}

.page-products .pp-data__row dd:last-child {
  max-width: 42ch;
}

.page-products .pp-data__num {
  font-family: var(--font-number);
  font-size: 3rem;
  font-weight: 800;
  line-height: 1;
  color: var(--pp-brand);
}

.page-products .pp-bell__card {
  display: flex;
  flex-direction: column;
  gap: 26px;
  padding: 36px 28px;
  background: linear-gradient(135deg, #FF6B35, #E85D2A);
  border-radius: 18px;
  box-shadow: 0 18px 44px rgba(232, 93, 42, 0.38);
  color: #FFFFFF;
}

.page-products .pp-bell__icon {
  flex: 0 0 80px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(253, 246, 227, 0.2);
  display: grid;
  place-items: center;
  animation: pp-bell-pulse 2.2s ease-in-out infinite;
}

@keyframes pp-bell-pulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(253, 246, 227, 0.5);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 0 0 14px rgba(253, 246, 227, 0);
  }
}

.page-products .pp-bell__copy .section-index {
  color: rgba(255, 255, 255, 0.72);
}

.page-products .pp-bell__copy .section-title {
  color: #FFFFFF;
}

.page-products .pp-bell__copy p {
  margin: 14px 0 20px;
  max-width: 50ch;
  color: rgba(255, 255, 255, 0.92);
}

.page-products .pp-bell__copy .btn--primary {
  background: var(--pp-deep);
}

.page-products .pp-download {
  text-align: center;
}

.page-products .pp-download .pp-section-head {
  border-left: 0;
  padding-left: 0;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.page-products .pp-download .pp-section-head__lead {
  margin-left: auto;
  margin-right: auto;
}

.page-products .pp-download__note {
  margin: 22px auto 0;
  max-width: 62ch;
  font-size: 14px;
  color: var(--pp-muted);
  line-height: 1.7;
}

.page-products .pp-download__links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

@media (min-width: 720px) {
  .page-products .pp-features__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-products .pp-bell__card {
    flex-direction: row;
    align-items: center;
    padding: 44px 52px;
  }

  .page-products .pp-bell__icon {
    flex-basis: 116px;
    width: 116px;
    height: 116px;
  }
}

@media (min-width: 1024px) {
  .page-products .pp-hero {
    padding: 144px 0 72px;
  }

  .page-products .pp-hero__grid {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    align-items: stretch;
    gap: 52px;
  }

  .page-products .pp-hero__mark {
    margin-top: 0;
    padding: 56px 44px 56px 52px;
    clip-path: polygon(12% 0, 100% 0, 88% 100%, 0 100%);
  }

  .page-products .pp-hero__copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-right: 48px;
  }

  .page-products .pp-features__grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 26px;
  }

  .page-products .pp-feature--spotlight {
    grid-column: span 4;
  }

  .page-products .pp-feature--wide {
    grid-column: span 4;
  }

  .page-products .pp-feature:not(.pp-feature--spotlight):not(.pp-feature--wide) {
    grid-column: span 2;
  }

  .page-products .pp-tablet {
    padding: 104px 0;
  }

  .page-products .pp-tablet__frame {
    display: grid;
    grid-template-columns: 7fr 3.6fr;
    align-items: center;
    gap: 40px;
  }

  .page-products .pp-tablet__aside {
    padding: 32px 28px;
  }

  .page-products .pp-data__grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    align-items: start;
    gap: 64px;
  }

  .page-products .pp-data__panel {
    padding: 36px 32px;
  }

  .page-products .pp-download__links {
    gap: 16px;
  }
}
