﻿/* ============================================================
   Pricing Page â€” pricing.css
   All classes use pr- prefix.
   ============================================================ */

:root {
  --pr-indigo: #0057ff;
  --pr-indigo-dark: #0040cc;
  --pr-ink: #0B0B12;
  --pr-gray-700: #3A3A48;
  --pr-gray-500: #6B6B7B;
  --pr-gray-300: #D7D8E0;
  --pr-gray-100: #F2F2F6;
  --pr-grad: linear-gradient(90deg, #6366F1, #8B5CF6);
}

.pr-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 130px;
}

.pr-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--pr-indigo);
  background: #fff;
  border: 1px solid #E4E4EE;
  border-radius: 20px;
  padding: 5px 14px;
  margin-bottom: 20px;
}
.pr-eyebrow::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pr-indigo);
}
.pr-eyebrow-blue { color: var(--pr-indigo); background: transparent; border: none; padding: 0; }
.pr-eyebrow-blue::before { display: none; }

/* ============================================================
   HERO
   ============================================================ */
.pr-hero {
  background-color: #f1f2f3;
  background-image: url('https://cdn.prod.website-files.com/65c292289fb0ea1ff3a84bd3/69e74f4f8065c619d9f6af08_hero-bg.avif');
  background-position: 50% -2%;
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  overflow-x:clip;
  padding: 56px 0 0;
  text-align: center;
}

.pr-orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(80px);
  opacity: .18;
  z-index: 0;
}
.pr-orb-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, #818cf8, transparent 70%);
  top: -80px; left: -100px;
  animation: pr-orb1 9s ease-in-out infinite alternate;
}
.pr-orb-2 {
  width: 360px; height: 360px;
  background: radial-gradient(circle, #a5b4fc, transparent 70%);
  top: 10%; right: -80px;
  animation: pr-orb1 11s ease-in-out infinite alternate-reverse;
}
@keyframes pr-orb1 {
  from { transform: translate(0,0); }
  to   { transform: translate(30px,40px); }
}

.pr-hero-inner { position: relative; z-index: 1; }

.pr-hero-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pr-hero-copy {
  max-width: 680px;
}

.pr-h1 {
  font-size: clamp(32px, 4.2vw, 48px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  color: var(--pr-ink);
  margin: 0 0 18px;
}
.pr-accent {
  background: linear-gradient(90deg, #0057ff 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pr-hero-sub {
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--pr-gray-500);
  margin: 0 0 36px;
  max-width: 560px;
}

.pr-hero-btns {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.pr-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 10px;
  padding: 13px 24px;
  text-decoration: none;
  transition: all .18s;
}
.pr-btn-dark {
  background: #0B0B12;
  color: #fff;
}
.pr-btn-dark:hover { background: #1a1a2e; }

.pr-btn-ghost {
  background: #fff;
  color: var(--pr-ink);
  border: 1.5px solid var(--pr-gray-300);
}
.pr-btn-ghost:hover { border-color: var(--pr-indigo); color: var(--pr-indigo); }

.pr-btn-ghost-dark {
  border-color: rgba(255,255,255,.25);
  color: var(--pr-ink);
}
.pr-btn-ghost-dark:hover { border-color: rgba(255,255,255,.5); }

.pr-play-ic {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--pr-gray-300);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--pr-ink);
  background: #fff;
}

/* â”€â”€ Hero visual â”€â”€ */
.pr-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
}

/* Platform icons section */
.pr-vis-platforms {
  position: relative;
  width: 310px;
  height: 250px;
  flex-shrink: 0;
}

.pr-orb-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.pr-pf-node {
  position: absolute;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0,0,0,.11);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: translate(-50%, -50%);
  overflow: hidden;
}
.pr-pf-lg { width: 50px; height: 50px; }
.pr-pf-md { width: 44px; height: 44px; }
.pr-pf-sm { width: 38px; height: 38px; }

