.page-products {
  --pp-orange: #FF4B2B;
  --pp-green: #0B3B2E;
  --pp-grass: #2E7D5B;
  --pp-white: #F5F7F4;
  --pp-ink: #1A1A1A;
  --pp-beige: #E8DFC9;
  overflow-x: hidden;
}

.page-products img {
  max-width: 100%;
  height: auto;
}

.page-products .pp-hero {
  position: relative;
  background: linear-gradient(135deg, rgba(255, 75, 43, 0.16) 0%, rgba(255, 75, 43, 0) 40%), var(--pp-green);
}

.page-products .pp-hero::before {
  content: "";
  position: absolute;
  top: 8%;
  right: -10rem;
  width: 30rem;
  height: 18rem;
  background: var(--pp-orange);
  opacity: 0.08;
  transform: rotate(-14deg);
  border-radius: 2rem;
  pointer-events: none;
}

.page-products .pp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
  padding: 3rem 0 3.5rem;
}

.page-products .pp-hero-copy {
  position: relative;
  z-index: 1;
}

.page-products .pp-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0.75rem 0 1rem;
  color: var(--pp-white);
  letter-spacing: 0.01em;
}

.page-products .pp-lead {
  color: rgba(245, 247, 244, 0.82);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 36em;
  margin: 0;
}

.page-products .pp-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  margin: 1.75rem 0 0;
  padding: 0;
}

.page-products .pp-hero-stat {
  background: rgba(46, 125, 91, 0.28);
  border: 1px solid rgba(245, 247, 244, 0.1);
  border-radius: var(--radius-sm);
  padding: 0.875rem 1rem;
  backdrop-filter: blur(4px);
}

.page-products .pp-hero-stat dt {
  font-size: 0.75rem;
  color: rgba(245, 247, 244, 0.55);
  letter-spacing: 0.08em;
}

.page-products .pp-hero-stat dd {
  margin: 0.25rem 0 0;
  font-family: var(--font-data);
  font-size: 1.05rem;
  line-height: 1.4;
  color: var(--pp-white);
  font-weight: 600;
}

.page-products .pp-hero-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(245, 247, 244, 0.12);
  box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.35);
}

.page-products .pp-hero-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pp-functions {
  position: relative;
  background: var(--pp-beige);
}

.page-products .pp-functions::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(135deg, rgba(255, 75, 43, 0.04) 0 8px, transparent 8px 20px);
  pointer-events: none;
}

.page-products .pp-functions .container {
  position: relative;
  z-index: 1;
}

.page-products .pp-functions .section-head h2,
.page-products .pp-evolution .section-head h2 {
  color: var(--pp-ink);
}

.page-products .pp-functions .section-head p,
.page-products .pp-evolution .section-head p {
  color: rgba(26, 26, 26, 0.7);
}

.page-products .pp-fn-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.page-products .pp-fn-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(26, 26, 26, 0.08);
  backdrop-filter: blur(6px);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.page-products .pp-fn-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2rem rgba(26, 26, 26, 0.08);
  border-color: rgba(255, 75, 43, 0.35);
}

.page-products .pp-fn-icon {
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  display: grid;
  place-items: center;
  border-radius: var(--radius-sm);
  background: var(--pp-green);
  color: var(--pp-white);
  border: 1px solid rgba(245, 247, 244, 0.12);
  box-shadow: 0 0.4rem 1rem rgba(11, 59, 46, 0.18);
}

.page-products .pp-fn-icon svg {
  width: 1.5rem;
  height: 1.5rem;
}

.page-products .pp-fn-body {
  min-width: 0;
}

.page-products .pp-fn-body h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: var(--pp-ink);
}

.page-products .pp-fn-body p {
  font-size: 0.92rem;
  color: rgba(26, 26, 26, 0.75);
  line-height: 1.65;
  margin: 0 0 0.75rem;
}

.page-products .pp-fn-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.page-products .pp-fn-link {
  display: inline-block;
  margin-top: 0.25rem;
  font-family: var(--font-data);
  font-size: 0.85rem;
  color: var(--pp-orange);
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s var(--ease);
}

