/* ============================================================
   PRODUCT PAGE — shared styles for sfx-*.html pages
============================================================ */

/* Hero */
.pp-hero {
  background: var(--navy);
  padding: 110px 0 72px;
  position: relative;
  overflow: hidden;
}
/* Dot grid */
.pp-hero-bg,
.pp-hero-dots {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.07) 1px, transparent 1px);
  background-size: 80px 80px, 80px 80px, 24px 24px;
  pointer-events: none;
}
/* Cursor spotlight */
.pp-hero-spotlight {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    580px circle at var(--lph-mx, -999px) var(--lph-my, -999px),
    rgba(0,194,255,.16),
    transparent 70%
  );
  pointer-events: none;
}
/* Animated orbs */
.pp-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(88px);
  pointer-events: none;
  will-change: transform;
}
.pp-hero-orb-1 {
  top: -12%; left: -6%;
  width: 520px; height: 520px;
  background: radial-gradient(circle, #00C2FF 0%, transparent 70%);
  opacity: .22;
  animation: lphOrb1 9s ease-in-out infinite;
}
.pp-hero-orb-2 {
  bottom: -12%; right: -5%;
  width: 580px; height: 580px;
  background: radial-gradient(circle, #6C47FF 0%, transparent 70%);
  opacity: .18;
  animation: lphOrb2 13s ease-in-out 2s infinite;
}
/* Reuse keyframes (also defined in listing-page.css; safe to duplicate) */
@keyframes lphOrb1 {
  0%, 100% { transform: translateY(0) translateX(0); }
  33%       { transform: translateY(-18px) translateX(12px); }
  66%       { transform: translateY(10px) translateX(-8px); }
}
@keyframes lphOrb2 {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}
/* Drifting SVG shapes */
.pp-hero-shape {
  position: absolute;
  pointer-events: none;
  will-change: transform;
}
.pp-hero-shape-1 {
  width: 300px; height: 300px;
  top: -48px; right: 6%;
  animation: lphFloat1 17s ease-in-out infinite;
  opacity: .6;
}
.pp-hero-shape-2 {
  width: 190px; height: 190px;
  bottom: 4%; left: 3%;
  animation: lphFloat2 13s ease-in-out 2.5s infinite;
  opacity: .5;
}
.pp-hero-shape-3 {
  width: 120px; height: 120px;
  top: 38%; right: 26%;
  animation: lphFloat3 20s ease-in-out 5s infinite;
  opacity: .45;
}
.pp-hero-shape-4 {
  width: 80px; height: 80px;
  bottom: 18%; left: 22%;
  animation: lphFloat2 15s ease-in-out 3s infinite;
  opacity: .35;
}
@keyframes lphFloat1 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25%       { transform: translateY(-16px) rotate(4deg); }
  75%       { transform: translateY(12px) rotate(-4deg); }
}
@keyframes lphFloat2 {
  0%, 100% { transform: translateY(0) translateX(0) rotate(0deg); }
  40%       { transform: translateY(-12px) translateX(10px) rotate(6deg); }
  80%       { transform: translateY(8px) translateX(-6px) rotate(-3deg); }
}
@keyframes lphFloat3 {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-8px) rotate(180deg); }
}

/* Owned badge (inside pp-buy-box) */
.pp-owned-badge {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 600;
  color: #22c55e;
  text-decoration: none;
  font-family: 'Space Grotesk', sans-serif;
  margin-bottom: 12px;
}
.pp-owned-badge:hover { color: #16a34a; text-decoration: underline; }
.pp-owned-badge i { font-size: 14px; }
.pp-hero-inner { position: relative; }
.pp-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color .2s;
  font-family: 'Inter', sans-serif;
}
.pp-breadcrumb:hover { color: #00C2FF; }
.pp-hero-grid {
  display: grid;
  grid-template-columns: 1fr 330px;
  gap: 48px;
  align-items: start;
}
.pp-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.pp-category {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  font-family: 'Space Grotesk', sans-serif;
}
.pp-version {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.45);
  font-family: 'Space Grotesk', sans-serif;
}
.pp-icon-wrap {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  border: 1px solid;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pp-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.03em;
  line-height: 1.1;
  margin-bottom: 16px;
}
.pp-subtitle {
  font-size: 16px;
  color: rgba(255,255,255,.5);
  line-height: 1.75;
  max-width: 540px;
  margin-bottom: 24px;
}
.pp-hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.pp-hero-checks span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
  font-family: 'Inter', sans-serif;
}
.pp-hero-checks span i { color: #00C2FF; font-size: 14px; }

/* Buy box */
.pp-buy-box {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 18px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  position: sticky;
  top: 100px;
}
.pp-buy-price-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  font-family: 'Space Grotesk', sans-serif;
}
.pp-buy-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 48px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
/* Sale badge next to version pill */
.pp-sale-badge {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .07em;
  text-transform: uppercase;
  padding: 3px 9px;
  border-radius: 100px;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.35);
  color: #4ADE80;
  font-family: 'Space Grotesk', sans-serif;
  animation: sale-pulse 2.5s ease-in-out infinite;
}
@keyframes sale-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
  50%       { box-shadow: 0 0 0 5px rgba(34,197,94,.12); }
}

