:root {
  --pp-red: #c4000b;
  --pp-red-deep: #780006;
  --pp-black: #060708;
  --pp-ink: #1b1717;
  --pp-gold: #ffd257;
  --pp-gold-dark: #e29a13;
  --pp-muted: #6b5a56;
  --pp-line: #efc5bc;
  --pp-shell: 1180px;
}

* { box-sizing: border-box; }
html { min-width: 0; overflow-x: hidden; scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 0;
  overflow-x: hidden;
  color: var(--pp-ink);
  background: #fff;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.pp-shell { width: min(var(--pp-shell), calc(100% - 56px)); margin: 0 auto; }

.pp-header { position: relative; z-index: 10; background: #fff; }
.pp-topbar {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.pp-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #060606;
  font-weight: 950;
}
.pp-brand-mark {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  color: var(--pp-gold);
  background: linear-gradient(145deg, #900006, #d1000d);
  border: 4px solid #f6bd31;
  box-shadow: 0 5px 14px rgba(156, 0, 12, .28);
  font-size: 26px;
  line-height: 1;
  font-weight: 950;
}
.pp-brand-text {
  font-size: 48px;
  line-height: 1;
  letter-spacing: 0;
}
.pp-brand-text span { color: #d5000b; }
.pp-actions { display: flex; gap: 14px; align-items: center; }
.pp-btn {
  min-width: 128px;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
}
.pp-btn-red { color: #fff; background: linear-gradient(180deg, #df0713, #a50008); box-shadow: 0 10px 20px rgba(174, 0, 8, .22); }
.pp-btn-outline { color: #a50008; background: #fff; border: 1.5px solid #d33c42; }

.pp-nav { background: linear-gradient(180deg, #d9000c, #b30008); }
.pp-nav-inner {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.pp-nav-inner::-webkit-scrollbar { display: none; }
.pp-nav a {
  position: relative;
  flex: 0 0 auto;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  padding: 0 24px;
  color: #fff;
  font-size: 15px;
  font-weight: 900;
  white-space: nowrap;
}
.pp-nav a.is-active { color: var(--pp-gold); }
.pp-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 0;
  height: 5px;
  background: var(--pp-gold);
  border-radius: 6px 6px 0 0;
}

.pp-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 78% 48%, rgba(255, 193, 44, .24), transparent 28%),
    linear-gradient(110deg, #030303 0%, #170000 44%, #630005 100%);
}
.pp-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 30%, rgba(255, 34, 17, .28) 30.4%, transparent 31% 100%),
    linear-gradient(150deg, transparent 0 56%, rgba(255, 196, 44, .35) 56.2%, transparent 56.8% 100%);
  opacity: .52;
}
.pp-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: .92fr 1.08fr;
  align-items: center;
  min-height: 455px;
  gap: 28px;
}
.pp-hero-copy { padding: 56px 0 54px; }
.pp-hero h1 {
  max-width: 610px;
  margin: 0;
  color: #fff;
  font-size: clamp(44px, 4.7vw, 64px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: 0;
  text-shadow: 0 5px 0 rgba(0, 0, 0, .25);
}
.pp-hero h1::first-line { color: #fff; }
.pp-hero h1 span { color: var(--pp-gold); }
.pp-hero p {
  max-width: 545px;
  margin: 24px 0 0;
  color: #fff;
  font-size: 22px;
  line-height: 1.45;
  font-weight: 800;
  text-shadow: 0 2px 4px rgba(0,0,0,.35);
}
.pp-hero-actions { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 34px; }
.pp-hero-btn {
  min-width: 168px;
  min-height: 54px;
  padding: 0 26px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 950;
}
.pp-hero-primary { color: #801400; background: linear-gradient(180deg, #fff071, #f2ac1a); box-shadow: 0 12px 24px rgba(246, 180, 26, .25); }
.pp-hero-secondary { color: #fff; border: 1.5px solid #f7c93a; background: rgba(0,0,0,.2); }
.pp-hero-art {
  min-height: 455px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.pp-hero-art img {
  width: min(100%, 620px);
  height: 455px;
  object-fit: cover;
  object-position: center;
}

.pp-section { padding: 34px 0; }
.pp-intro { padding-top: 34px; padding-bottom: 18px; }
.pp-intro-box {
  position: relative;
  max-width: 960px;
  margin: 0 auto;
  padding: 28px 38px 24px;
  text-align: center;
  border: 2px solid #d72a22;
  border-radius: 8px;
  background: #fff;
}
.pp-section-mark {
  position: absolute;
  left: 50%;
  top: -25px;
  transform: translateX(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-gold);
  background: #a80008;
  border: 4px solid #f4bf34;
  font-size: 26px;
  font-weight: 950;
}
.pp-intro-box h2,
.pp-title-row h2 {
  margin: 0;
  color: #b30008;
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.16;
  font-weight: 950;
  text-align: center;
}
.pp-intro-box p {
  max-width: 780px;
  margin: 12px auto 0;
  color: #625655;
  font-size: 16px;
}
.pp-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.pp-feature {
  min-height: 170px;
  padding: 10px 28px;
  text-align: center;
  border-right: 1px solid #f0c7bf;
}
.pp-feature:last-child { border-right: 0; }
.pp-feature-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff2ea;
}
.pp-feature-icon svg {
  width: 48px;
  height: 48px;
  fill: none;
  stroke: #bd0a12;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.pp-feature-icon svg path:first-child:last-child,
.pp-feature-icon svg path:nth-child(1):last-child { fill: #bd0a12; stroke: none; }
.pp-feature h3 { margin: 0; color: #c1000b; font-size: 18px; font-weight: 950; }
.pp-feature p { margin: 9px 0 0; color: #665855; font-size: 14px; line-height: 1.45; }

.pp-products { padding-top: 14px; }
.pp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pp-product-card {
  overflow: hidden;
  border-radius: 8px;
  background: linear-gradient(180deg, #220100, #050101);
  border: 1px solid rgba(159, 0, 8, .35);
  box-shadow: 0 16px 32px rgba(79, 2, 2, .12);
}
.pp-product-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}
.pp-product-body {
  padding: 16px 20px 22px;
  text-align: center;
  color: #fff;
}
.pp-product-body h3 {
  margin: 0;
  color: var(--pp-gold);
  font-size: 26px;
  line-height: 1.1;
  font-weight: 950;
}
.pp-product-body p {
  min-height: 46px;
  margin: 10px 0 16px;
  color: #fff;
  font-size: 15px;
  line-height: 1.45;
}
.pp-mini-btn {
  min-width: 112px;
  min-height: 34px;
  padding: 0 20px;
  border-radius: 999px;
  color: #2a1300;
  background: linear-gradient(180deg, #ffe470, #f4aa16);
  font-size: 14px;
  font-weight: 900;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pp-title-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 26px;
  margin-bottom: 30px;
}
.pp-title-row::before,
.pp-title-row::after {
  content: "";
  height: 2px;
  background: linear-gradient(90deg, transparent, #c70410 38%, #c70410 62%, transparent);
}
.pp-steps {
  display: grid;
  grid-template-columns: 1fr 34px 1fr 34px 1fr;
  align-items: center;
  gap: 18px;
}
.pp-step {
  min-height: 104px;
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 18px;
  align-items: center;
  padding: 18px;
  border: 1.5px solid #efb6af;
  border-radius: 8px;
  background: #fff;
}
.pp-step span {
  width: 70px;
  height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: linear-gradient(145deg, #d7000d, #9c0006);
  clip-path: polygon(18% 0, 82% 0, 100% 50%, 82% 100%, 18% 100%, 0 50%);
  font-size: 28px;
  font-weight: 950;
}
.pp-step h3 { margin: 0; font-size: 18px; line-height: 1.2; }
.pp-step p { margin: 6px 0 0; color: #665855; font-size: 14px; line-height: 1.45; }
.pp-arrow { color: #bd0510; font-size: 48px; line-height: 1; text-align: center; }
.pp-news { padding-top: 20px; padding-bottom: 36px; }
.pp-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.pp-news-card {
  min-width: 0;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 16px;
  padding: 14px;
  border: 1px solid #efc7bf;
  border-radius: 8px;
  background: #fff;
}
.pp-news-card img {
  width: 130px;
  height: 150px;
  border-radius: 6px;
  object-fit: cover;
}
.pp-news-body { min-width: 0; }
.pp-news-body time {
  color: #776966;
  font-size: 12px;
  font-weight: 700;
}
.pp-news-body h3 {
  margin: 5px 0 7px;
  color: #161111;
  font-size: 17px;
  line-height: 1.2;
  font-weight: 950;
}
.pp-news-body p {
  margin: 0;
  color: #665855;
  font-size: 13px;
  line-height: 1.45;
}
.pp-read {
  display: inline-flex;
  margin-top: 10px;
  color: #c4000b;
  font-size: 13px;
  font-weight: 950;
}
.pp-managed {
  margin: 18px 0 0;
  text-align: center;
  color: #6d5c58;
  font-size: 14px;
  font-style: italic;
}

.pp-footer {
  color: #fff;
  background: #05090a;
  border-top: 5px solid #c4000b;
}
.pp-footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr 1fr;
  gap: 38px;
  padding: 36px 0;
}
.pp-brand-footer .pp-brand-text { color: #fff; font-size: 38px; }
.pp-footer p {
  margin: 16px 0 0;
  color: #d7d7d7;
  font-size: 14px;
  line-height: 1.55;
}
.pp-domain {
  margin-top: 18px;
  min-height: 42px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  border-radius: 7px;
  color: var(--pp-gold);
  border: 1px solid #b88313;
  font-size: 20px;
  font-weight: 950;
}
.pp-footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 16px;
  font-weight: 950;
}
.pp-footer ul { list-style: none; margin: 0; padding: 0; }
.pp-footer li { margin: 8px 0; color: #d7d7d7; font-size: 14px; }
.pp-social { display: flex; gap: 12px; margin-top: 18px; }
.pp-social span {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #d71920;
  border-radius: 50%;
  font-weight: 950;
}
.pp-social span:nth-child(2) { background: #3ba7ee; }
.pp-social span:nth-child(3) { background: #2d94d8; }
.pp-social span:nth-child(4) { background: #ff713f; }
.pp-footer-bottom {
  background: #c4000b;
  color: #fff;
  font-size: 14px;
}
.pp-footer-bottom .pp-shell {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.pp-article-main {
  padding: 34px 0 48px;
  background: linear-gradient(180deg, #fff 0, #fff7f5 100%);
}
.pp-breadcrumb {
  margin-bottom: 24px;
  color: #6c5c58;
  font-size: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.pp-breadcrumb a { color: #c4000b; font-weight: 800; }
.pp-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 32px;
  align-items: start;
}
.pp-article,
.pp-side-card {
  background: #fff;
  border: 1px solid #efc7bf;
  border-radius: 8px;
  box-shadow: 0 12px 28px rgba(109, 9, 5, .07);
}
.pp-article { padding: 34px; }
.pp-article h1 {
  margin: 0;
  color: #14100f;
  font-size: clamp(32px, 3.4vw, 48px);
  line-height: 1.1;
  font-weight: 950;
}
.pp-article-meta {
  margin-top: 16px;
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  color: #776966;
  font-size: 14px;
  font-weight: 700;
}
.pp-article-cover {
  width: 100%;
  max-height: 330px;
  margin: 26px 0;
  border-radius: 8px;
  object-fit: cover;
}
.pp-article-body {
  color: #342b29;
  font-size: 17px;
  line-height: 1.78;
}
.pp-article-body h2 {
  margin: 28px 0 10px;
  color: #b30008;
  font-size: 26px;
  line-height: 1.2;
}
.pp-article-body p { margin: 0 0 16px; }
.pp-article-body a { color: #c4000b; font-weight: 900; }
.pp-sidebar { display: grid; gap: 20px; }
.pp-side-card { padding: 24px; }
.pp-side-dark {
  color: #fff;
  background: linear-gradient(145deg, #190000, #790007);
}
.pp-side-card h2 {
  margin: 14px 0 10px;
  font-size: 22px;
  line-height: 1.2;
}
.pp-side-card p { color: inherit; opacity: .86; }
.pp-side-card ul { margin: 0; padding-left: 18px; color: #443835; line-height: 1.7; }
.pp-side-card li + li { margin-top: 8px; }

@media (max-width: 980px) {
  .pp-shell { width: min(100% - 28px, var(--pp-shell)); }
  .pp-topbar { min-height: 140px; flex-direction: column; align-items: stretch; justify-content: center; }
  .pp-brand { justify-content: flex-start; }
  .pp-brand-text { font-size: 36px; }
  .pp-actions { display: grid; grid-template-columns: 1fr 1fr; }
  .pp-btn { min-width: 0; }
  .pp-nav-inner { width: calc(100% - 28px); }
  .pp-nav a { padding: 0 20px; }
  .pp-hero-grid { grid-template-columns: 1fr; min-height: 0; gap: 0; }
  .pp-hero-copy { padding: 44px 0 20px; }
  .pp-hero h1 { font-size: clamp(38px, 11vw, 54px); }
  .pp-hero p { font-size: 20px; }
  .pp-hero-art { min-height: auto; justify-content: center; padding-bottom: 22px; }
  .pp-hero-art img { width: min(100%, 560px); height: auto; aspect-ratio: 447 / 454; }
  .pp-features { grid-template-columns: repeat(2, 1fr); row-gap: 26px; }
  .pp-feature:nth-child(2) { border-right: 0; }
  .pp-product-grid,
  .pp-news-grid { grid-template-columns: 1fr; }
  .pp-steps { grid-template-columns: 1fr; }
  .pp-arrow { transform: rotate(90deg); }
  .pp-footer-grid { grid-template-columns: 1fr 1fr; }
  .pp-article-layout { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .pp-shell { width: calc(100% - 28px); }
  .pp-topbar { align-items: stretch; }
  .pp-brand-mark { width: 38px; height: 38px; border-radius: 10px; font-size: 22px; }
  .pp-brand-text { font-size: 33px; }
  .pp-actions { gap: 10px; }
  .pp-btn { padding: 0 12px; font-size: 13px; }
  .pp-hero-copy { padding-top: 36px; }
  .pp-hero h1 { font-size: clamp(36px, 11.4vw, 48px); }
  .pp-hero p { font-size: 18px; }
  .pp-hero-actions { gap: 12px; }
  .pp-hero-btn { min-width: 0; flex: 1 1 135px; font-size: 15px; }
  .pp-intro-box { padding: 30px 18px 20px; }
  .pp-features { grid-template-columns: 1fr; }
  .pp-feature { border-right: 0; border-bottom: 1px solid #f0c7bf; }
  .pp-feature:last-child { border-bottom: 0; }
  .pp-title-row { grid-template-columns: 1fr; gap: 12px; }
  .pp-title-row::before,
  .pp-title-row::after { display: none; }
  .pp-news-card { grid-template-columns: 112px 1fr; gap: 12px; }
  .pp-news-card img { width: 112px; height: 136px; }
  .pp-footer-grid { grid-template-columns: 1fr; }
  .pp-footer-bottom .pp-shell { flex-direction: column; justify-content: center; padding: 12px 0; text-align: center; }
  .pp-article { padding: 24px 18px; }
}

@media (prefers-reduced-motion: no-preference) {
  .pp-btn,
  .pp-hero-btn,
  .pp-mini-btn,
  .pp-news-card,
  .pp-product-card { transition: transform .18s ease, box-shadow .18s ease; }
  .pp-btn:hover,
  .pp-hero-btn:hover,
  .pp-mini-btn:hover { transform: translateY(-1px); }
  .pp-news-card:hover,
  .pp-product-card:hover { transform: translateY(-2px); box-shadow: 0 18px 34px rgba(101, 0, 7, .14); }
}
