/* ================================================================
   PRODUCT PAGES — Shared Stylesheet
   Cypra AI · Design System v1.0
   Use with: Bootstrap 5.0.2, Font Awesome 6.x, Syne + Poppins fonts
================================================================ */

/* ----------------------------------------------------------------
   1. VARIABLES
---------------------------------------------------------------- */
:root {
  /* Backgrounds */
  --bg: #08050F;
  --bg-2: #0C0919;
  --card: #110D1E;
  --card-2: #0F0C1A;
  --card-3: #150F24;

  /* Brand Colors */
  --pink: #E040FB;
  --purple: #A855F7;
  --grad: linear-gradient(90deg, #A855F7 0%, #E040FB 100%);
  --grad-135: linear-gradient(135deg, #A855F7 0%, #E040FB 100%);

  /* Text */
  --text: #FFFFFF;
  --text-2: #9B9BAD;
  --text-3: #5C5C72;

  /* Borders */
  --border: rgba(168, 85, 247, 0.15);
  --border-card: rgba(255, 255, 255, 0.06);

  /* Typography & Layout */
  --font: 'Syne', 'Poppins', -apple-system, sans-serif;
  --nav-h: 68px;
  --pad: 100px;
  --pad-sm: 64px;

  /* Border Radii */
  --radius-sm: 8px;
  --radius-md: 10px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --radius-full: 9999px;
}

/* ----------------------------------------------------------------
   2. BASE
---------------------------------------------------------------- */
html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ----------------------------------------------------------------
   3. CONTAINER MAX-WIDTH
   Add class pp-page to <body> on every product page.
---------------------------------------------------------------- */
.pp-page .container {
  max-width: 1200px;
}

.pp-hero .container {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
   4. LOADER
---------------------------------------------------------------- */
#loader {
  position: fixed;
  inset: 0;
  background: rgba(8, 5, 15, 0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

#loader .spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--purple);
  border-top-color: var(--pink);
  border-radius: 50%;
  animation: pp-spin 0.9s linear infinite;
}

@keyframes pp-spin {
  to {
    transform: rotate(360deg);
  }
}

/* ----------------------------------------------------------------
   5. NAVBAR
---------------------------------------------------------------- */
.pp-navbar {
  background: var(--bg) !important;
  box-shadow: 0 2px 24px rgba(86, 5, 94, 0.35);
  z-index: 1050;
}

.pp-navbar .navbar-nav .nav-link {
  color: #fff;
  padding: 20px;
  transition: all 0.3s;
}

.pp-navbar .navbar-nav .nav-link:hover {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  border-bottom: 1px solid rgba(224, 64, 251, 0.4);
}

.pp-navbar .navbar-nav.ms-auto li {
  margin-left: 30px;
}

.pp-navbar .navbar-nav .nav-item.contact a {
  background: linear-gradient(90deg, rgba(255, 45, 247, 0.4), rgba(82, 0, 255, 0.4));
  color: white !important;
  padding: 10px 22px;
  border-radius: 12px;
  font-weight: 500;
  box-shadow: 0 4px 8px rgba(255, 47, 247, 0.4);
}

.pp-navbar .navbar-nav .nav-item.contact a:hover {
  box-shadow: 0 0 6px #5100ffb8, 0 0 12px #ff2df8ac;
  color: white !important;
  -webkit-text-fill-color: white !important;
  background: linear-gradient(90deg, rgba(255, 45, 247, 0.55), rgba(82, 0, 255, 0.55));
  -webkit-background-clip: unset;
  background-clip: unset;
  border-bottom: none;
}

.pp-navbar-logo {
  max-height: 40px;
  display: block;
  width: auto;
}

.pp-navbar .navbar-toggler {
  background: linear-gradient(90deg, #610e65, #19083cfe);
  border: none;
}

.pp-navbar .navbar-toggler:focus {
  box-shadow: none !important;
}

.pp-navbar .navbar-toggler-icon {
  filter: invert(1);
}

@media (max-width: 991px) {
  .pp-navbar .navbar-collapse {
    background: rgba(8, 5, 15, 0.98);
    border-top: 1px solid var(--border);
    padding: 12px 16px 20px;
  }

  .pp-navbar .navbar-nav.ms-auto li {
    margin-left: 0;
  }
}

/* ----------------------------------------------------------------
   6. UTILITIES
---------------------------------------------------------------- */
/* Gradient text — add to any element */
.g-text {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section eyebrow label */
.pp-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
  display: block;
}

/* Section vertical padding */
.pp-sp {
  padding: var(--pad) 0;
}

/* ----------------------------------------------------------------
   7. SECTION WRAPPERS
   pp-section      → var(--bg) background + border-top
   pp-section-alt  → var(--bg-2) background + border-top
---------------------------------------------------------------- */
.pp-section {
  border-top: 1px solid var(--border);
}

.pp-section-alt {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
}

/* Intro block */
.pp-intro {
  background: var(--bg);
  padding: 80px 0 60px;
}

/* Decorative radial glow on the right side of a section */
.pp-glow-right {
  position: relative;
  overflow: hidden;
}

.pp-glow-right::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  width: 1000px;
  height: 1000px;
  background: radial-gradient(circle,
      rgba(168, 85, 247, 0.35) 0%,
      rgba(224, 64, 251, 0.15) 35%,
      transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Decorative radial glow on the left side of a section */
.pp-glow-left {
  position: relative;
  overflow: hidden;
}

.pp-glow-left::before {
  content: '';
  position: absolute;
  top: 40%;
  left: -80px;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle,
      rgba(168, 85, 247, 0.28) 0%,
      rgba(224, 64, 251, 0.1) 40%,
      transparent 65%);
  pointer-events: none;
  z-index: 0;
}

/* Lift container above glow pseudo-elements */
.pp-glow-right .container,
.pp-glow-left .container {
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
   8. TYPOGRAPHY — Section Headings
---------------------------------------------------------------- */
/* Standard centered section heading (2.5rem max, mb-48) */
.pp-heading {
  font-size: clamp(1.8rem, 3.2vw, 2.5rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 48px;
}

/* Larger centered heading for problem/emphasis sections */
.pp-heading-lg {
  font-size: clamp(2rem, 3.8vw, 3rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 20px;
}

/* Inline gradient on heading spans or em elements */
.pp-heading-lg em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Section sub-text (sits below heading, centered) */
.pp-section-sub {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* Wide section body paragraph (centered) */
.pp-section-body {
  max-width: 700px;
  margin: 0 auto;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.85;
  text-align: center;
}

/* ----------------------------------------------------------------
   9. HERO SECTION
---------------------------------------------------------------- */
.pp-hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: 80px;
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.pp-hero::before {
  content: '';
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 750px;
  height: 750px;
  border-radius: 50%;
  background: radial-gradient(circle,
      rgba(168, 85, 247, 0.45) 0%,
      rgba(224, 64, 251, 0.15) 35%,
      transparent 65%);
  pointer-events: none;
}

.pp-hero::after {
  content: '';
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(168, 85, 247, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pp-hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: #fff;
}

.pp-hero-desc {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.8;
  margin-bottom: 28px;
  max-width: 500px;
}

.pp-hero-bullets {
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: 10px;
}

.pp-hero-bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-2);
}

.pp-hero-bullets li::before {
  content: '✓';
  font-size: 1.1rem;
  font-weight: 900;
  color: var(--pink);
  flex-shrink: 0;
  line-height: 1;
}

.pp-hero-api-link {
  font-size: 0.875rem;
  color: var(--text-2);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s;
  margin-top: 4px;
}

.pp-hero-api-link:hover {
  color: var(--purple);
}

/* Orb visual / product illustration */
.pp-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  height: 500px;
}

.pp-orb-wrap {
  position: relative;
  width: 500px;
  height: 500px;
  max-width: 100%;
  aspect-ratio: 1;
}

.pp-orb {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: radial-gradient(circle at 33% 36%,
      rgba(168, 85, 247, 0.52) 0%,
      rgba(242, 92, 240, 0.18) 32%,
      rgba(12, 9, 24, 0.95) 65%);
  border: 1px solid rgba(168, 85, 247, 0.28);
  box-shadow:
    0 0 60px rgba(168, 85, 247, 0.28),
    0 0 120px rgba(168, 85, 247, 0.1),
    inset 0 0 80px rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.pp-orb-img {
  width: 80%;
  filter: drop-shadow(0 0 28px rgba(168, 85, 247, 0.65));
  position: relative;
  z-index: 1;
  border-radius: 100%;
}

.pp-orb-ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(168, 85, 247, 0.1);
  pointer-events: none;
}

.pp-orb-ring-1 {
  inset: -28px;
}

.pp-orb-ring-2 {
  inset: -58px;
  border-color: rgba(168, 85, 247, 0.05);
}

/* ----------------------------------------------------------------
   10. STATS BAR
---------------------------------------------------------------- */
.pp-stats {
  background: var(--bg-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 28px 0;
}

.pp-stat-item {
  padding: 0 40px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.pp-stat-item:last-child {
  border-right: none;
}

.pp-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  white-space: nowrap;
  line-height: 1.3;
}

.pp-stat-label {
  font-size: 0.72rem;
  color: var(--text-3);
  margin-top: 3px;
  white-space: nowrap;
}

/* ----------------------------------------------------------------
   11. BUTTONS
---------------------------------------------------------------- */
.pp-btn-primary {
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius-full);
  background: var(--grad-135);
  color: #fff !important;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  box-shadow: 0 4px 24px rgba(168, 85, 247, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.pp-btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(168, 85, 247, 0.65);
  color: #fff !important;
}

.pp-btn-secondary {
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  background: transparent;
  color: #fff !important;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  border: 1.5px solid rgba(255, 255, 255, 0.2);
  transition: all 0.2s;
  white-space: nowrap;
}

.pp-btn-secondary:hover {
  border-color: rgba(255, 255, 255, 0.45);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  color: #fff !important;
}

/* ----------------------------------------------------------------
   12. CARDS  (generic — feature cards, use-case cards, etc.)
   Combine feat-card and user-card into one reusable .pp-card
---------------------------------------------------------------- */
/* Gradient Product Page Card */
.gradient-pp-card {
  position: relative;
  overflow: hidden;
  height: 100%;
  padding: 30px 28px;
  border-radius: var(--radius-lg);

  background:
    radial-gradient(circle at bottom left,
      rgba(255, 0, 140, 0.22) 0%,
      rgba(255, 0, 140, 0) 38%),
    linear-gradient(145deg,
      #2a0050 0%,
      #170028 45%,
      #0a0014 100%);

  border: 1px solid rgba(168, 85, 247, 0.18);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 10px 40px rgba(76, 0, 130, 0.22);

  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    box-shadow 0.35s ease;
}

/* top subtle glow */
.gradient-pp-card::before {
  content: "";
  position: absolute;
  inset: 0;

  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.05) 0%,
      rgba(255, 255, 255, 0) 30%);

  pointer-events: none;
}

/* hover glow */
.gradient-pp-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;

  background:
    linear-gradient(135deg,
      rgba(168, 85, 247, 0.18),
      transparent 35%,
      transparent 65%,
      rgba(236, 72, 153, 0.12));

  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.gradient-pp-card:hover {
  transform: translateY(-4px);

  border-color: rgba(168, 85, 247, 0.35);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 16px 48px rgba(124, 58, 237, 0.24);
}

.gradient-pp-card:hover::after {
  opacity: 1;
}

/* Keep original sizes */
.gradient-pp-card .pp-card-icon {
  background:
    linear-gradient(180deg,
      rgba(168, 85, 247, 0.16),
      rgba(168, 85, 247, 0.08));

  border: 1px solid rgba(192, 132, 252, 0.22);

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 8px 24px rgba(168, 85, 247, 0.14);
}

.gradient-pp-card .pp-card-title {
  color: #ffffff;
}

.gradient-pp-card .pp-card-desc {
  color: rgba(255, 255, 255, 0.72);
}

.pp-card {
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  height: 100%;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
  position: relative;
  overflow: hidden;
}

.pp-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.05), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.pp-card:hover {
  border-color: rgba(168, 85, 247, 0.35);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(168, 85, 247, 0.14);
}

.pp-card:hover::before {
  opacity: 1;
}

/* Icon box inside a card */
.pp-card-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  color: var(--purple);
  margin-bottom: 18px;
  position: relative;
  z-index: 1;
}

/* Add .g-text to pp-card-title for gradient variant */
.pp-card-title {
  font-size: 0.9375rem;
  font-weight: 700;
  margin-bottom: 10px;
  position: relative;
  z-index: 1;
}

.pp-card-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.72;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* ----------------------------------------------------------------
   13. STEP CARDS  (How It Works / numbered steps)
---------------------------------------------------------------- */
.pp-step-card {
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  position: relative;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}

.pp-step-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(168, 85, 247, 0.12);
}

.pp-step-badge {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--grad-135);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 20px;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4);
}

