/* ============================================================
   PRICING PAGE — pricing.css
   Neodustria Platform — Industrial Intelligence
   ============================================================ */

/* ── Design Tokens ── */
:root {
  --pr-bg:         #02050A;
  --pr-panel:      #050D18;
  --pr-panel-2:    #040A16;
  --pr-blue:       #168BFF;
  --pr-cyan:       #005dba;
  --pr-muted:      #A9B8C8;
  --pr-border:     rgba(22,139,255,0.18);
  --pr-glow:       rgba(22,139,255,0.28);
  --pr-cyan-glow:  rgba(0,93,186,0.70);
}

/* ============================================================
   UTILITIES
   ============================================================ */

.pr-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.pr-visible {
  opacity: 1;
  transform: none;
}

.pr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #005dba;
  text-shadow: 0 0 14px rgba(0,93,186,0.45);
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.pr-eyebrow::before {
  content: '';
  width: 6px; height: 6px; border-radius: 50%;
  background: #005dba;
  box-shadow: 0 0 8px rgba(0,93,186,0.65);
  flex-shrink: 0;
}
.pr-eyebrow::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 36px; height: 1px;
  background: linear-gradient(90deg, #005dba, transparent);
}

.pr-section-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  text-align: center;
  margin-bottom: 10px;
  display: block;
}

.pr-section-title {
  font-size: clamp(26px, 2.5vw, 38px);
  font-weight: 800;
  color: #fff;
  text-align: center;
  margin: 0 auto 48px;
  max-width: 640px;
  line-height: 1.18;
}

.pr-section-sub {
  font-size: 16px;
  color: var(--pr-muted);
  text-align: center;
  max-width: 580px;
  margin: 0 auto -20px;
  line-height: 1.7;
}

/* ============================================================
   HERO
   ============================================================ */

.pr-hero {
  position: relative;
  overflow: hidden;
  background: var(--pr-bg);
  padding-top: 130px;
}

.pr-particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.pr-hero-container {
  position: relative;
  z-index: 2;
  padding-bottom: 60px;
}

.pr-hero-grid {
  display: grid;
  grid-template-columns: 42% 58%;
  gap: 0;
  align-items: center;
  min-height: 660px;
}

.pr-hero-text {
  padding: 56px 40px 56px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pr-hero h1 {
  font-size: clamp(32px, 3.8vw, 52px);
  font-weight: 700;
  color: #fff;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin: 0 0 14px;
}
.pr-accent { color: #168BFF; font-style: normal; }

.pr-hero-subtitle {
  font-size: clamp(15px, 1.4vw, 18px);
  font-weight: 600;
  color: rgba(255,255,255,0.84);
  margin-bottom: 12px;
}

.pr-hero-body {
  font-size: 14px;
  color: var(--pr-muted);
  line-height: 1.78;
  margin-bottom: 28px;
  max-width: 440px;
}

.pr-hero-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* Buttons */
.pr-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: linear-gradient(135deg, #168BFF 0%, #0B5CFF 100%);
  border: none;
  border-radius: 28px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  cursor: pointer;
  transition: box-shadow 0.3s, transform 0.3s;
  white-space: nowrap;
}

.pr-btn-primary:hover {
  box-shadow: 0 0 28px rgba(22,139,255,0.50);
  transform: translateY(-2px);
  color: #fff;
  text-decoration: none;
}

.pr-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 28px;
  color: rgba(255,255,255,0.80);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s, color 0.3s, background 0.3s;
  white-space: nowrap;
}

.pr-btn-ghost:hover {
  border-color: rgba(255,255,255,0.40);
  color: #fff;
  background: rgba(255,255,255,0.05);
  text-decoration: none;
}

/* Chips */
.pr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 32px;
}

.pr-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: rgba(22,139,255,0.07);
  border: 1px solid rgba(22,139,255,0.22);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: rgba(255,255,255,0.80);
  white-space: nowrap;
}

.pr-chip svg {
  width: 12px;
  height: 12px;
  stroke: var(--pr-cyan);
  fill: none;
  stroke-width: 2;
  flex-shrink: 0;
}

/* ── Hero Visual ── */
.pr-hero-visual {
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pr-hero-visual > img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: contain;
  display: block;
  position: relative;
  z-index: 1;
}

.pr-hero-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg,
    rgba(2,5,10,0.60) 0%,
    rgba(2,5,10,0.22) 10%,
    transparent 30%
  );
}