/* Buy box on-sale state */
.pp-buy-box.on-sale {
  border-color: rgba(34,197,94,.25);
  background: linear-gradient(160deg, rgba(34,197,94,.05) 0%, rgba(10,22,40,.7) 100%);
}

.pp-buy-was {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
  margin-bottom: 2px;
}
.pp-buy-was-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,.35);
  text-decoration: line-through;
}
.pp-buy-save-badge {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: #4ADE80;
}
.pp-buy-price sup {
  font-size: 22px;
  font-weight: 600;
  vertical-align: super;
  line-height: 0;
  color: rgba(255,255,255,.6);
}
.pp-buy-note {
  font-size: 14px;
  color: rgba(255,255,255,.3);
  line-height: 1.5;
}
.btn-pp-buy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
  background: linear-gradient(135deg, #00C2FF, #0099CC);
  color: #fff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all .25s cubic-bezier(.16,1,.3,1);
  box-shadow: 0 4px 20px rgba(0,194,255,.35);
}
.btn-pp-buy:hover {
  background: linear-gradient(135deg, #00D4FF, #00AADD);
  box-shadow: 0 8px 28px rgba(0,194,255,.45);
  transform: translateY(-2px);
}
.btn-pp-buy.purple {
  background: linear-gradient(135deg, #6C47FF, #5035CC);
  box-shadow: 0 4px 20px rgba(108,71,255,.35);
}
.btn-pp-buy.purple:hover {
  background: linear-gradient(135deg, #7A55FF, #6040DD);
  box-shadow: 0 8px 28px rgba(108,71,255,.45);
}
.pp-buy-guarantee {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 14px;
  color: rgba(255,255,255,.3);
  justify-content: center;
}
.pp-buy-guarantee i { color: #22C55E; }

/* Purchase includes list (inside buy box) */
.pp-buy-includes {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid rgba(255,255,255,.07);
  padding-top: 14px;
}
.pp-buy-includes-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.6);
}
.pp-buy-includes-item i { color: #22C55E; font-size: 12px; flex-shrink: 0; }

/* Sections */
.pp-section { padding: 80px 0; }
.pp-section-light { background: #F8FAFF; }
.pp-section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 52px;
}
.pp-section-desc {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.7;
  margin-top: 12px;
}

/* Modes grid */
.pp-modes-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.pp-mode-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(10,22,40,.07);
  padding: 24px 20px;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}
.pp-mode-card:hover { box-shadow: 0 10px 32px rgba(10,22,40,.08); transform: translateY(-3px); }
.pp-mode-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 18px;
}
.pp-mode-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pp-mode-desc { font-size: 12.5px; color: #64748B; line-height: 1.6; }

/* Features grid */
.pp-features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.pp-feature-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(10,22,40,.07);
  padding: 28px 24px;
  transition: box-shadow .3s;
}
.pp-feature-card:hover { box-shadow: 0 10px 32px rgba(10,22,40,.07); }
.pp-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.pp-feature-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}
.pp-feature-card p { font-size: 13.5px; color: #64748B; line-height: 1.65; }

/* Requirements strip */
.pp-requirements {
  background: var(--navy);
  padding: 40px 0;
}
.pp-req-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
}
.pp-req-item {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,.07);
}
.pp-req-item:first-child { padding-left: 0; }
.pp-req-item:last-child { border-right: none; }
.pp-req-label {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.35);
  font-family: 'Space Grotesk', sans-serif;
}
.pp-req-val {
  font-size: 14px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  font-family: 'Space Grotesk', sans-serif;
}