.pp-step-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.pp-step-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.78;
  margin: 0;
}

/* ----------------------------------------------------------------
   14. INTRO TEXT CARD  (centered summary block)
---------------------------------------------------------------- */
.pp-intro-card {
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.pp-intro-card p {
  font-size: 1rem;
  color: var(--text-2);
  line-height: 1.85;
  margin: 0;
}

.pp-intro-card strong {
  color: var(--text);
  font-weight: 700;
}

/* ----------------------------------------------------------------
   15. QUOTE BLOCK
---------------------------------------------------------------- */
.pp-quote {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--text);
  padding: 24px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  max-width: 520px;
  margin: 40px auto 0;
}

/* ----------------------------------------------------------------
   16. QUERY / CONTEXT BLOCK  (inline callout showing a sample question)
---------------------------------------------------------------- */
.pp-query-block {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 18px 20px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.6;
}

.pp-query-block span {
  color: var(--text);
  font-weight: 600;
}

/* ----------------------------------------------------------------
   17. CODE / TERMINAL WINDOW
---------------------------------------------------------------- */
.pp-terminal {
  background: #0D0A18;
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 100%;
}

.pp-terminal-topbar {
  background: rgba(168, 85, 247, 0.08);
  border-bottom: 1px solid rgba(168, 85, 247, 0.15);
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.pp-terminal-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.pp-terminal-dot-1 {
  background: #E040FB;
  box-shadow: 0 0 6px rgba(224, 64, 251, 0.7);
}

.pp-terminal-dot-2 {
  background: #A855F7;
  box-shadow: 0 0 6px rgba(168, 85, 247, 0.7);
}

.pp-terminal-dot-3 {
  background: rgba(255, 255, 255, 0.15);
}

.pp-terminal-title {
  font-size: 0.7rem;
  color: var(--text-3);
  font-weight: 600;
  letter-spacing: 0.06em;
  margin-left: 6px;
}

.pp-terminal-body {
  padding: 20px;
}

/* Code block within a terminal */
.pp-code-block {
  font-family: 'Courier New', monospace;
  font-size: 0.78rem;
  color: rgba(192, 132, 252, 0.85);
  line-height: 1.7;
  background: rgba(168, 85, 247, 0.06);
  border: 1px solid rgba(168, 85, 247, 0.15);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  margin-bottom: 16px;
}

/* Syntax highlighting tokens — use inside .pp-code-block */
.pp-code-block .kw {
  color: #E040FB;
}

.pp-code-block .fn {
  color: #A855F7;
}

.pp-code-block .str {
  color: #86efac;
}

/* Data results table inside terminal */
.pp-data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.75rem;
}

