.page-products {
  --pp-deep-soft: #153F56;
  --pp-gold-soft: rgba(212, 175, 55, 0.14);
  --pp-green-soft: rgba(0, 179, 134, 0.10);
  --pp-white: #FFFFFF;
  background: var(--c-bg);
}

.page-products *,
.page-products *::before,
.page-products *::after {
  box-sizing: border-box;
}

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

.pp-container {
  width: min(100% - 40px, 1200px);
  margin-inline: auto;
}

.page-products .breadcrumb {
  margin-bottom: 18px;
  font-size: 0.85rem;
}

.pp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--t-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-primary-deep);
  margin-bottom: 16px;
}

.pp-eyebrow::before {
  content: "";
  width: 32px;
  height: 2px;
  background: var(--c-gold);
}

.pp-section-tag {
  display: inline-block;
  font-family: var(--t-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin: 0 0 12px;
  padding: 6px 14px;
  border: 1px solid rgba(212, 175, 55, 0.42);
  border-radius: 999px;
}

/* Hero */
.pp-hero {
  position: relative;
  padding: 28px 0 72px;
  overflow: hidden;
}

.pp-hero::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 34%;
  height: 100%;
  background: linear-gradient(135deg, transparent 0%, rgba(0, 179, 134, 0.10) 100%);
  clip-path: polygon(18% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.pp-hero::after {
  content: "";
  position: absolute;
  bottom: -80px;
  left: -60px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 68%);
  pointer-events: none;
}

.pp-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 44px;
}

.pp-hero-copy h1 {
  font-size: clamp(2rem, 7vw, 3.8rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  margin: 0 0 18px;
  color: var(--c-deep);
}

.pp-lead {
  font-size: clamp(0.95rem, 2.2vw, 1.08rem);
  color: var(--c-text-2);
  max-width: 34em;
  line-height: 1.75;
}

.pp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 26px;
}

.pp-hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
}

.pp-hero-points li {
  position: relative;
  padding-left: 22px;
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--c-deep-2);
}

.pp-hero-points li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--c-primary);
  font-weight: 900;
}

.pp-hero-visual {
  position: relative;
  margin-inline: auto;
  width: fit-content;
}

.pp-phone-frame {
  position: relative;
  width: min(72vw, 280px);
  margin-inline: auto;
  border-radius: 34px;
  padding: 10px;
  background: linear-gradient(160deg, var(--c-deep-3), var(--c-deep));
  box-shadow: var(--shadow-md), 0 30px 60px rgba(15, 43, 61, 0.20);
}

.pp-phone-frame::after {
  content: "";
  display: block;
  height: 6px;
  width: 70px;
  margin: 12px auto 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
}

.pp-phone-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 24px;
  background: #EAF2EF;
}

.pp-hero-badge {
  position: absolute;
  top: 30px;
  right: -8px;
  background: var(--c-gold);
  color: var(--c-deep);
  padding: 8px 14px;
  border-radius: 999px;
  font-family: var(--t-mono);
  font-weight: 800;
  font-size: 0.78rem;
  box-shadow: var(--shadow-gold);
  z-index: 2;
  transform: rotate(3deg);
}

.pp-hero-badge--stroke {
  position: absolute;
  top: auto;
  bottom: 30px;
  left: -8px;
  right: auto;
  background: transparent;
  border: 1.5px solid var(--c-gold);
  color: var(--c-gold);
  box-shadow: none;
  transform: rotate(-3deg);
}

@media (min-width: 860px) {
  .pp-hero {
    padding: 48px 0 84px;
  }

  .pp-hero-grid {
    grid-template-columns: 1.05fr 0.95fr;
    align-items: center;
    gap: 60px;
  }

  .pp-phone-frame {
    width: 280px;
  }
}

/* Install guide */
.pp-install {
  position: relative;
  padding: 72px 0;
  background: var(--c-deep);
  color: var(--pp-white);
  isolation: isolate;
}

.pp-install::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(110deg, rgba(0, 179, 134, 0.20) 0%, transparent 40%),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0 2px, transparent 2px 8px);
}

.pp-install-grid {
  display: grid;
  gap: 44px;
}

.pp-install h2 {
  font-size: clamp(1.7rem, 4.4vw, 2.6rem);
  margin: 0 0 14px;
  color: var(--pp-white);
}

.pp-install-copy > p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 36em;
  line-height: 1.75;
}

.pp-step-list {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 16px;
}

.pp-step-list li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: var(--radius-sm);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  line-height: 1.5;
}

.pp-step-list span {
  flex: 0 0 auto;
  font-family: var(--t-mono);
  font-weight: 800;
  color: var(--c-gold);
  background: rgba(212, 175, 55, 0.12);
  border-radius: 6px;
  padding: 4px 8px;
  font-size: 0.76rem;
}