/* Documentation locked box */
.pp-docs-box {
  display: flex;
  align-items: center;
  gap: 24px;
  background: #fff;
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 16px;
  padding: 28px 32px;
}
.pp-docs-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: rgba(0,194,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #00C2FF;
  flex-shrink: 0;
}
.pp-docs-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.pp-docs-desc { font-size: 13.5px; color: #64748B; line-height: 1.6; }
.pp-docs-lock {
  margin-left: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 12px 20px;
  background: #F8FAFF;
  border: 1px solid rgba(10,22,40,.08);
  border-radius: 10px;
  font-size: 11.5px;
  font-weight: 600;
  color: #94A3B8;
  font-family: 'Space Grotesk', sans-serif;
  letter-spacing: .02em;
}
.pp-docs-lock i { font-size: 18px; color: #CBD5E1; }

/* CTA section */
.pp-cta-section { background: var(--navy); }
.pp-cta-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: center;
}
.pp-cta-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}
.pp-cta-desc { font-size: 15px; color: rgba(255,255,255,.45); margin-bottom: 20px; }
.pp-cta-includes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 24px;
}
.pp-cta-includes span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.55);
}
.pp-cta-includes span i { color: #22C55E; }
.pp-cta-buy {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  min-width: 200px;
}
.pp-cta-price {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 44px;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.pp-cta-price sup { font-size: 20px; vertical-align: super; line-height: 0; color: rgba(255,255,255,.5); }
.pp-cta-back {
  font-size: 12.5px;
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color .2s;
}
.pp-cta-back:hover { color: rgba(255,255,255,.65); }

/* Field types grid (FormCraft) */
.pp-fields-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.pp-field-chip {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid rgba(10,22,40,.07);
  border-radius: 10px;
  font-size: 13px;
  color: #475569;
  font-family: 'Inter', sans-serif;
  transition: border-color .2s, box-shadow .2s;
}
.pp-field-chip:hover { border-color: rgba(108,71,255,.25); box-shadow: 0 4px 12px rgba(108,71,255,.07); }
.pp-field-chip i { font-size: 15px; flex-shrink: 0; }

/* Responsive */
@media (max-width: 1024px) {
  .pp-hero-grid { grid-template-columns: 1fr; }
  .pp-buy-box { position: static; }
  .pp-modes-grid { grid-template-columns: repeat(3, 1fr); }
  .pp-features-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-req-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
  .pp-req-item { border-right: none; padding: 0; }
  .pp-cta-inner { grid-template-columns: 1fr; }
  .pp-cta-buy { align-items: flex-start; }
  .pp-fields-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .pp-modes-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-features-grid { grid-template-columns: 1fr; }
  .pp-req-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-docs-box { flex-direction: column; align-items: flex-start; }
  .pp-docs-lock { margin-left: 0; width: 100%; }
  .pp-fields-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pp-modes-grid { grid-template-columns: 1fr; }
  .pp-req-grid { grid-template-columns: 1fr; }
  .pp-fields-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VIDEO SECTION
============================================================ */
.pp-video-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  box-shadow: 0 8px 40px rgba(0,0,0,.3);
  max-width: 900px;
  margin: 0 auto;
  aspect-ratio: 16/9;
}
.pp-video-player {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}

/* ============================================================
   GALLERY SECTION
============================================================ */
.pp-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pp-gallery-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.06);
  transition: transform .2s, box-shadow .2s;
}
.pp-gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
}
.pp-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s;
}
.pp-gallery-item:hover img { transform: scale(1.04); }
.pp-gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .2s;
  color: #fff;
  font-size: 24px;
}
.pp-gallery-item:hover .pp-gallery-overlay { opacity: 1; }