.pp-data-table th {
  background: rgba(168, 85, 247, 0.12);
  color: var(--purple);
  font-weight: 700;
  padding: 8px 12px;
  text-align: left;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.pp-data-table td {
  padding: 7px 12px;
  color: var(--text-2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.pp-data-table tr:last-child td {
  border-bottom: none;
}

.pp-data-table td.val {
  color: var(--text);
  font-weight: 600;
}

/* ----------------------------------------------------------------
   18. PROVIDER GRID  (LLM / integration logos/names)
---------------------------------------------------------------- */
.pp-providers {
  background: var(--bg);
  padding: var(--pad) 0;
}

.pp-provider-card {
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
}

.pp-provider-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 28px;
  color: var(--text);
}

.pp-provider-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.pp-provider-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.pp-provider-name {
  font-size: 0.9rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pp-provider-models {
  font-size: 0.78rem;
  color: var(--text-2);
  line-height: 1.5;
}

/* ----------------------------------------------------------------
   19. DEPLOYMENT OPTION LABELS  (above the comparison table)
---------------------------------------------------------------- */
.pp-deploy-option-title {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.pp-deploy-option-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.78;
  margin: 0;
}

/* ----------------------------------------------------------------
   20. COMPARISON TABLE  (SaaS vs On-Premise, etc.)
---------------------------------------------------------------- */
.pp-compare {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pp-compare-header {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  background: rgba(168, 85, 247, 0.08);
  border-bottom: 1px solid var(--border);
}

.pp-compare-header div {
  padding: 16px 24px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.pp-compare-header div:nth-child(2),
.pp-compare-header div:nth-child(3) {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pp-compare-row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.pp-compare-row:last-child {
  border-bottom: none;
}

.pp-compare-row:hover {
  background: rgba(168, 85, 247, 0.04);
}

.pp-compare-row div {
  padding: 14px 24px;
  font-size: 0.85rem;
  color: var(--text-2);
  display: flex;
  align-items: center;
}

.pp-compare-row div:first-child {
  color: var(--text-3);
  font-size: 0.8rem;
  font-weight: 600;
}

.pp-compare-row div:nth-child(2) {
  color: var(--text);
}

.pp-compare-highlight {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ----------------------------------------------------------------
   21. DIFFERENTIATORS LIST  (What Makes Us Different rows)
---------------------------------------------------------------- */
.pp-diff-row {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: background 0.2s;
}

.pp-diff-row:last-child {
  border-bottom: none;
}

.pp-diff-x {
  font-size: 1.1rem;
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  flex-shrink: 0;
  line-height: 1;
}

.pp-diff-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.3;
}

.pp-diff-desc {
  font-size: 0.9rem;
  color: #626272;
  line-height: 1.78;
  margin: 0;
  padding-top: 2px;
}

/* ----------------------------------------------------------------
   22. SPECS TABLE
---------------------------------------------------------------- */
.pp-specs-wrap {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pp-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.pp-specs-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
}

.pp-specs-table tr:last-child {
  border-bottom: none;
}

.pp-specs-table tr:hover {
  background: rgba(168, 85, 247, 0.04);
}

.pp-specs-table td {
  padding: 18px 28px;
  font-size: 0.9rem;
  vertical-align: top;
}

.pp-specs-table td:first-child {
  color: var(--text-2);
  font-weight: 600;
  width: 36%;
  font-size: 0.85rem;
}

.pp-specs-table td:last-child {
  color: var(--text);
}

.pp-specs-table td.highlight {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ----------------------------------------------------------------
   23. FAQ ACCORDION
---------------------------------------------------------------- */
.pp-faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.pp-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
}

.pp-faq-btn:hover {
  color: var(--purple);
}

.pp-faq-icon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 85, 247, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  flex-shrink: 0;
  font-size: 0.65rem;
  transition: all 0.28s;
}

.pp-faq-btn.open .pp-faq-icon {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: rotate(45deg);
}

.pp-faq-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.pp-faq-ans.open {
  max-height: 220px;
}

.pp-faq-ans p {
  padding-bottom: 22px;
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0;
}

/* ----------------------------------------------------------------
   24. CTA BOX
---------------------------------------------------------------- */
.pp-cta {
  background: var(--bg);
  padding: 0 0 var(--pad);
}

.pp-cta-box {
  background: var(--card-3);
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: var(--radius-xl);
  padding: 72px 56px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 0 60px rgba(168, 85, 247, 0.12);
}

.pp-cta-box::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 500px;
  height: 300px;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.pp-cta-inner {
  position: relative;
  z-index: 1;
}

.pp-cta-title {
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -0.022em;
  margin-bottom: 14px;
  color: var(--text);
}

.pp-cta-desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  max-width: 480px;
  margin: 0 auto 32px;
  line-height: 1.75;
}

.pp-cta-trust {
  font-size: 0.78rem;
  color: var(--text-3);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 24px;
}

.pp-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.pp-cta-trust span::before {
  content: '✓';
  color: var(--purple);
  font-weight: 700;
}

/* ----------------------------------------------------------------
   25. FOOTER
---------------------------------------------------------------- */
.pp-footer {
  background: #020103;
  color: white;
  padding: 40px 0 20px;
  border-top: 1px solid var(--border);
}

.pp-footer h5 {
  font-size: 1.1rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.pp-footer .list-unstyled {
  padding-left: 0;
  list-style: none;
}

.pp-footer .list-unstyled li {
  font-size: 0.9rem;
  margin-bottom: 10px;
}

.pp-footer .list-unstyled li a:hover {
  background: var(--grad);
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

.pp-footer .social-icon {
  color: white;
  margin-right: 14px;
  font-size: 1.3rem;
  transition: color 0.3s;
}

.pp-footer .social-icon:hover {
  color: #A855F7;
}

.pp-footer-logo {
  max-height: 30px;
  width: auto;
  display: block;
}

.pp-footer a {
  color: white;
  text-decoration: none;
  transition: color 0.3s;
}

.pp-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  margin-top: 32px;
  padding-top: 16px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-3);
}

/* ----------------------------------------------------------------
   26. SCROLL REVEAL
---------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ----------------------------------------------------------------
   27. RESPONSIVE
---------------------------------------------------------------- */
@media (max-width: 991px) {
  .pp-provider-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .pp-compare-header,
  .pp-compare-row {
    grid-template-columns: 1.4fr 1fr 1fr;
  }
}

@media (max-width: 768px) {
  :root {
    --pad: 64px;
  }

  .pp-hero-actions .pp-btn-primary,
  .pp-hero-actions .pp-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .pp-hero-visual {
    height: auto;
  }

  .pp-orb-wrap {
    width: 300px;
    height: 300px;
  }

  .pp-stat-item {
    padding: 8px 16px;
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .pp-stat-item:last-child {
    border-bottom: none;
  }

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

  .pp-compare-header,
  .pp-compare-row {
    grid-template-columns: 1fr 1fr;
  }

  .pp-compare-header div:first-child,
  .pp-compare-row div:first-child {
    display: none;
  }

  .pp-cta-box {
    padding: 40px 24px;
  }

  .pp-cta-box .pp-btn-primary,
  .pp-cta-box .pp-btn-secondary {
    width: 100%;
    max-width: 280px;
  }

  .pp-footer .row {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .pp-navbar-logo {
    max-height: 60px;
  }
}

/* ----------------------------------------------------------------
   28. PIPELINE STEPS  (vertical numbered workflow steps)
   Used on: QuillBot, and any product page needing a numbered
   step-by-step flow. Wrap items in d-flex flex-column gap-3.
---------------------------------------------------------------- */
.pp-pipeline-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s, box-shadow 0.3s;
}

.pp-pipeline-item:hover {
  border-color: rgba(168, 85, 247, 0.3);
  box-shadow: 0 8px 28px rgba(168, 85, 247, 0.1);
}

.pp-pipeline-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--grad-135);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4);
}

.pp-pipeline-title {
  font-size: 1.0625rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text);
}

.pp-pipeline-desc {
  font-size: 0.875rem;
  color: var(--text-2);
  line-height: 1.75;
  margin: 0;
}

/* ----------------------------------------------------------------
   29. OPERATIONS PANEL  (live pipeline status display)
   Used on: QuillBot and any AI tool page showing operation state.
   Extends .pp-terminal appearance — uses same topbar component.
---------------------------------------------------------------- */
.pp-ops-panel {
  background: #0D0A18;
  border: 1px solid rgba(168, 85, 247, 0.25);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pp-ops-panel-body {
  padding: 20px;
}

.pp-ops-doc-header {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-3);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(168, 85, 247, 0.12);
}

.pp-ops-doc-header span {
  color: var(--text-2);
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
}

.pp-op-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  background: rgba(168, 85, 247, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.08);
}