.pp-platform-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.pp-platform-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid rgba(0, 179, 134, 0.42);
  border-radius: 999px;
  background: rgba(0, 179, 134, 0.12);
  color: #BAF3E5;
  font-size: 0.82rem;
  font-weight: 600;
}

.pp-install-qr {
  display: flex;
  justify-content: center;
}

.pp-qr-card {
  width: min(100%, 320px);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(212, 175, 55, 0.36);
  border-radius: var(--radius);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: var(--shadow-gold);
}

.pp-qr-card svg {
  width: min(100%, 180px);
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}

.pp-qr-card p {
  margin: 18px 0 0;
  text-align: center;
  font-weight: 700;
  color: var(--pp-white);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

.pp-qr-card small {
  color: rgba(255, 255, 255, 0.66);
  font-weight: 400;
  margin-top: 10px;
  text-align: center;
  font-size: 0.78rem;
  line-height: 1.6;
}

@media (min-width: 860px) {
  .pp-install {
    padding: 88px 0;
  }

  .pp-install-grid {
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 64px;
  }

  .pp-qr-card {
    padding: 36px 28px;
  }
}

/* Features */
.pp-features {
  position: relative;
  padding: 84px 0;
}

.pp-section-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.pp-section-head h2 {
  font-size: clamp(1.8rem, 4.4vw, 2.9rem);
  line-height: 1.14;
  margin: 0 0 16px;
  color: var(--c-deep);
  letter-spacing: -0.02em;
}

.pp-section-head > p:not(.pp-section-tag) {
  color: var(--c-text-2);
  font-size: 1.02rem;
  line-height: 1.75;
}

.pp-features-grid {
  display: grid;
  gap: 28px;
}

.pp-feature-card {
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), transform 0.3s var(--ease);
}

.pp-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-primary), var(--c-gold));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s var(--ease);
}

.pp-feature-card:hover {
  border-color: var(--c-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pp-feature-card:hover::before {
  transform: scaleX(1);
}

.pp-feature-top {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-bottom: 14px;
}

.pp-feature-top h3 {
  margin: 0;
  font-size: 1.16rem;
  line-height: 1.32;
  letter-spacing: -0.01em;
  color: var(--c-deep);
}

.pp-feature-icon {
  flex: 0 0 auto;
  width: 46px;
  height: 46px;
  padding: 9px;
  border-radius: 12px;
  background: var(--pp-green-soft);
  border: 1px solid rgba(0, 179, 134, 0.22);
  stroke: var(--c-primary-deep);
}

.pp-feature-card p {
  color: var(--c-text-2);
  margin-bottom: 16px;
  font-size: 0.96rem;
  line-height: 1.7;
}

.pp-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 18px;
  display: grid;
  gap: 8px;
}

.pp-feature-list li {
  padding-left: 22px;
  position: relative;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--c-deep-2);
}

.pp-feature-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 7px;
  width: 7px;
  height: 7px;
  background: var(--c-primary);
  transform: rotate(45deg);
}

.pp-figure {
  margin: auto 0 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  background: var(--c-bg);
  border: 1px solid var(--c-border);
}

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

.pp-figure figcaption {
  padding: 10px 14px;
  font-size: 0.8rem;
  color: var(--c-text-2);
  background: var(--c-bg);
  letter-spacing: 0.02em;
}

.pp-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--c-primary-deep);
  text-decoration: none;
  transition: color 0.25s ease;
}

.pp-card-link::after {
  content: "→";
  transition: transform 0.25s var(--ease);
}

.pp-card-link:hover {
  color: var(--c-deep);
}

.pp-card-link:hover::after {
  transform: translateX(4px);
}

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

@media (min-width: 1080px) {
  .pp-features-grid {
    grid-template-columns: repeat(12, 1fr);
  }

  .pp-feature-card:nth-child(1) {
    grid-column: span 5;
  }

  .pp-feature-card:nth-child(2) {
    grid-column: span 7;
  }

  .pp-feature-card:nth-child(3) {
    grid-column: span 6;
  }

  .pp-feature-card:nth-child(4) {
    grid-column: span 6;
  }
}

/* Roadmap */
.pp-roadmap {
  padding: 84px 0;
  background: var(--c-deep);
  color: var(--pp-white);
  position: relative;
  overflow: hidden;
}

.pp-roadmap::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  background: linear-gradient(140deg, transparent 0%, rgba(0, 179, 134, 0.16) 100%);
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0 100%);
  pointer-events: none;
}

.pp-roadmap-head {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-bottom: 44px;
}

.pp-roadmap-head h2 {
  font-size: clamp(1.8rem, 4.4vw, 2.9rem);
  line-height: 1.14;
  margin: 0;
  color: var(--pp-white);
  letter-spacing: -0.02em;
}

.pp-timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 22px;
  position: relative;
}

.pp-timeline-item {
  position: relative;
  padding: 26px 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.05);
  transition: border-color 0.3s ease, background 0.3s ease;
}