/* Floating hero chips */
.pr-hero-chip {
  position: absolute;
  z-index: 4;
  background: linear-gradient(135deg, rgba(4,10,22,0.92), rgba(7,17,34,0.86));
  border: 1px solid rgba(22,139,255,0.35);
  border-radius: 8px;
  padding: 6px 12px 6px 10px;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.85);
  display: flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(8px);
  animation: pr-chip-float 4s ease-in-out infinite;
  white-space: nowrap;
}

.pr-hero-chip::before {
  content: '';
  width: 6px;
  height: 6px;
  min-width: 6px;
  border-radius: 50%;
  background: var(--pr-cyan);
  box-shadow: 0 0 8px var(--pr-cyan-glow);
  animation: pr-chip-blink 2s ease-in-out infinite;
}

.pr-hero-chip--tl {
  top: 14%;
  left: 12%;
}

.pr-hero-chip--tr {
  top: 22%;
  right: 8%;
  animation-delay: 0.8s;
}

.pr-hero-chip--br {
  bottom: 22%;
  right: 10%;
  animation-delay: 1.6s;
}

@keyframes pr-chip-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-5px); }
}

@keyframes pr-chip-blink {
  0%, 100% { opacity: 1; }
  50%       { opacity: 0.3; }
}

/* Energy lines */
.pr-hero-energy {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  overflow: hidden;
}

.pr-hero-energy-line {
  position: absolute;
  height: 1px;
  background: linear-gradient(90deg,
    transparent,
    rgba(0,93,186,0.55),
    transparent
  );
  animation: pr-energy-sweep 4s linear infinite;
}

.pr-hero-energy-line:nth-child(1) {
  width: 60%;
  top: 35%;
  left: -60%;
  animation-delay: 0s;
}

.pr-hero-energy-line:nth-child(2) {
  width: 40%;
  top: 55%;
  left: -40%;
  animation-delay: 1.5s;
}

.pr-hero-energy-line:nth-child(3) {
  width: 50%;
  top: 70%;
  left: -50%;
  animation-delay: 2.8s;
}

@keyframes pr-energy-sweep {
  from   { transform: translateX(0);    opacity: 0; }
  5%     { opacity: 1; }
  90%    { opacity: 0.7; }
  to     { transform: translateX(280%); opacity: 0; }
}

/* ============================================================
   ENGAGEMENT MODELS SECTION
   ============================================================ */

.pr-models {
  background: var(--pr-panel);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.pr-models::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(22,139,255,0.04) 1px, transparent 1px),
    linear-gradient(rgba(22,139,255,0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  opacity: 0.4;
  pointer-events: none;
}

/* ── Tier card grid (2-col, matches reference) ── */
.pr-tier-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 28px;
}

.pr-tier-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: rgba(5,12,24,0.95);
  border: 1px solid rgba(22,139,255,0.20);
  padding: 40px 36px 36px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.3s;
}

.pr-tier-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent 5%, rgba(22,139,255,0.40) 30%, rgba(0,93,186,0.55) 50%, rgba(22,139,255,0.40) 70%, transparent 95%);
  pointer-events: none;
}

.pr-tier-card:hover {
  border-color: rgba(22,139,255,0.42);
  box-shadow: 0 0 50px rgba(22,139,255,0.13), 0 32px 80px rgba(0,0,0,0.55);
  transform: translateY(-5px);
}

.pr-tier-card--primary {
  border-color: rgba(22,139,255,0.35);
  background: rgba(5,15,36,0.97);
}

.pr-tier-card--primary::before {
  background: linear-gradient(90deg, transparent 5%, rgba(22,139,255,0.70) 30%, rgba(0,93,186,0.85) 50%, rgba(22,139,255,0.70) 70%, transparent 95%);
}

.pr-tier-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  margin-bottom: 18px;
}

.pr-tier-tag svg { stroke: var(--pr-cyan); flex-shrink: 0; }

.pr-tier-title {
  font-size: clamp(28px, 2.8vw, 36px);
  font-weight: 800;
  color: #fff;
  line-height: 1.12;
  margin: 0 0 14px;
}

.pr-tier-desc {
  font-size: 14px;
  color: var(--pr-muted);
  line-height: 1.65;
  margin-bottom: 28px;
}

.pr-tier-divider {
  height: 1px;
  background: rgba(22,139,255,0.12);
  margin-bottom: 24px;
}

.pr-tier-features {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}

.pr-tier-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.88);
  line-height: 1.4;
}

.pr-tier-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border-radius: 50%;
  background: rgba(22,139,255,0.15);
  color: var(--pr-cyan);
}

.pr-tier-check svg { stroke: var(--pr-cyan); }

.pr-tier-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 14px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s;
  margin-top: auto;
}