.pp-op-row-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.pp-op-row-icon.done {
  background: rgba(134, 239, 172, 0.12);
  color: #86efac;
}

.pp-op-row-icon.running {
  background: rgba(168, 85, 247, 0.15);
  color: var(--purple);
}

.pp-op-row-icon.queued {
  background: rgba(255, 255, 255, 0.04);
  color: var(--text-3);
}

.pp-op-row-label {
  flex: 1;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text);
}

.pp-op-row-meta {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pp-op-row-time {
  font-size: 0.72rem;
  color: var(--text-3);
  font-family: 'Courier New', monospace;
}

.pp-op-status-badge {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  white-space: nowrap;
}

.pp-op-status-badge.done {
  background: rgba(134, 239, 172, 0.12);
  color: #86efac;
}

.pp-op-status-badge.running {
  background: rgba(168, 85, 247, 0.15);
  color: var(--purple);
}

.pp-op-status-badge.queued {
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-3);
}

.pp-ops-output {
  margin-top: 16px;
  padding: 14px 16px;
  background: rgba(168, 85, 247, 0.04);
  border: 1px solid rgba(168, 85, 247, 0.12);
  border-radius: var(--radius-sm);
}

.pp-ops-output-label {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-3);
  margin-bottom: 8px;
}

.pp-ops-output-text {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
  font-style: italic;
  margin: 0 0 12px;
}