/* Lightbox */
.pp-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,.92);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pp-lightbox.active { display: flex; }
.pp-lb-img-wrap {
  max-width: min(90vw, 1100px);
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pp-lb-img-wrap img {
  max-width: 100%;
  max-height: 90vh;
  border-radius: 10px;
  box-shadow: 0 12px 60px rgba(0,0,0,.6);
  display: block;
}
.pp-lb-close, .pp-lb-prev, .pp-lb-next {
  position: fixed;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: #fff;
  border-radius: 50%;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 16px;
  transition: background .2s;
  z-index: 10000;
}
.pp-lb-close:hover, .pp-lb-prev:hover, .pp-lb-next:hover { background: rgba(255,255,255,.2); }
.pp-lb-close { top: 20px; right: 20px; }
.pp-lb-prev  { left: 20px; top: 50%; transform: translateY(-50%); }
.pp-lb-next  { right: 20px; top: 50%; transform: translateY(-50%); }

@media (max-width: 768px) {
  .pp-gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-lb-prev { left: 8px; }
  .pp-lb-next { right: 8px; }
}
@media (max-width: 480px) {
  .pp-gallery-grid { grid-template-columns: 1fr; }
}

/* ── Buy button states ── */
.btn-pp-incart {
  background: rgba(108,71,255,.08) !important;
  color: #6C47FF !important;
  border: 2px solid rgba(108,71,255,.22);
  cursor: default;
  pointer-events: none;
  box-shadow: none !important;
  transform: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 14px 20px;
  border-radius: 10px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 14.5px;
  font-weight: 700;
}
.btn-pp-owned {
  background: linear-gradient(135deg, #22C55E, #16A34A) !important;
  color: #fff !important;
  box-shadow: 0 4px 20px rgba(34,197,94,.35) !important;
  text-decoration: none;
}
.btn-pp-owned:hover {
  background: linear-gradient(135deg, #16A34A, #15803D) !important;
  color: #fff !important;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(34,197,94,.45) !important;
}

/* ── Wave divider (hero → content transition) ── */
.pp-wave-divider {
  display: block;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-top: -2px;
  background: var(--navy);
}
.pp-wave-divider svg {
  display: block;
  width: 100%;
  height: 56px;
}

/* ── Prose (rich-text body content) ── */
.prose {
  color: #475569;
  line-height: 1.85;
  font-size: 1rem;
}
.prose h2, .prose h3, .prose h4 {
  color: var(--navy);
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: .75rem;
}
.prose h2 { font-size: 1.5rem; }
.prose h3 { font-size: 1.2rem; }
.prose p { margin-bottom: 1rem; }
.prose ul, .prose ol { list-style: none; padding-left: 0; margin-bottom: 1rem; }
.prose ul li, .prose ol li {
  margin-bottom: .55rem;
  padding-left: 1.6rem;
  position: relative;
}
.prose ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .52em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #00C2FF;
  opacity: .85;
}
.prose ol {
  counter-reset: prose-counter;
}
.prose ol li::before {
  content: counter(prose-counter);
  counter-increment: prose-counter;
  position: absolute;
  left: 0;
  top: .05em;
  font-size: 11px;
  font-weight: 700;
  font-family: 'Space Grotesk', sans-serif;
  color: #00C2FF;
  line-height: 1.7;
}
.prose a { color: #00C2FF; }
.prose strong { color: var(--navy); }
.prose code {
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 4px;
  padding: .1em .4em;
  font-size: .88em;
}

/* ── Case-study body two-column layout ── */
.cs-show-body-cols {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}
@media (max-width: 860px) {
  .cs-show-body-cols { grid-template-columns: 1fr; }
}

/* ============================================================
   LEARNING HUB SHOW PAGE — additional classes
============================================================ */

/* Free / level badges in pp-meta row */
.pp-lh-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
}
.pp-lh-badge-free {
  background: rgba(34,197,94,.15);
  border: 1px solid rgba(34,197,94,.3);
  color: #4ADE80;
}

/* Tags row below the meta checks */
.pp-hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.pp-hero-tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--tag-bg, rgba(0,194,255,.12));
  color: var(--tag-color, #00C2FF);
  font-family: 'Space Grotesk', sans-serif;
  border: 1px solid rgba(255,255,255,.08);
}

/* Trust items inside buy box */
.pp-lh-trust {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12.5px;
  color: rgba(255,255,255,.45);
  font-family: 'Inter', sans-serif;
}
.pp-lh-trust i {
  color: rgba(255,255,255,.3);
  font-size: 13px;
  flex-shrink: 0;
  width: 14px;
  text-align: center;
}

/* ── Related cards (services & case-studies show pages) ── */
.pp-related-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(10,22,40,.07);
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s;
}
.pp-related-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(10,22,40,.1);
}
.pp-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.pp-related-card-bar {
  height: 4px;
  background: linear-gradient(90deg, #00C2FF, rgba(0,194,255,.4));
}
.pp-related-card-body { padding: 20px 22px; }
.pp-related-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,194,255,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.pp-related-card-icon i { font-size: 18px; color: #00C2FF; }
.pp-related-card-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.pp-related-card-desc { font-size: 13px; color: #64748B; line-height: 1.6; }

/* ── Icon wrap – cyan variant (services) ── */
.pp-icon-wrap-cyan {
  background: rgba(0,194,255,.12);
  border-color: rgba(0,194,255,.3);
}
.pp-icon-cyan { font-size: 28px; color: #00C2FF; }

/* ── Buy box – service / cyan accent ── */
.pp-buy-box-service {
  border-color: rgba(0,194,255,.2);
  box-shadow: 0 0 0 1px rgba(0,194,255,.1), 0 12px 40px rgba(0,194,255,.08);
}

/* ── Heading inside buy box ── */
.pp-buy-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 22px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}

/* ── Guarantee / trust list (column layout) ── */
.pp-buy-guarantee-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 4px;
}
.pp-buy-guarantee-list span {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  color: rgba(255,255,255,.5);
}
.pp-buy-guarantee-list i { color: #00C2FF; font-size: 13px; flex-shrink: 0; }