.pr-pf-sparkle {
  position: absolute;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dot connectors */
.pr-dot-conn {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
  margin: 0 6px;
}
.pr-dot-conn span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--pr-indigo);
  flex-shrink: 0;
  display: block;
}
/* lâ†’r: big-to-small going right */
.pr-dot-l2r span:nth-child(1) { width: 9px; height: 9px; opacity: .9; }
.pr-dot-l2r span:nth-child(2) { opacity: .7; }
.pr-dot-l2r span:nth-child(3) { opacity: .5; }
.pr-dot-l2r span:nth-child(4) { opacity: .32; }
.pr-dot-l2r span:nth-child(5) { opacity: .18; }
/* râ†’l: small-to-big going right (hub side â†’ card) */
.pr-dot-r2l span:nth-child(1) { opacity: .18; }
.pr-dot-r2l span:nth-child(2) { opacity: .32; }
.pr-dot-r2l span:nth-child(3) { opacity: .5; }
.pr-dot-r2l span:nth-child(4) { opacity: .7; }
.pr-dot-r2l span:nth-child(5) { width: 9px; height: 9px; opacity: .9; }

/* Center hub */
.pr-hub-section {
  position: relative;
  width: 172px; height: 172px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pr-hub-halo {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(99,102,241,.14);
}
.pr-hh-3 { width: 172px; height: 172px; }
.pr-hh-2 { width: 142px; height: 142px; border-color: rgba(99,102,241,.2); }
.pr-hh-1 { width: 114px; height: 114px; border-color: rgba(99,102,241,.28); }

.pr-hub-circle {
  width: 96px; height: 96px;
  border-radius: 50%;
  background: linear-gradient(145deg, #e0e7ff, #ddd6fe, #c4b5fd);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 48px rgba(0,87,255,.2), 0 8px 32px rgba(124,58,237,.2);
  position: relative;
  z-index: 1;
}

/* Right AI Answer card */
.pr-card-section { flex-shrink: 0; }

.pr-ai-card-v2 {
  background: #fff;
  border: 1.5px solid #E4E4EE;
  border-radius: 16px;
  padding: 20px 22px;
  width: 210px;
  box-shadow: 0 8px 40px rgba(0,0,0,.09);
}

.pr-aic-head {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--pr-indigo);
  margin-bottom: 14px;
}

.pr-aic-bar {
  height: 9px;
  border-radius: 5px;
  margin-bottom: 9px;
}
.pr-aic-bar-purple { background: linear-gradient(90deg, #6366F1, #8B5CF6); width: 100%; }
.pr-aic-bar-gray   { background: #E8E8EE; width: 82%; }

.pr-aic-brand-row {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 4px;
}
.pr-aic-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--pr-indigo);
  flex-shrink: 0;
}
.pr-aic-brand-txt {
  font-size: 13px;
  font-weight: 700;
  color: var(--pr-indigo);
}

/* Labels row below visual */
.pr-vis-labels {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 940px;
  margin: 20px auto 0;
  padding-bottom: 56px;
}
.pr-vis-label-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: left;
}
.pr-vis-label-r { text-align: right; }
.pr-vis-label-item strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--pr-ink);
}
.pr-vis-label-item span {
  font-size: 13px;
  color: var(--pr-gray-500);
}

/* ============================================================
   PRICING CARDS
   ============================================================ */
.pr-plans {
  padding: 100px 0 60px;
  background: #fff;
}

.pr-plans-head {
  text-align: center;
  margin-bottom: 56px;
}
.pr-plans-head .pr-eyebrow { margin-bottom: 16px; }

.pr-h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -.02em;
  color: var(--pr-ink);
  margin: 0 0 18px;
}

.pr-h2-line {
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #0057ff, #7c3aed);
  margin: 0 auto;
}

.pr-cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: stretch;
}