.pr-tier-cta--outline {
  background: transparent;
  border: 1px solid rgba(22,139,255,0.30);
  color: rgba(255,255,255,0.80);
}

.pr-tier-cta--outline:hover {
  background: rgba(22,139,255,0.08);
  border-color: rgba(22,139,255,0.60);
  color: #fff;
  text-decoration: none;
}

.pr-tier-cta--primary {
  background: linear-gradient(135deg, #168BFF 0%, #0B5CFF 100%);
  border: 1px solid rgba(22,139,255,0.40);
  color: #fff;
  box-shadow: 0 0 28px rgba(22,139,255,0.30);
}

.pr-tier-cta--primary:hover {
  background: linear-gradient(135deg, #22a0ff 0%, #1570ff 100%);
  box-shadow: 0 0 44px rgba(22,139,255,0.50);
  color: #fff;
  text-decoration: none;
  transform: translateY(-2px);
}

/* "All plans include" bar */
.pr-plans-bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 20px;
  padding: 16px 28px;
  background: rgba(22,139,255,0.04);
  border: 1px solid rgba(22,139,255,0.13);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(169,184,200,0.82);
  letter-spacing: 0.04em;
}

.pr-plans-bar-label {
  color: rgba(255,255,255,0.65);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-right: 4px;
}

.pr-plans-bar-dot { color: rgba(22,139,255,0.35); font-size: 7px; }

/* Legacy 3-col grid kept for backward compat */
.pr-models-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

/* ── Model Card ── */
.pr-model-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(4,10,22,0.97), rgba(7,17,34,0.92));
  border: 1px solid var(--pr-border);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}

/* Top-line highlight */
.pr-model-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(22,139,255,0.55) 30%,
    rgba(0,93,186,0.65) 50%,
    rgba(22,139,255,0.55) 70%,
    transparent
  );
  pointer-events: none;
}

/* Scanline on hover */
.pr-model-card::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(180deg,
    transparent,
    rgba(22,139,255,0.04),
    transparent
  );
  pointer-events: none;
  transition: top 0.5s ease;
}

.pr-model-card:hover {
  border-color: rgba(22,139,255,0.45);
  box-shadow:
    0 0 40px rgba(22,139,255,0.14),
    0 24px 60px rgba(0,0,0,0.55);
  transform: translateY(-5px);
}

.pr-model-card:hover::after {
  top: 100%;
}

/* Featured variant */
.pr-model-card--featured {
  border-color: rgba(22,139,255,0.35);
  background: linear-gradient(160deg, rgba(5,14,34,0.98), rgba(8,22,48,0.94));
}

.pr-model-card--featured::before {
  background: linear-gradient(
    90deg,
    transparent,
    rgba(22,139,255,0.80) 30%,
    rgba(0,93,186,0.90) 50%,
    rgba(22,139,255,0.80) 70%,
    transparent
  );
}

/* Model card internals */
.pr-model-tag {
  display: inline-block;
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  margin-bottom: 20px;
}

.pr-model-icon-zone {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 22px;
}

.pr-model-icon-ring {
  position: absolute;
  inset: -10px;
  border-radius: 50%;
  border: 1px solid rgba(22,139,255,0.20);
  animation: prIconRing 3s ease-in-out infinite;
}

.pr-model-icon-ring-2 {
  inset: -20px;
  border-color: rgba(22,139,255,0.10);
  animation-delay: 0.8s;
}

@keyframes prIconRing {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%       { transform: scale(1.05); opacity: 1; }
}

.pr-model-icon {
  width: 72px;
  height: 72px;
  object-fit: contain;
  filter: drop-shadow(0 0 18px rgba(22,139,255,0.45));
  animation: prIconFloat 5s ease-in-out infinite;
  position: relative;
  z-index: 1;
}

@keyframes prIconFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-4px); }
}

.pr-model-title {
  font-size: 20px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
  line-height: 1.25;
}

.pr-model-lead {
  font-size: 13.5px;
  color: var(--pr-muted);
  line-height: 1.65;
  margin-bottom: 20px;
}

.pr-model-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.pr-model-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  line-height: 1.5;
}

.pr-model-features li::before {
  content: '';
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--pr-cyan);
  margin-top: 6px;
}

.pr-model-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(22,139,255,0.08);
  border: 1px solid rgba(22,139,255,0.28);
  border-radius: 24px;
  color: rgba(0,93,186,0.85);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  width: fit-content;
}

.pr-model-cta::after {
  content: '→';
  font-size: 13px;
  transition: transform 0.3s;
}