.pp-ops-progress-bar {
  height: 4px;
  background: rgba(168, 85, 247, 0.12);
  border-radius: 2px;
  overflow: hidden;
}

.pp-ops-progress-fill {
  height: 100%;
  background: var(--grad);
  border-radius: 2px;
  width: 75%;
}

/* Responsive: pipeline items & ops panel */
@media (max-width: 768px) {
  .pp-pipeline-item {
    padding: 20px;
    gap: 16px;
  }

  .pp-pipeline-num {
    width: 40px;
    height: 40px;
    font-size: 0.875rem;
  }

  .pp-ops-panel-body {
    padding: 14px;
  }
}

/* ----------------------------------------------------------------
   30. TRUSTED PILLS  (industry/sector tags — used in QuillBot and
   any product page showing a "Trusted Across" credibility strip)
---------------------------------------------------------------- */
.pp-trusted {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 64px 0 80px;
}

.pp-trusted-pill {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-full);
  font-size: 0.875rem;
  color: var(--text-2);
  font-weight: 500;
  white-space: nowrap;
  transition: border-color 0.2s, color 0.2s;
}

.pp-trusted-pill:hover {
  border-color: rgba(168, 85, 247, 0.35);
  color: var(--text);
}

.pp-trusted-intro {
  max-width: 780px;
  margin: 0 auto;
  font-size: 1.0625rem;
  color: var(--text-2);
  line-height: 1.85;
  text-align: center;
}