.pr-card {
  background: #fff;
  border: 1.5px solid #E4E4EE;
  border-radius: 18px;
  padding: 32px 28px 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: box-shadow .2s, border-color .2s;
}
.pr-card:hover { box-shadow: 0 8px 32px rgba(0,87,255,.08); border-color: #c8d4f8; }

.pr-card-featured {
  border: 2px solid #0057ff;
  box-shadow: 0 12px 48px rgba(0,87,255,.15);
  padding-top: 44px;
}
.pr-card-featured:hover { box-shadow: 0 16px 56px rgba(0,87,255,.20); }

.pr-popular-badge {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: #0057ff;
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  padding: 6px 18px;
  border-radius: 0 0 12px 12px;
  white-space: nowrap;
}

.pr-card-icon {
  width: 54px; height: 54px;
  border-radius: 14px;
  background: #eef4ff;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.pr-card-icon-featured {
  background: #eef4ff;
}

.pr-card-title {
  font-size: 20px;
  font-weight: 800;
  color: var(--pr-ink);
  margin: 0 0 4px;
}
.pr-card-sub {
  font-size: 13px;
  color: var(--pr-gray-500);
  font-weight: 500;
  margin: 0 0 14px;
}
.pr-card-desc {
  font-size: 14px;
  line-height: 1.62;
  color: var(--pr-gray-500);
  margin: 0 0 24px;
}

.pr-feature-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
  flex: 1;
}
.pr-feature-list li {
  font-size: 13.5px;
  color: var(--pr-gray-700);
  padding-left: 26px;
  position: relative;
  line-height: 1.4;
}
.pr-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 1px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: #0057ff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='5 12 10 17 19 7'/%3E%3C/svg%3E") center/10px no-repeat;
}

.pr-card-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  font-size: 14.5px;
  font-weight: 600;
  border-radius: 10px;
  padding: 13px 20px;
  text-decoration: none;
  transition: all .18s;
  margin-top: auto;
}
.pr-cta-outline {
  border: 1.5px solid #D7D8E0;
  color: var(--pr-ink);
  background: #fff;
}
.pr-cta-outline:hover { border-color: #0057ff; color: #0057ff; }

.pr-cta-filled {
  background: #0057ff;
  color: #fff;
  border: none;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0,87,255,.35);
}
.pr-cta-filled:hover { background: #0040cc; }

.pr-plans-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
  font-size: 13px;
  color: var(--pr-gray-500);
}

/* ============================================================
   DARK SECTION
   ============================================================ */
.pr-dark {
  background: #0b0b1e;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.pr-dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 30px 30px;
}

.pr-dark-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 72px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.pr-dark-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #818cf8;
  margin-bottom: 16px;
}

.pr-dark-h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}

.pr-dark-sub {
  font-size: 15.5px;
  line-height: 1.7;
  color: rgba(255,255,255,.5);
  margin: 0;
}

/* Dark visual */
.pr-dark-visual {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pr-dark-card {
  flex: 1;
  border-radius: 20px;
  padding: 28px 26px 32px;
}
.pr-dark-card-search {
  background: #12121f;
  border: 1px solid rgba(255,255,255,.07);
}
.pr-dark-card-ai {
  background: #12121f;
  border: 1px solid rgba(99,102,241,.55);
  box-shadow: 0 0 28px rgba(99,102,241,.18);
}

.pr-dcard-title {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}
.pr-dcard-title-ai { margin-bottom: 8px; }

.pr-search-bar {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.07);
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 16px;
}
.pr-search-line {
  flex: 1;
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,.14);
}

/* Traditional search result rows */
.pr-result-rows { display: flex; flex-direction: column; gap: 18px; }
.pr-result-row   { display: flex; align-items: flex-start; gap: 12px; }

.pr-result-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #4f46e5;
  flex-shrink: 0;
  margin-top: 6px;
}

.pr-result-bars { flex: 1; display: flex; flex-direction: column; gap: 7px; }

.pr-result-bar-blue {
  height: 8px;
  border-radius: 4px;
  background: #4f46e5;
}
.pr-result-bar-gray {
  height: 7px;
  border-radius: 4px;
  background: rgba(255,255,255,.1);
}

