*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #15110d;
  --panel: #1f1914;
  --cream: #ece3d4;
  --gold: #c9a24b;
  --gold-soft: #e0c78a;
  --muted: #9c9183;
  --line: rgba(201, 162, 75, 0.22);
  --serif: "Cormorant Garamond", Georgia, serif;
}

html {
  scroll-behavior: smooth;
}

/* Offset for fixed/relative nav (~90px) so anchor links don't hide under it */
[id] {
  scroll-margin-top: 110px;
}

body {
  background-color: var(--bg);
  color: var(--cream);
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ============================================================
   Wrapper
   ============================================================ */

.pp-wrapper {
  overflow-x: hidden;
}

/* ============================================================
   Hero
   ============================================================ */

.pp-hero {
  background-image: radial-gradient(
      130% 90% at 50% 0%,
      rgba(201, 162, 75, 0.14),
      rgba(21, 17, 13, 0) 58%
    ),
    radial-gradient(
      80% 60% at 50% 120%,
      rgba(201, 162, 75, 0.08),
      rgba(21, 17, 13, 0) 70%
    ),
    linear-gradient(to bottom, #1d1712 0%, #15110d 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 320px;
  padding-top: calc(90px + 2.5rem);
  padding-bottom: 4rem;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.pp-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-weight: 600;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.pp-hero-sub {
  font-family: "Roboto", sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.3rem);
  color: var(--gold-soft);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.pp-hero-desc {
  font-family: "Roboto", sans-serif;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.3vw, 1.2rem);
  max-width: 65ch;
  margin: 1rem auto 0;
  line-height: 1.7;
}

/* ============================================================
   Container
   ============================================================ */

.pp-container {
  max-width: 1410px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   Sections
   ============================================================ */

.pp-section {
  padding: 5rem 0;
  border-bottom: 1px solid var(--line);
}

.pp-section:last-of-type {
  border-bottom: none;
}

.pp-section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  font-weight: 600;
  color: var(--cream);
  position: relative;
  padding-bottom: 1.25rem;
  margin-bottom: 2.5rem;
}

.pp-section-title::after {
  content: "";
  display: block;
  width: 80px;
  height: 3px;
  background: var(--gold);
  position: absolute;
  bottom: 0;
  left: 0;
}

.pp-intro-text {
  font-family: "Roboto", sans-serif;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  line-height: 1.85;
  max-width: 80ch;
}

/* ============================================================
   Category cards
   ============================================================ */

.pp-categories {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.pp-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 2.25rem;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.pp-card:hover {
  transform: translateY(-5px);
  border-color: var(--gold-soft);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.pp-card-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--bg);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.3rem 0.85rem;
  margin-bottom: 1.25rem;
  font-family: "Roboto", sans-serif;
  font-weight: 500;
  border-radius: 2px;
}

.pp-card h3 {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  color: var(--cream);
  margin-bottom: 1rem;
  font-weight: 600;
}

.pp-card p {
  font-family: "Roboto", sans-serif;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
}

.pp-card-features {
  list-style: none;
  margin-top: 1.25rem;
  padding: 0;
}

.pp-card-features li {
  font-family: "Roboto", sans-serif;
  font-size: 0.95rem;
  color: var(--cream);
  padding: 0.4rem 0 0.4rem 1.4rem;
  position: relative;
  border-bottom: 1px solid var(--line);
}

.pp-card-features li::before {
  content: "\2014";
  position: absolute;
  left: 0;
  color: var(--gold);
}

.pp-card-features li:last-child {
  border-bottom: none;
}

/* ============================================================
   Specs
   ============================================================ */

.pp-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 4rem;
  margin-top: 2rem;
}

.pp-spec-item {
  border-bottom: 1px solid var(--line);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
}

.pp-spec-label {
  font-family: var(--serif);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.pp-spec-value {
  font-family: "Roboto", sans-serif;
  color: var(--cream);
  font-size: 1rem;
  text-align: right;
}

/* ============================================================
   USP grid
   ============================================================ */

.pp-usp-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pp-usp-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 1.75rem;
  text-align: center;
}

.pp-usp-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.pp-usp-item p {
  font-family: "Roboto", sans-serif;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.65;
}

/* ============================================================
   FAQ
   ============================================================ */

.pp-faq-list {
  list-style: none;
  padding: 0;
  margin-top: 2rem;
}

.pp-faq-item {
  border-bottom: 1px solid var(--line);
  padding: 1.5rem 0;
}

.pp-faq-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

.pp-faq-item p {
  font-family: "Roboto", sans-serif;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.7;
}

/* ============================================================
   B2B grid
   ============================================================ */

.pp-b2b-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.pp-b2b-item {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  padding: 1.75rem;
}

.pp-b2b-item h3 {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 1.6vw, 1.4rem);
  color: var(--gold-soft);
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.pp-b2b-item p {
  font-family: "Roboto", sans-serif;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.1vw, 1.05rem);
  line-height: 1.65;
}

/* ============================================================
   CTA block
   ============================================================ */

.pp-cta {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 8px;
  padding: 3.5rem;
  text-align: center;
  margin: 4rem 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}

.pp-cta h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--gold);
  font-weight: 600;
}

.pp-cta p {
  font-family: "Roboto", sans-serif;
  color: var(--muted);
  max-width: 55ch;
  text-align: center;
  line-height: 1.65;
}

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

/* ============================================================
   Buttons
   ============================================================ */

.pp-btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 1.3rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  cursor: pointer;
}

.pp-btn.primary {
  background: var(--gold);
  color: var(--bg);
  border: 2px solid var(--gold);
}

.pp-btn.primary:hover {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
}

.pp-btn.secondary {
  background: transparent;
  color: var(--cream);
  border: 2px solid var(--cream);
}

.pp-btn.secondary:hover {
  background: var(--cream);
  color: var(--bg);
}

/* ============================================================
   Footer
   ============================================================ */

footer {
  width: 100%;
  margin-top: 2rem;
  background-color: var(--panel);
  border-top: 1px solid var(--line);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3.5rem 2rem 2.5rem;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr 1fr;
  gap: 2.5rem;
}

.footer-brand img {
  width: 190px;
  margin-bottom: 1.2rem;
}

.footer-legal {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  color: var(--muted);
  font-size: 1.15rem;
  max-width: 30ch;
}

.footer-reg {
  color: var(--muted);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  margin-bottom: 0.5rem;
}

.footer-reg span {
  color: var(--gold);
  letter-spacing: 0.08em;
}

.footer-col h4 {
  font-family: var(--serif);
  font-size: 1.2rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.footer-col p {
  color: var(--cream);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
  line-height: 1.55;
}

.footer-col a {
  color: var(--cream);
  font-size: 1.2rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--gold);
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1.4rem 2rem;
  text-align: center;
}

.footer-bottom p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 1024px) {
  .pp-categories {
    grid-template-columns: repeat(2, 1fr);
  }

  .pp-specs-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .pp-categories {
    grid-template-columns: 1fr;
  }

  .pp-usp-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 600px) {
  .pp-usp-grid {
    grid-template-columns: 1fr;
  }

  .pp-btn {
    width: 100%;
    text-align: center;
  }

  .pp-cta-actions {
    flex-direction: column;
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .pp-cta {
    padding: 2rem 1.5rem;
  }

  .pp-spec-item {
    flex-direction: column;
    gap: 0.25rem;
  }

  .pp-spec-value {
    text-align: left;
  }
}

@media (max-width: 480px) {
  .pp-specs-grid {
    gap: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