.pp-trusted-intro strong {
  color: var(--text);
  font-weight: 700;
}

/* ----------------------------------------------------------------
   31. STAT CALLOUT  (large single metric — problem/emphasis sections)
   e.g. the "25x" block in QuillBot's problem section
---------------------------------------------------------------- */
.pp-stat-callout {
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pp-stat-callout::before {
  content: '';
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  width: 320px;
  height: 220px;
  background: radial-gradient(ellipse, rgba(168, 85, 247, 0.18) 0%, transparent 70%);
  pointer-events: none;
}

.pp-stat-callout-inner {
  position: relative;
  z-index: 1;
}

.pp-stat-callout-value {
  font-size: clamp(4rem, 8vw, 6rem);
  font-weight: 900;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.04em;
}

.pp-stat-callout-desc {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.72;
  margin-bottom: 20px;
}

.pp-stat-callout-note {
  font-size: 0.875rem;
  font-weight: 700;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ----------------------------------------------------------------
   32. ARCHITECTURE TABLE  (2-column: layer | what it solves)
   Reusable on any page needing a named-layer comparison table.
---------------------------------------------------------------- */
.pp-arch-table {
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pp-arch-table-header {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  background: rgba(168, 85, 247, 0.08);
  border-bottom: 1px solid var(--border);
}

.pp-arch-table-header div {
  padding: 14px 22px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pp-arch-table-row {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.2s;
}

.pp-arch-table-row:last-child {
  border-bottom: none;
}

.pp-arch-table-row:hover {
  background: rgba(168, 85, 247, 0.04);
}

.pp-arch-table-row div {
  padding: 18px 22px;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
}

.pp-arch-table-row div:first-child {
  color: var(--text);
  font-weight: 700;
  font-size: 0.82rem;
  border-right: 1px solid rgba(255, 255, 255, 0.04);
}

.pp-arch-table-row div:last-child {
  color: var(--text-2);
  line-height: 1.65;
}

/* ----------------------------------------------------------------
   33. CARD RESULT  ("The result:" gradient line inside cards)
   Used in use-case cards. Wrap the "The result:" label in <strong>.
---------------------------------------------------------------- */
.pp-card-result {
  font-size: 0.82rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid rgba(168, 85, 247, 0.12);
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}

.pp-card-result strong {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 700;
}

/* ----------------------------------------------------------------
   Responsive additions for components 30–33
---------------------------------------------------------------- */
@media (max-width: 991px) {
  .pp-stat-callout {
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .pp-trusted {
    padding: 48px 0 60px;
  }

  .pp-arch-table-header,
  .pp-arch-table-row {
    grid-template-columns: 1fr;
  }

  .pp-arch-table-row div:first-child {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    padding-bottom: 10px;
  }

  .pp-arch-table-row div:last-child {
    padding-top: 10px;
  }

  .pp-stat-callout {
    padding: 36px 24px;
  }
}

@media (max-width: 575px) {
  .pp-terminal-body {
    padding: 14px;
  }

  .pp-code-block {
    font-size: 0.72rem;
    overflow-x: auto;
  }

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

  .pp-specs-table td {
    padding: 14px 16px;
  }

  .pp-cta-box {
    padding: 36px 20px;
  }

  .pp-compare-header div,
  .pp-compare-row div {
    padding: 12px 14px;
    font-size: 0.78rem;
  }
}

/* ----------------------------------------------------------------
   34. NUMBERED PROBLEM CARDS  (pp-num-card)
   Used in Document Agent "Three Root Problems" section.
---------------------------------------------------------------- */
.pp-num-card {
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  height: 100%;
  position: relative;
  transition: border-color 0.3s, transform 0.3s;
}

.pp-num-card:hover {
  border-color: rgba(168, 85, 247, 0.3);
  transform: translateY(-4px);
}

.pp-num-card-badge {
  display: inline-block;
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font);
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.pp-num-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.pp-num-card-desc {
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
   35. SECURITY LIST  (pp-security-list, pp-security-item)
   Used in Document Agent "Security" section.
---------------------------------------------------------------- */
.pp-security-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.pp-security-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border-card);
  transition: background 0.2s;
}

.pp-security-item:last-child {
  border-bottom: none;
}

.pp-security-item:hover {
  background: rgba(168, 85, 247, 0.04);
}

.pp-security-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border-radius: var(--radius-md);
  background: rgba(168, 85, 247, 0.12);
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--purple);
}

.pp-security-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
  line-height: 1.3;
}

.pp-security-desc {
  font-size: 0.88rem;
  color: var(--text-2);
  line-height: 1.65;
  margin-bottom: 0;
}

/* ----------------------------------------------------------------
   36. HERO NOTE & TRUST  (pp-hero-note, pp-hero-trust)
   Small informational lines below hero CTAs.
---------------------------------------------------------------- */
.pp-hero-note {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-top: 14px;
  margin-bottom: 0;
}

.pp-hero-trust {
  font-size: 0.82rem;
  color: var(--text-3);
  margin-top: 8px;
  margin-bottom: 0;
}

.pp-hero-trust span {
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 600;
}

/* ----------------------------------------------------------------
   Responsive additions for components 34–36
---------------------------------------------------------------- */
@media (max-width: 991px) {
  .pp-num-card {
    padding: 28px 24px;
  }

  .pp-security-item {
    padding: 24px 24px;
    gap: 16px;
  }
}

@media (max-width: 575px) {
  .pp-num-card {
    padding: 24px 20px;
  }

  .pp-num-card-badge {
    font-size: 1.8rem;
  }

  .pp-security-item {
    padding: 20px 16px;
    flex-direction: column;
    gap: 12px;
  }

  .pp-security-icon {
    width: 38px;
    height: 38px;
    min-width: 38px;
  }
}

/* ----------------------------------------------------------------
   37. PLATFORM HIGHLIGHTS CHECKLIST  (pp-check-list)
   Used on: IMPACTORS and any page with a 2-col feature checklist.
---------------------------------------------------------------- */
.pp-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 64px;
}