.pr-dark-arrow { flex-shrink: 0; }

/* AI Answer card */
.pr-ai-query {
  font-size: 13px;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  margin: 0 0 18px;
}

.pr-ai-result-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  background: #4f46e5;
  border-radius: 10px;
  padding: 13px 16px;
  margin-bottom: 14px;
}
.pr-ai-num-top {
  font-size: 14.5px;
  font-weight: 700;
  color: #fff;
}
.pr-ai-check {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: rgba(255,255,255,.28);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pr-ai-dim-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 2px;
  opacity: .38;
}
.pr-ai-dim-num {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.8);
  flex-shrink: 0;
}
.pr-ai-dim-bar {
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,.3);
}

/* ============================================================
   IMPACT
   ============================================================ */
.pr-impact {
  padding: 90px 0;
  background: #fff;
}

.pr-impact-grid {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  align-items: center;
}

.pr-impact-eyebrow {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #0057ff;
  margin-bottom: 16px;
}

.pr-impact-h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  color: var(--pr-ink);
  margin: 0;
}

.pr-underline {
  position: relative;
  white-space: nowrap;
}
.pr-underline::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, #4f46e5, #7c3aed);
}

/* Stats: horizontal row with dividers */
.pr-impact-stats {
  display: flex;
  align-items: stretch;
  gap: 0;
}

.pr-stat {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 28px;
}

.pr-stat-divider {
  width: 1px;
  background: #E8E8EE;
  flex-shrink: 0;
  align-self: stretch;
}

.pr-stat-icon {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #eeebff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 18px;
}
.pr-stat-title {
  font-size: 15.5px;
  font-weight: 700;
  color: var(--pr-ink);
  margin: 0 0 8px;
}
.pr-stat-desc {
  font-size: 13.5px;
  line-height: 1.6;
  color: var(--pr-gray-500);
  margin: 0;
}

/* ============================================================
   FAQ
   ============================================================ */
.pr-faq {
  padding: 100px 0;
  background: var(--pr-gray-100);
}

/* Split layout: left heading col + right accordion col */
.pr-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}

.pr-faq-left {
  position: sticky;
  top: 100px;
}

.pr-faq-h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -.02em;
  color: var(--pr-ink);
  margin: 0 0 16px;
}

.pr-faq-left-sub {
  font-size: 14.5px;
  line-height: 1.65;
  color: var(--pr-gray-500);
  margin: 0 0 32px;
  max-width: 300px;
}

.pr-faq-btn {
  margin-top: 0;
}

/* Accordion column */
.pr-faq-right {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pr-faq-item {
  border-bottom: 1.5px solid var(--pr-gray-300);
  background: transparent;
}
.pr-faq-item:first-child { border-top: 1.5px solid var(--pr-gray-300); }

.pr-faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  font-size: 15px;
  font-weight: 600;
  color: var(--pr-ink);
  cursor: pointer;
  user-select: none;
}
.pr-faq-q:hover { color: var(--pr-indigo); }

.pr-faq-toggle {
  width: 28px; height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--pr-gray-300);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 400;
  color: var(--pr-gray-500);
  flex-shrink: 0;
  transition: all .2s;
  line-height: 1;
  background: #fff;
}
.pr-faq-item.open .pr-faq-toggle {
  background: var(--pr-indigo);
  border-color: var(--pr-indigo);
  color: #fff;
  transform: rotate(45deg);
}
.pr-faq-item.open .pr-faq-q { color: var(--pr-indigo); }

.pr-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  font-size: 14px;
  line-height: 1.7;
  color: var(--pr-gray-500);
  padding: 0;
}
.pr-faq-item.open .pr-faq-a {
  max-height: 300px;
  padding: 0 0 22px;
}

/* ============================================================
   BOTTOM CTA
   ============================================================ */