.pr-model-cta:hover {
  background: rgba(22,139,255,0.16);
  border-color: rgba(22,139,255,0.55);
  color: #fff;
  text-decoration: none;
}

.pr-model-cta:hover::after {
  transform: translateX(3px);
}

/* ============================================================
   JOURNEY SECTION
   ============================================================ */

.pr-journey {
  background: var(--pr-bg);
  padding: 100px 0;
}

.pr-journey-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}

/* Connector line */
.pr-journey-grid::before {
  content: '';
  position: absolute;
  top: 42px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(22,139,255,0.35),
    rgba(0,93,186,0.50),
    rgba(22,139,255,0.35)
  );
  z-index: 0;
}

.pr-journey-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

.pr-journey-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(4,10,22,0.96);
  border: 1px solid rgba(22,139,255,0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  color: var(--pr-cyan);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 20px rgba(22,139,255,0.20);
}

.pr-journey-num::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid rgba(22,139,255,0.18);
  animation: prNumRing 2.5s ease-in-out infinite;
}

@keyframes prNumRing {
  0%, 100% { transform: scale(1);    opacity: 0.5; }
  50%       { transform: scale(1.12); opacity: 1; }
}

.pr-journey-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--pr-cyan);
  margin-bottom: 8px;
}

.pr-journey-title {
  font-size: 16px;
  font-weight: 800;
  color: #fff;
  margin: 0 0 10px;
}

.pr-journey-desc {
  font-size: 12.5px;
  color: var(--pr-muted);
  line-height: 1.6;
}

/* Journey step visualizations */
.pr-journey-viz {
  margin-top: 20px;
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(4,10,22,0.70);
  border: 1px solid rgba(22,139,255,0.10);
  padding: 8px 4px 4px;
  box-sizing: border-box;
}
.pr-journey-viz svg { display: block; width: 100%; height: auto; }

/* Gauge arc animated on step becoming visible */
.pr-gauge-arc {
  stroke-dasharray: 210;
  stroke-dashoffset: 210;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.34,1.10,0.64,1) 0.3s;
}
.pr-reveal.pr-visible .pr-gauge-arc { stroke-dashoffset: 52; }

/* Scale bars animated on visible */
.pr-scale-bar {
  transform-origin: bottom;
  transform: scaleY(0);
  transition: transform 0.8s cubic-bezier(0.34,1.10,0.64,1);
}
.pr-reveal.pr-visible .pr-scale-bar:nth-child(1) { transform: scaleY(1); transition-delay: 0.10s; }
.pr-reveal.pr-visible .pr-scale-bar:nth-child(2) { transform: scaleY(1); transition-delay: 0.18s; }
.pr-reveal.pr-visible .pr-scale-bar:nth-child(3) { transform: scaleY(1); transition-delay: 0.26s; }
.pr-reveal.pr-visible .pr-scale-bar:nth-child(4) { transform: scaleY(1); transition-delay: 0.34s; }
.pr-reveal.pr-visible .pr-scale-bar:nth-child(5) { transform: scaleY(1); transition-delay: 0.42s; }
.pr-reveal.pr-visible .pr-scale-bar:nth-child(6) { transform: scaleY(1); transition-delay: 0.50s; }
.pr-reveal.pr-visible .pr-scale-bar:nth-child(7) { transform: scaleY(1); transition-delay: 0.58s; }

/* ROI line draw-on */
.pr-scale-line {
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  transition: stroke-dashoffset 1.2s ease 0.6s;
}
.pr-reveal.pr-visible .pr-scale-line { stroke-dashoffset: 0; }

/* ============================================================
   COMPARISON SECTION
   ============================================================ */

.pr-compare {
  background: var(--pr-panel);
  padding: 100px 0;
}

.pr-compare-wrap {
  overflow-x: auto;
  border-radius: 16px;
  border: 1px solid var(--pr-border);
}

.pr-compare-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 700px;
}

.pr-compare-table thead th {
  padding: 18px 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--pr-border);
  white-space: nowrap;
}

.pr-compare-table thead th:first-child {
  color: var(--pr-muted);
  text-align: left;
  background: rgba(4,10,22,0.80);
}

.pr-compare-table thead th:not(:first-child) {
  text-align: center;
  color: var(--pr-cyan);
  background: rgba(22,139,255,0.06);
}

.pr-compare-table tbody tr {
  border-bottom: 1px solid rgba(22,139,255,0.07);
  transition: background 0.25s;
}

.pr-compare-table tbody tr:hover {
  background: rgba(22,139,255,0.04);
}

.pr-compare-table tbody td {
  padding: 14px 24px;
  font-size: 13px;
  color: rgba(255,255,255,0.78);
  vertical-align: middle;
}