.pp-check-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.pp-check-icon {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: var(--radius-sm);
  background: var(--grad-135);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.8rem;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(168, 85, 247, 0.4);
  margin-top: 2px;
}

.pp-check-text {
  font-size: 0.9375rem;
  color: var(--text-2);
  line-height: 1.55;
  padding-top: 6px;
}

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

/* ----------------------------------------------------------------
   38. HERO SOCIAL LINKS  (pp-hero-socials, pp-hero-social-link)
   Used on: any product hero that needs social icon row below CTAs.
---------------------------------------------------------------- */
.pp-hero-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.pp-hero-social-link {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-sm);
  background: rgba(168, 85, 247, 0.08);
  border: 1px solid rgba(168, 85, 247, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-2);
  font-size: 0.85rem;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}

.pp-hero-social-link:hover {
  background: rgba(168, 85, 247, 0.2);
  border-color: rgba(168, 85, 247, 0.45);
  color: var(--text);
}

/* ----------------------------------------------------------------
   39. FAQ CARD STYLE  (pp-faq-card-item)
   Standalone bordered card per item — alternative to pp-faq-item.
   Used on: IMPACTORS and any page needing separated FAQ cards.
---------------------------------------------------------------- */
.pp-faq-card-item {
  background: var(--card);
  border: 1px solid var(--border-card);
  border-radius: var(--radius-md);
  margin-bottom: 10px;
  overflow: hidden;
  transition: border-color 0.2s;
}