.pr-cta {
  background: linear-gradient(150deg, #f5f3ff 0%, #ede9fe 55%, #f0eeff 100%);
  padding: 100px 0;
  overflow: hidden;
}

.pr-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.pr-cta-art {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}

/* radial purple glow behind orb */
.pr-cta-glow {
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(99,102,241,.22) 0%, rgba(139,92,246,.1) 55%, transparent 75%);
  filter: blur(18px);
}

/* 3-D orbital ring SVG */
.pr-cta-rings {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* central orb */
.pr-cta-logo-wrap {
  width: 130px; height: 130px;
  border-radius: 50%;
  background: linear-gradient(145deg, #f8f6ff, #ede9fe 60%, #ddd6fe);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 12px rgba(99,102,241,.08),
              0 0 0 24px rgba(99,102,241,.05),
              0 16px 48px rgba(99,102,241,.28);
  position: relative;
  z-index: 2;
}

/* sparkle stars */
.pr-spark {
  position: absolute;
  color: #6366f1;
  pointer-events: none;
  z-index: 3;
  animation: pr-sparkle 3s ease-in-out infinite alternate;
}
.pr-spark-1 { font-size: 18px; top: 14%; left: 70%; animation-delay: 0s;    opacity: .9; }
.pr-spark-2 { font-size: 12px; top:  8%; left: 26%; animation-delay: .6s;   opacity: .7; }
.pr-spark-3 { font-size: 14px; top: 74%; left: 18%; animation-delay: 1.1s;  opacity: .75; }
.pr-spark-4 { font-size: 10px; top: 62%; left: 78%; animation-delay: 1.7s;  opacity: .6; }
@keyframes pr-sparkle {
  from { transform: scale(1) rotate(0deg); opacity: .9; }
  to   { transform: scale(1.2) rotate(20deg); opacity: .5; }
}

.pr-cta-copy { max-width: 460px; }

.pr-cta-copy .pr-eyebrow-blue {
  display: inline-block;
  margin-bottom: 16px;
}

.pr-cta-h2 {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
  color: var(--pr-ink);
  margin: 0 0 16px;
}

.pr-cta-sub {
  font-size: 16px;
  line-height: 1.6;
  color: var(--pr-gray-500);
  margin: 0 0 32px;
}

.pr-cta-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.pr-cta-trust {
  display: flex;
  align-items: center;
  gap: 12px;
}

.pr-avatars {
  display: flex;
}
.pr-avatars img {
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2px solid #fff;
  margin-left: -8px;
  object-fit: cover;
}
.pr-avatars img:first-child { margin-left: 0; }

.pr-trust-text {
  font-size: 13px;
  color: var(--pr-gray-500);
  margin: 0;
}
.pr-trust-brand {
  font-weight: 700;
  background: linear-gradient(90deg, #6366f1, #8b5cf6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1040px) {
  .pr-dark-grid,
  .pr-impact-grid,
  .pr-cta-inner {
    grid-template-columns: 1fr;
    gap: 52px;
  }
  .pr-cta-art { height: 240px; }
  .pr-cta-logo-wrap { width: 110px; height: 110px; }
  .pr-faq-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .pr-faq-left { position: static; }
}

@media (max-width: 860px) {
  .pr-cards-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .pr-hero-visual {
    overflow-x: auto;
    justify-content: flex-start;
    padding: 0 18px;
    gap: 4px;
  }
  .pr-vis-platforms { width: 240px; height: 200px; }
  .pr-hub-section { width: 140px; height: 140px; }
  .pr-hh-3 { width: 140px; height: 140px; }
  .pr-hh-2 { width: 116px; height: 116px; }
  .pr-hh-1 { width: 94px; height: 94px; }
  .pr-hub-circle { width: 78px; height: 78px; }
  .pr-ai-card-v2 { width: 180px; }
  .pr-vis-labels { padding: 16px 18px 40px; }
  .pr-dark-visual {
    flex-direction: column;
    gap: 16px;
  }
}

@media (max-width: 600px) {
  .pr-container { padding: 0 18px; }
  .pr-hero { padding: 70px 0 0; }
  .pr-plans, .pr-dark, .pr-impact, .pr-faq, .pr-cta { padding: 70px 0; }
  .pr-faq-left-sub { max-width: 100%; }
  .pr-h1 { font-size: 32px; }
  .pr-h2 { font-size: 26px; }
  .pr-cta-h2 { font-size: 30px; }
  .pr-cta-btns { flex-direction: column; }
  .pr-cta-inner { gap: 40px; }
}


/* ── PRICING TOGGLE ── */
.pr-toggle-wrap{
  display:flex;align-items:center;justify-content:center;gap:14px;
  margin-bottom:40px;
}
.pr-toggle-label{font-size:15px;font-weight:600;color:#3A3A48;}
.pr-toggle{
  width:52px;height:28px;border-radius:999px;
  background:#E8E8EE;border:none;cursor:pointer;
  position:relative;transition:background .25s;
  flex-shrink:0;
}
.pr-toggle.active{background:#0057ff;}
.pr-toggle-thumb{
  position:absolute;top:3px;left:3px;
  width:22px;height:22px;border-radius:50%;background:#fff;
  box-shadow:0 1px 4px rgba(0,0,0,.18);
  transition:transform .25s;
}
.pr-toggle.active .pr-toggle-thumb{transform:translateX(24px);}
.pr-save-badge{
  background:#dcfce7;color:#16a34a;
  font-size:11px;font-weight:700;
  padding:2px 8px;border-radius:999px;
  margin-left:4px;
}

/* ── PRICE BLOCK ── */
.pr-price-block{
  margin:20px 0 16px;
  padding:18px 0 16px;
  border-top:1px solid #EEEEF2;
  border-bottom:1px solid #EEEEF2;
}
.pr-price{
  font-size:30px;font-weight:800;letter-spacing:-.03em;color:#0B0B12;
  line-height:1.1;margin-bottom:4px;
}
.pr-price-was{
  text-decoration:line-through;color:#9396A6;
  font-size:20px;font-weight:600;margin-right:8px;
}
.pr-price-type{font-size:12px;color:#6B6B7B;font-weight:500;margin-bottom:8px;}
.pr-price-note{
  font-size:11.5px;color:#9396A6;line-height:1.55;
  font-style:italic;
}
.pr-card-featured .pr-price-block{
  border-color:rgba(0,87,255,.2);
}
.pr-card-featured .pr-price{color:#0057ff;}

/* ── COMPARISON TABLE (P1#7) ── */
.pr-compare{
  padding:72px 0 80px;
}
.pr-compare-inner{
  max-width:1100px;margin:0 auto;padding:0 40px;
}
.pr-compare-title{
  font-size:26px;font-weight:800;letter-spacing:-.02em;
  color:#0B0B12;text-align:center;margin:0 0 8px;
}
.pr-compare-sub{
  font-size:15px;color:#6B6B7B;text-align:center;margin:0 0 40px;
}
.pr-table-wrap{overflow-x:auto;}
.pr-table{
  width:100%;border-collapse:collapse;
  font-size:14px;
}
.pr-table th{
  padding:14px 20px;text-align:left;
  font-size:12px;font-weight:700;text-transform:uppercase;
  letter-spacing:.08em;color:#6B6B7B;
  background:#F8F9FC;
  border-bottom:2px solid #EEEEF2;
}
.pr-table th.col-growth{
  background:linear-gradient(135deg,#0057ff,#7c3aed);
  color:#fff;border-radius:0;
  position:relative;
}
.pr-table th.col-growth::before{
  content:'MOST POPULAR';
  display:block;font-size:10px;letter-spacing:.1em;
  opacity:.75;margin-bottom:2px;
}
.pr-table td{
  padding:14px 20px;
  border-bottom:1px solid #EEEEF2;
  color:#3A3A48;vertical-align:middle;
}
.pr-table td:first-child{font-weight:600;color:#0B0B12;}
.pr-table tr:last-child td{border-bottom:none;}
.pr-table tr:hover td{background:#FAFAFA;}
.pr-table td.col-growth{
  background:linear-gradient(135deg,rgba(0,87,255,.04),rgba(124,58,237,.04));
  font-weight:600;
}
.pr-table .check{color:#16a34a;font-size:18px;font-weight:700;}
.pr-table .cross{color:#9396A6;font-size:16px;}
@media(max-width:860px){
  .pr-compare-inner{padding:0 22px;}
  .pr-table{font-size:13px;}
  .pr-table th,.pr-table td{padding:10px 14px;}
}
@media(max-width:600px){
  .pr-compare-title{font-size:22px;}
  .pr-table{font-size:12px;}
  .pr-table th,.pr-table td{padding:8px 10px;}
}


/* Impact cards */
.pr-impact-cards{ gap: 20px !important; }
.pr-stat-card{
  background: #fff;
  border: 1px solid #ECEAF5;
  border-radius: 16px;
  padding: 28px 24px !important;
  text-align: left !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: box-shadow .2s ease, transform .2s ease;
}
.pr-stat-card:hover{
  box-shadow: 0 6px 28px rgba(0,87,255,.09);
  transform: translateY(-2px);
}
.pr-stat-card .pr-stat-icon{
  width: 48px; height: 48px;
  background: #EEF3FF;
  border-radius: 12px;
  margin-bottom: 18px !important;
}
.pr-stat-card .pr-stat-title{ text-align: left; }
.pr-stat-card .pr-stat-desc{ text-align: left; }

/* Why LLMBuddy section */
.pr-why-section{ padding: 72px 0; background: #fff; }
.pr-why-head{ text-align: center; margin-bottom: 48px; }
.pr-why-title{ font-size: clamp(24px,3vw,36px); font-weight: 800; letter-spacing: -.02em; color: #0E0F1A; margin: 12px 0 0; line-height: 1.25; }
.pr-why-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.pr-why-card{
  background: #F6F5FB;
  border: 1px solid #ECEAF5;
  border-radius: 16px;
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  transition: box-shadow .2s, transform .2s;
}
.pr-why-card:hover{ box-shadow: 0 6px 28px rgba(0,87,255,.09); transform: translateY(-2px); }
.pr-why-card--accent{
  background: linear-gradient(135deg, #06061A, #0d0d2b);
  border-color: rgba(255,255,255,.08);
}
.pr-why-card--accent h3{ color: #fff; }
.pr-why-card--accent p{ color: rgba(255,255,255,.6); }
.pr-why-ic{
  width: 44px; height: 44px; border-radius: 11px;
  background: #EEF3FF;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pr-why-ic--white{ background: rgba(255,255,255,.1); }
.pr-why-ic--white svg{ stroke: #80b3ff; }
.pr-why-card h3{ font-size: 15px; font-weight: 700; color: #0E0F1A; margin: 0; line-height: 1.35; }
.pr-why-card p{ font-size: 13.5px; color: #6B6F8A; line-height: 1.7; margin: 0; }
.pr-why-badge{
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 11px; font-weight: 700; color: #22c55e;
  background: rgba(34,197,94,.12); border-radius: 20px;
  padding: 4px 12px; margin-top: 4px; width: fit-content;
}
@media(max-width: 1100px){ .pr-why-grid{ grid-template-columns: 1fr 1fr; } }
@media(max-width: 600px){ .pr-why-grid{ grid-template-columns: 1fr; } .pr-why-section{ padding: 48px 0; } }

/* Enterprise talk button */
.pr-talk-btn{
  display: inline-flex; align-items: center; gap: 8px;
  background: linear-gradient(135deg, #0057ff, #7c3aed);
  color: #fff; font-size: 14.5px; font-weight: 700;
  padding: 13px 22px; border-radius: 11px;
  text-decoration: none; margin-bottom: 10px;
  transition: opacity .15s ease;
  white-space: nowrap;
}
.pr-talk-btn:hover{ opacity: .88; }