.pp-timeline-item:hover {
  border-color: rgba(0, 179, 134, 0.6);
  background: rgba(0, 179, 134, 0.08);
}

.pp-version-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--t-mono);
  font-weight: 800;
  font-size: 1rem;
  color: var(--c-deep);
  background: var(--c-gold);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-gold);
}

.pp-timeline-item--current .pp-version-badge {
  background: var(--c-primary);
  color: var(--pp-white);
}

.pp-timeline-body h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  color: var(--pp-white);
}

.pp-timeline-body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.65;
}

.pp-current-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-primary);
  background: rgba(0, 179, 134, 0.14);
  border: 1px solid rgba(0, 179, 134, 0.35);
  border-radius: 999px;
  padding: 3px 10px;
  margin-left: 6px;
  vertical-align: middle;
}

.pp-roadmap-note {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.92rem;
}

.pp-roadmap-note a {
  color: var(--c-gold-light);
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 880px) {
  .pp-roadmap {
    padding: 96px 0;
  }

  .pp-timeline {
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
  }

  .pp-timeline::before {
    content: "";
    position: absolute;
    top: 38px;
    left: 8%;
    right: 8%;
    height: 2px;
    background: linear-gradient(90deg, rgba(0, 179, 134, 0.4), rgba(212, 175, 55, 0.5));
  }

  .pp-timeline-item {
    padding-top: 58px;
  }

  .pp-version-badge {
    position: absolute;
    top: 16px;
    left: 22px;
    margin-bottom: 0;
  }
}

/* Devices */
.pp-devices {
  padding: 84px 0;
  background: linear-gradient(125deg, var(--c-primary-deep) 0%, var(--c-primary) 55%, #18C5A0 100%);
  color: var(--pp-white);
}

.pp-devices-grid {
  display: grid;
  gap: 44px;
  align-items: center;
}

.pp-devices-visual {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pp-devices-visual img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.pp-devices-copy h2 {
  font-size: clamp(1.7rem, 4vw, 2.6rem);
  line-height: 1.16;
  color: var(--pp-white);
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.pp-devices-copy > p {
  color: rgba(255, 255, 255, 0.86);
  margin: 0 0 24px;
  line-height: 1.75;
  max-width: 34em;
}

.pp-device-list {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.pp-device-list li {
  padding-left: 24px;
  position: relative;
  color: rgba(255, 255, 255, 0.94);
  font-weight: 600;
  font-size: 0.9rem;
}

.pp-device-list li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 6px;
  width: 10px;
  height: 10px;
  border-radius: 2px;
  background: var(--c-gold);
  transform: rotate(12deg);
}

.pp-devices .pp-section-tag {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.36);
  color: var(--pp-white);
}

.pp-devices .btn-gold {
  box-shadow: var(--shadow-gold);
}

@media (min-width: 880px) {
  .pp-devices-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: 64px;
  }
}

/* Testimonials */
.pp-testimonials {
  padding: 84px 0;
  background: var(--c-bg);
}

.pp-quote-head {
  max-width: 720px;
  margin-bottom: 44px;
}

.pp-quote-head h2 {
  font-size: clamp(1.8rem, 4.4vw, 2.9rem);
  line-height: 1.14;
  margin: 0;
  color: var(--c-deep);
  letter-spacing: -0.02em;
}

.pp-quotes-grid {
  display: grid;
  gap: 22px;
}

.pp-quote {
  margin: 0;
  padding: 28px 30px;
  background: var(--c-surface);
  border: 1px solid var(--c-border);
  border-left: 4px solid var(--c-gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
}

.pp-quote p {
  margin: 0 0 14px;
  font-size: 0.98rem;
  line-height: 1.72;
  color: var(--c-text);
}

.pp-quote footer {
  color: var(--c-text-2);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pp-quote footer::before {
  content: "— ";
  color: var(--c-gold);
}

@media (min-width: 760px) {
  .pp-quotes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Final CTA */
.pp-cta {
  padding: 80px 0;
  background: var(--c-deep);
  color: var(--pp-white);
  position: relative;
  overflow: hidden;
}

.pp-cta::before {
  content: "";
  position: absolute;
  left: -90px;
  top: -110px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  border: 60px solid rgba(0, 179, 134, 0.16);
  pointer-events: none;
}

.pp-cta::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -120px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.20), transparent 68%);
  pointer-events: none;
}

.pp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 720px;
  margin-inline: auto;
  text-align: center;
}

.pp-cta-inner .pp-section-tag {
  margin-bottom: 18px;
}

.pp-cta-inner h2 {
  font-size: clamp(1.8rem, 4.4vw, 2.7rem);
  line-height: 1.14;
  color: var(--pp-white);
  margin: 0 0 16px;
  letter-spacing: -0.02em;
}

.pp-cta-inner p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0 auto 32px;
  font-size: 1.02rem;
  line-height: 1.75;
  max-width: 34em;
}

.pp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}