.pp-faq-card-item:last-child {
  margin-bottom: 0;
}

.pp-faq-card-item:hover {
  border-color: rgba(168, 85, 247, 0.3);
}

.pp-faq-card-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--font);
  font-size: 0.9375rem;
  font-weight: 500;
  color: var(--text);
  text-align: left;
  gap: 20px;
  transition: color 0.2s;
}

.pp-faq-card-btn:hover {
  color: var(--purple);
}

.pp-faq-card-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid rgba(168, 85, 247, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pink);
  flex-shrink: 0;
  font-size: 0.75rem;
  transition: all 0.28s;
}

.pp-faq-card-btn.open .pp-faq-card-icon {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: rotate(45deg);
}

.pp-faq-card-ans {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.38s ease;
}

.pp-faq-card-ans.open {
  max-height: 260px;
}

.pp-faq-card-ans p {
  margin: 0;
  padding: 16px 24px 20px;
  font-size: 0.9rem;
  color: var(--text-2);
  line-height: 1.75;
  border-top: 1px solid var(--border-card);
}

/* ----------------------------------------------------------------
   40. CTA GRADIENT BANNER  (pp-cta-banner)
   Full-width gradient background CTA — replaces the card-inside
   pattern. Used when the entire section IS the gradient.
---------------------------------------------------------------- */
.pp-cta-banner {
  background: linear-gradient(135deg, #1a053a 0%, #3b0870 35%, #5e0fa0 65%, #7c1fbc 100%);
  padding: var(--pad) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.pp-cta-banner::before {
  content: '';
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pp-cta-banner-inner {
  position: relative;
  z-index: 1;
}

.pp-cta-banner-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.025em;
  color: var(--text);
  margin-bottom: 14px;
}

.pp-cta-banner-sub {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 32px;
}

@media (max-width: 768px) {
  .pp-cta-banner {
    padding: 64px 0;
  }

  .pp-faq-card-btn {
    padding: 16px 18px;
    font-size: 0.875rem;
  }

  .pp-faq-card-ans p {
    padding: 14px 18px 18px;
  }

  .pp-cta-banner-title {
    font-size: clamp(1.5rem, 5vw, 2rem);
  }
}

@media (max-width: 575px) {
  .pp-check-icon {
    width: 30px;
    height: 30px;
    min-width: 30px;
  }
}

.pp-query-list {
  position: relative;
  z-index: 1;
  margin-top: 10px;
}

.pp-query-item {
  padding: 7px;
  border-radius: 14px;

  background:
    linear-gradient(145deg,
      rgba(76, 0, 130, 0.9) 0%,
      rgba(36, 0, 64, 0.95) 100%);

  border: 1px solid rgba(168, 85, 247, 0.22);

  color: rgba(238, 221, 255, 0.92);

  font-family: "IBM Plex Mono", monospace;
  font-size: 0.7rem;
  line-height: 1.4;
  font-weight: 400;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 8px 28px rgba(76, 0, 130, 0.18);

  transition:
    transform 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease;
}

@media (max-width: 768px) {
  .pp-query-item {
    padding: 22px 20px;
    font-size: 0.9375rem;
    line-height: 1.7;
  }
}