.page-products .pp-fn-link:hover {
  color: var(--pp-grass);
}

.page-products .pp-update {
  background: var(--pp-green);
}

.page-products .pp-update .section-head h2,
.page-products .pp-desktop .section-head h2 {
  color: var(--pp-white);
}

.page-products .pp-update .section-head p,
.page-products .pp-desktop .section-head p {
  color: rgba(245, 247, 244, 0.72);
}

.page-products .pp-update-grid {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
}

.page-products .pp-update-copy .stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.page-products .pp-update-copy .stat {
  background: rgba(46, 125, 91, 0.22);
  border: 1px solid rgba(245, 247, 244, 0.1);
  border-radius: var(--radius-sm);
  padding: 1rem 0.75rem;
  text-align: center;
}

.page-products .pp-update-copy .stat-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(245, 247, 244, 0.55);
  letter-spacing: 0.08em;
  margin-bottom: 0.35rem;
}

.page-products .pp-update-copy .stat-num {
  display: block;
  font-family: var(--font-data);
  font-size: 1.35rem;
  color: var(--pp-white);
  font-weight: 600;
  line-height: 1.3;
}

.page-products .pp-update-copy .stat-note {
  display: block;
  font-size: 0.78rem;
  color: rgba(245, 247, 244, 0.6);
  margin-top: 0.25rem;
}

.page-products .pp-update-desc {
  color: rgba(245, 247, 244, 0.82);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1rem;
}

.page-products .pp-update-desc:last-of-type {
  margin-bottom: 1.5rem;
}

.page-products .pp-update-link {
  display: inline-block;
}

.page-products .pp-update-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(245, 247, 244, 0.1);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.3);
}

.page-products .pp-update-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pp-scenarios {
  background: var(--pp-white);
}

.page-products .pp-scenarios .section-head h2 {
  color: var(--pp-ink);
}

.page-products .pp-scenarios .section-head p {
  color: rgba(26, 26, 26, 0.7);
}

.page-products .pp-scenario-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.page-products .pp-scenario-card {
  position: relative;
  background: var(--pp-beige);
  padding: 2rem 1.5rem 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 26, 26, 0.08);
  box-shadow: 0 0.75rem 2rem rgba(26, 26, 26, 0.06);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.page-products .pp-scenario-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 1rem 2.5rem rgba(26, 26, 26, 0.1);
}

.page-products .pp-scenario-num {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 0.8rem;
  color: var(--pp-orange);
  letter-spacing: 0.12em;
  margin-bottom: 1rem;
}

.page-products .pp-scenario-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--pp-ink);
  margin: 0 0 0.5rem;
}

.page-products .pp-scenario-card p {
  font-size: 0.92rem;
  color: rgba(26, 26, 26, 0.72);
  line-height: 1.65;
  margin: 0 0 1rem;
}

.page-products .pp-compare-figure {
  max-width: 440px;
  margin: 2rem auto 0;
  padding: 0.75rem;
  background: var(--pp-beige);
  border-radius: var(--radius-sm);
  border: 1px solid rgba(26, 26, 26, 0.08);
}

.page-products .pp-compare-figure img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--radius-sm) - 4px);
}

.page-products .pp-desktop {
  background: var(--pp-green);
}

.page-products .pp-desktop-grid {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
  align-items: center;
}

.page-products .pp-desktop-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(245, 247, 244, 0.1);
  box-shadow: 0 1.25rem 2.5rem rgba(0, 0, 0, 0.3);
}

.page-products .pp-desktop-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pp-desktop-copy {
  color: rgba(245, 247, 244, 0.82);
  font-size: 0.95rem;
  line-height: 1.7;
}