.pr-compare-table tbody td:first-child {
  font-weight: 700;
  color: rgba(255,255,255,0.90);
  background: rgba(4,10,22,0.60);
}

.pr-compare-table tbody td:not(:first-child) {
  text-align: center;
  background: rgba(22,139,255,0.03);
}

.pr-compare-table tbody tr:nth-child(odd) td {
  background-color: rgba(0,0,0,0.12);
}

.pr-compare-table tbody tr:nth-child(odd) td:first-child {
  background: rgba(4,10,22,0.72);
}

.pr-compare-table tbody tr:nth-child(odd) td:not(:first-child) {
  background: rgba(0,0,0,0.10);
}

.pr-check {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(22,139,255,0.15);
  color: var(--pr-cyan);
  font-size: 11px;
}

.pr-partial {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,200,0,0.10);
  color: #FFC800;
  font-size: 11px;
}

.pr-row-label {
  /* text in first column cells */
}

.pr-compare-badge {
  font-size: 9px;
  letter-spacing: 0.20em;
  color: var(--pr-muted);
  display: block;
  text-transform: uppercase;
  font-weight: 400;
  margin-top: 4px;
}

/* ============================================================
   INCLUDED SECTION
   ============================================================ */

.pr-included {
  background: var(--pr-bg);
  padding: 100px 0;
}

.pr-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pr-inc-card {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: linear-gradient(160deg, rgba(4,10,22,0.96), rgba(7,17,34,0.90));
  border: 1px solid var(--pr-border);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.35s, box-shadow 0.35s, transform 0.35s;
}

.pr-inc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(22,139,255,0.55) 30%,
    rgba(0,93,186,0.65) 50%,
    rgba(22,139,255,0.55) 70%,
    transparent
  );
  pointer-events: none;
}

.pr-inc-card:hover {
  border-color: rgba(22,139,255,0.45);
  box-shadow:
    0 0 40px rgba(22,139,255,0.14),
    0 24px 60px rgba(0,0,0,0.55);
  transform: translateY(-5px);
}

.pr-inc-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(22,139,255,0.08);
  border: 1px solid rgba(22,139,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}

.pr-inc-icon-wrap svg {
  width: 20px;
  height: 20px;
  stroke: var(--pr-cyan);
  fill: none;
  stroke-width: 1.5;
}

.pr-inc-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px;
}

.pr-inc-desc {
  font-size: 13px;
  color: var(--pr-muted);
  line-height: 1.6;
  margin: 0;
}

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

.pr-faq {
  background: var(--pr-panel);
  padding: 100px 0;
}

/* 2-column FAQ grid matching reference */
.pr-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 40px;
  align-items: start;
}

.pr-faq-col {
  display: flex;
  flex-direction: column;
}

/* Legacy single-col list kept */
.pr-faq-list {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pr-faq-item {
  border-radius: 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(22,139,255,0.12);
  overflow: hidden;
  transition: border-color 0.3s;
}

.pr-faq-item:first-child { border-top: 1px solid rgba(22,139,255,0.12); }

.pr-faq-item.pr-faq-open {
  border-color: rgba(22,139,255,0.25);
}

.pr-faq-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 4px;
  background: transparent;
  border: 0;
  color: #fff;
  text-align: left;
  cursor: pointer;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.45;
}

.pr-faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: rgba(22,139,255,0.08);
  border: 1px solid var(--pr-border);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s, background 0.3s;
}

.pr-faq-icon svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  transition: transform 0.3s;
}

.pr-faq-item.pr-faq-open .pr-faq-icon {
  background: rgba(22,139,255,0.18);
  border-color: rgba(22,139,255,0.45);
}

.pr-faq-item.pr-faq-open .pr-faq-icon svg {
  transform: rotate(180deg);
}

.pr-faq-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.pr-faq-panel-inner {
  padding: 0 4px 18px;
  font-size: 14px;
  color: var(--pr-muted);
  line-height: 1.72;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 992px) {
  .pr-hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    min-height: unset;
  }

  .pr-hero-text {
    padding: 48px 0 32px;
  }

  .pr-tier-grid {
    grid-template-columns: 1fr;
  }

  .pr-faq-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pr-models-grid {
    grid-template-columns: 1fr;
  }

  .pr-journey-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }

  .pr-journey-grid::before {
    display: none;
  }

  .pr-included-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .pr-models-grid,
  .pr-included-grid,
  .pr-journey-grid {
    grid-template-columns: 1fr;
  }

  .pr-section-title {
    font-size: clamp(22px, 6vw, 30px);
  }
}