.page-products .pp-desktop-copy a {
  color: var(--pp-orange-soft);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-products .pp-desktop-steps {
  counter-reset: pp-step;
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.page-products .pp-desktop-steps li {
  counter-increment: pp-step;
  position: relative;
  padding: 0.25rem 0 0.75rem 2.75rem;
  font-size: 0.95rem;
  color: rgba(245, 247, 244, 0.88);
}

.page-products .pp-desktop-steps li::before {
  content: counter(pp-step, decimal-leading-zero);
  position: absolute;
  left: 0;
  top: 0.05rem;
  width: 1.9rem;
  height: 1.9rem;
  display: grid;
  place-items: center;
  font-family: var(--font-data);
  font-size: 0.85rem;
  color: var(--pp-white);
  background: var(--pp-orange);
  border-radius: 50%;
  box-shadow: 0 0.25rem 0.75rem rgba(255, 75, 43, 0.35);
}

.page-products .pp-evolution {
  background: var(--pp-beige);
}

.page-products .pp-evolution-grid {
  display: grid;
  gap: 2rem;
  margin-top: 1.5rem;
  align-items: start;
}

.page-products .pp-timeline {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 1.25rem;
}

.page-products .pp-timeline::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.4rem;
  bottom: 0.4rem;
  width: 2px;
  background: linear-gradient(to bottom, var(--pp-orange) 0%, var(--pp-grass) 100%);
}

.page-products .pp-timeline-item {
  position: relative;
  padding: 0 0 1.75rem 1.5rem;
}

.page-products .pp-timeline-item:last-child {
  padding-bottom: 0;
}

.page-products .pp-timeline-item::before {
  content: "";
  position: absolute;
  left: -0.425rem;
  top: 0.45rem;
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--pp-orange);
  border: 2px solid var(--pp-beige);
  box-shadow: 0 0 0 2px rgba(255, 75, 43, 0.3);
}

.page-products .pp-timeline-year {
  display: inline-block;
  font-family: var(--font-data);
  font-size: 0.9rem;
  color: var(--pp-orange);
  letter-spacing: 0.08em;
  margin-bottom: 0.3rem;
}

.page-products .pp-timeline-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--pp-ink);
  margin: 0 0 0.25rem;
}

.page-products .pp-timeline-content p {
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.7);
  line-height: 1.6;
  margin: 0;
}

.page-products .pp-evolution-figure {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(26, 26, 26, 0.1);
  box-shadow: 0 1rem 2rem rgba(26, 26, 26, 0.08);
}

.page-products .pp-evolution-figure img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-products .pp-cta {
  background: linear-gradient(135deg, var(--pp-green) 0%, var(--pp-grass) 55%, var(--pp-orange) 175%);
}

.page-products .pp-cta-inner {
  text-align: center;
  padding: 3.5rem 0 4rem;
  color: var(--pp-white);
}

.page-products .pp-cta-inner h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--pp-white);
}

.page-products .pp-cta-inner p {
  color: rgba(245, 247, 244, 0.82);
  margin: 0 0 1.5rem;
}

.page-products .pp-cta-links {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .page-products .pp-hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    gap: 3rem;
    padding-top: 3.5rem;
    padding-bottom: 4rem;
  }

  .page-products .pp-hero-stats {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  .page-products .pp-fn-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
  }

  .page-products .pp-update-grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 0.9fr);
    gap: 3rem;
    align-items: center;
    margin-top: 2rem;
  }

  .page-products .pp-scenario-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .page-products .pp-desktop-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
    gap: 3rem;
    margin-top: 2rem;
  }

  .page-products .pp-evolution-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 3rem;
    margin-top: 2rem;
  }
}

@media (min-width: 1100px) {
  .page-products .pp-hero h1 {
    font-size: clamp(3rem, 5vw, 4.2rem);
  }

  .page-products .pp-fn-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .page-products .pp-fn-card {
    flex-direction: column;
  }

  .page-products .pp-fn-icon {
    width: 3.5rem;
    height: 3.5rem;
  }

  .page-products .pp-fn-icon svg {
    width: 1.75rem;
    height: 1.75rem;
  }

  .page-products .pp-compare-figure {
    max-width: 480px;
  }
}

.page-products {
  --pp-orange-soft: currentColor;
}
