/* ============================================================================
   noem.ai — Pricing page  (page-pricing.php)
   Ported from the reference design (noemLandingPages/pricing.html) and scoped
   under .pricing-page. Palette/typography pinned to the brand system (tokens.css):
   violet/purple accents on the dark canvas, Inter + JetBrains Mono.
   No build step — edit in place.
   ============================================================================ */

.pricing-page {
  /* Local component vars, mapped to the brand palette so the ported reference
     markup works unchanged while staying on-brand. */
  --pp-bg:        #07080c;
  --pp-bg-2:      #0b0d13;
  --pp-surface:   #11141d;
  --pp-surface-2: #161a26;
  --pp-line:      rgba(255,255,255,0.08);
  --pp-line-strong: rgba(255,255,255,0.16);
  --pp-fg:        #eef0f6;
  --pp-fg-mute:   rgba(242,244,250,0.66);
  --pp-fg-dim:    rgba(242,244,250,0.42);
  --pp-fg-faint:  rgba(242,244,250,0.22);
  --pp-accent:    #8C47F0;   /* brand violet (mid) */
  --pp-accent-2:  #A45CE0;   /* brand violet (hot) */
  --pp-accent-soft: rgba(140,71,240,0.18);
  --pp-accent-line: rgba(140,71,240,0.55);
  --pp-success:   #46E08A;   /* tokens --success */
  --pp-radius:    14px;
  --pp-radius-lg: 20px;
  /* Brand gradient (indigo -> violet -> magenta) — matches the rest of the site */
  --pp-grad: linear-gradient(120deg, #4D61FE 0%, #A45CE0 55%, #C160E2 100%);
  --pp-display: "Inter", "Manrope", ui-sans-serif, system-ui, sans-serif;
  --pp-sans:    "Inter", "Manrope", ui-sans-serif, system-ui, sans-serif;
  --pp-mono:    "JetBrains Mono", ui-monospace, monospace;

  position: relative;
  color: var(--pp-fg);
  font-family: var(--pp-sans);
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: -0.005em;
  -webkit-tap-highlight-color: transparent;
}

.pricing-page * { box-sizing: border-box; }
.pricing-page a { color: inherit; text-decoration: none; }
.pricing-page button { font-family: inherit; cursor: pointer; }

.pricing-page .wrap { max-width: 1180px; margin: 0 auto; padding: 0 32px; position: relative; z-index: 1; }

/* Ambient glow layers */
.pricing-page .ambient { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }
.pricing-page .ambient::before, .pricing-page .ambient::after {
  content: ""; position: absolute; border-radius: 50%;
  filter: blur(140px); opacity: 0.55;
}
.pricing-page .ambient::before {
  width: 820px; height: 820px; left: 50%; top: -260px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(140,71,240,0.32), rgba(140,71,240,0) 60%);
}
.pricing-page .ambient::after {
  width: 520px; height: 520px; left: 8%; top: 320px;
  background: radial-gradient(circle, rgba(140,71,240,0.08), transparent 60%);
}

/* BUTTONS */
.pricing-page .btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 11px 18px;
  border-radius: 10px; font-weight: 600; font-size: 14.5px; border: 1px solid transparent;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, box-shadow .2s ease;
  white-space: nowrap; line-height: 1; color: var(--pp-fg);
}
.pricing-page .btn:active { transform: translateY(1px); }
.pricing-page .btn-primary {
  background: var(--pp-grad); color: #fff;
  box-shadow: 0 6px 22px rgba(140,71,240,0.35), inset 0 1px 0 rgba(255,255,255,0.18);
}
.pricing-page .btn-primary:hover { box-shadow: 0 8px 26px rgba(140,71,240,0.45); transform: translateY(-1px); }
.pricing-page .btn-ghost { background: transparent; color: var(--pp-fg); border-color: var(--pp-line-strong); }
.pricing-page .btn-ghost:hover { border-color: rgba(255,255,255,0.32); background: rgba(255,255,255,0.02); }
.pricing-page .btn-quiet { background: rgba(255,255,255,0.04); color: var(--pp-fg); border: 1px solid var(--pp-line); }
.pricing-page .btn-quiet:hover { background: rgba(255,255,255,0.07); }
.pricing-page .btn-lg { padding: 14px 22px; font-size: 15px; }

/* HERO */
.pricing-page header.hero { position: relative; padding: 56px 0 28px; text-align: center; }
.pricing-page .eyebrow {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 7px 15px; border-radius: 999px;
  background: var(--pp-accent-soft); color: var(--pp-accent-2);
  font-family: var(--pp-mono);
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  border: 1px solid var(--pp-accent-line);
  margin-bottom: 26px;
  box-shadow: 0 0 0 1px rgba(140,71,240,0.08) inset, 0 6px 20px -8px rgba(140,71,240,0.45);
}
.pricing-page .eyebrow .dot { width: 6px; height: 6px; background: var(--pp-accent-2); border-radius: 50%; box-shadow: 0 0 8px var(--pp-accent); animation: pp-dot-pulse 2.4s ease-in-out infinite; }
.pricing-page h1.hero-title {
  margin: 0 auto;
  font-size: clamp(40px, 5.8vw, 60px);
  line-height: 1.04; letter-spacing: -0.035em; font-weight: 700;
  max-width: 880px; color: var(--pp-fg);
}
.pricing-page h1.hero-title .accent {
  background: var(--pp-grad); background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: pp-sheen 7s ease-in-out infinite;
}
.pricing-page .hero-sub {
  margin: 24px auto 0; max-width: 600px;
  color: var(--pp-fg-mute); font-size: 18px; line-height: 1.55;
}
.pricing-page .hero-sub strong { color: var(--pp-fg); font-weight: 600; }

.pricing-page .hero-roi-nudge {
  margin-top: 12px;
  font-size: 14px;
  color: rgba(255,255,255,.45);
}
.pricing-page .hero-roi-nudge a {
  color: rgba(165,175,246,.8);
  text-decoration: none;
  transition: color 0.15s;
}
.pricing-page .hero-roi-nudge a:hover { color: #A5AFF6; }

/* Hero entrance — pure-CSS staggered rise (no scroll dependency = no flash) */
@keyframes pp-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes pp-sheen { 0%, 100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
@keyframes pp-dot-pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.82); } }
.pricing-page header.hero .eyebrow,
.pricing-page header.hero .hero-title,
.pricing-page header.hero .hero-sub {
  opacity: 0; animation: pp-rise 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) forwards;
}
.pricing-page header.hero .eyebrow { animation-delay: 0.05s; }
.pricing-page header.hero .hero-title { animation-delay: 0.16s; }
.pricing-page header.hero .hero-sub { animation-delay: 0.30s; }
@media (prefers-reduced-motion: reduce) {
  .pricing-page header.hero .eyebrow,
  .pricing-page header.hero .hero-title,
  .pricing-page header.hero .hero-sub { opacity: 1; animation: none; }
  .pricing-page h1.hero-title .accent, .pricing-page .eyebrow .dot { animation: none; }
}

/* === PLAN CAROUSEL === */
.pricing-page .carousel-section { padding: 56px 0 100px; position: relative; }
.pricing-page .carousel-stage {
  position: relative; height: 660px;
  margin: 0 auto; max-width: 1180px;
  overflow: visible;
}
.pricing-page .carousel-track { position: absolute; inset: 0; top: 24px; perspective: 1400px; }
.pricing-page .plan-card {
  position: absolute; left: 50%; top: 0;
  width: 340px; height: 600px;
  margin-left: -170px;
  border-radius: 22px;
  background: var(--pp-surface);
  border: 1px solid var(--pp-line);
  display: flex; flex-direction: column;
  transition: transform .55s cubic-bezier(.22,.61,.36,1),
              opacity .35s ease, filter .35s ease,
              box-shadow .4s ease, border-color .4s ease;
  will-change: transform, opacity, filter;
  cursor: pointer;
}
.pricing-page .plan-card.active {
  background: linear-gradient(180deg, rgba(140,71,240,0.10), rgba(140,71,240,0.02) 30%, var(--pp-surface) 100%);
  border: 2px solid var(--pp-accent);
  box-shadow: 0 30px 80px rgba(140,71,240,0.25), 0 0 0 1px rgba(140,71,240,0.05) inset;
  cursor: default;
}
/* Side (dimmed) cards: a clear premium "click me" cue on hover.
   border-color/box-shadow aren't written inline by the carousel JS, so these win. */
.pricing-page .plan-card:not(.active):hover {
  border-color: var(--pp-accent-line);
  box-shadow: 0 24px 60px -24px rgba(140,71,240,0.45);
}
.pricing-page .plan-card .popular-badge {
  position: absolute; top: 0; left: 50%;
  transform: translate(-50%, -50%);
  background: var(--pp-grad); color: #fff;
  padding: 7px 16px; border-radius: 999px;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  white-space: nowrap; opacity: 0;
  box-shadow: 0 10px 28px -4px rgba(140,71,240,0.6), inset 0 1px 0 rgba(255,255,255,0.25);
  transition: opacity .3s ease .15s, transform .3s ease .15s;
  z-index: 3;
}
.pricing-page .plan-card.active .popular-badge.show { opacity: 1; transform: translate(-50%, -50%); }

.pricing-page .plan-head { padding: 28px 28px 20px; border-bottom: 1px solid var(--pp-line); }
.pricing-page .plan-name-row { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin-bottom: 4px; }
.pricing-page .plan-name { font-size: 26px; font-weight: 700; letter-spacing: -0.02em; color: var(--pp-fg); }
.pricing-page .plan-segment {
  font-family: var(--pp-mono); font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--pp-fg-mute); padding: 4px 8px;
  background: rgba(255,255,255,0.04); border-radius: 999px;
  border: 1px solid var(--pp-line); white-space: nowrap;
}
.pricing-page .plan-card.active .plan-segment { color: var(--pp-accent-2); background: var(--pp-accent-soft); border-color: var(--pp-accent-line); }
.pricing-page .plan-tokens { color: var(--pp-fg-mute); font-size: 13.5px; font-family: var(--pp-mono); }

.pricing-page .plan-price { padding: 22px 28px 20px; border-bottom: 1px solid var(--pp-line); display: flex; flex-direction: column; }
.pricing-page .price-row { display: flex; align-items: flex-start; gap: 2px; flex-wrap: nowrap; }
.pricing-page .price-row > * { flex-shrink: 0; }
.pricing-page .price-strike { color: var(--pp-fg-faint); text-decoration: line-through; font-size: 17px; font-weight: 500; margin-right: 6px; font-family: var(--pp-sans); line-height: 1; align-self: flex-start; }
.pricing-page .price-currency { color: var(--pp-fg-mute); font-size: 22px; font-weight: 600; line-height: 1; align-self: flex-start; }
.pricing-page .price-amount { font-size: 52px; font-weight: 700; letter-spacing: -0.04em; line-height: 1; color: var(--pp-fg); }
.pricing-page .price-cents { font-size: 22px; font-weight: 700; color: var(--pp-fg-mute); line-height: 1; letter-spacing: -0.02em; align-self: flex-start; }
.pricing-page .price-period { color: var(--pp-fg-mute); font-size: 14px; font-weight: 500; margin-left: 6px; white-space: nowrap; line-height: 1; align-self: flex-start; }
.pricing-page .price-meta { color: var(--pp-accent-2); font-size: 12.5px; font-weight: 600; margin-top: 8px; letter-spacing: 0.01em; }
.pricing-page .price-meta .freebie { display: inline-flex; gap: 6px; align-items: center; }
.pricing-page .price-meta .freebie::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--pp-success); box-shadow: 0 0 8px var(--pp-success); }

.pricing-page .plan-features-wrap {
  flex: 1; padding: 18px 8px 18px 28px;
  overflow-y: auto; overflow-x: hidden;
  scrollbar-width: thin; scrollbar-color: rgba(255,255,255,0.1) transparent;
  min-height: 0;
}
.pricing-page .plan-features-wrap::-webkit-scrollbar { width: 6px; }
.pricing-page .plan-features-wrap::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.06); border-radius: 999px; }
.pricing-page .plan-features-wrap::-webkit-scrollbar-track { background: transparent; }
.pricing-page .plan-features { list-style: none; padding: 0 18px 0 0; margin: 0; display: flex; flex-direction: column; gap: 11px; }
.pricing-page .plan-features li { display: flex; gap: 9px; align-items: flex-start; color: var(--pp-fg); font-size: 13.8px; line-height: 1.4; }
.pricing-page .plan-features li.everything-li { color: var(--pp-accent-2); font-weight: 700; font-size: 13.5px; letter-spacing: -0.005em; padding-bottom: 6px; align-items: center; }
.pricing-page .plan-features li.everything-li svg { flex-shrink: 0; }
.pricing-page .plan-features li .check {
  flex-shrink: 0; width: 16px; height: 16px; margin-top: 1px;
  border-radius: 50%; display: grid; place-items: center;
  background: rgba(140,71,240,0.14); color: var(--pp-accent-2);
}
.pricing-page .plan-card.active .plan-features li .check { background: var(--pp-accent); color: #fff; }
.pricing-page .plan-features li .check svg { width: 10px; height: 10px; }

.pricing-page .plan-foot { padding: 18px 24px 24px; border-top: 1px solid var(--pp-line); }
.pricing-page .plan-cta { width: 100%; justify-content: center; }
.pricing-page .plan-foot-meta { text-align: center; color: var(--pp-fg-dim); font-size: 11.5px; margin-top: 10px; }
.pricing-page .plan-foot-meta strong { color: var(--pp-success); }

/* SLIDER */
.pricing-page .slider-zone { max-width: 880px; margin: 0 auto; position: relative; z-index: 2; padding-top: 20px; }
.pricing-page .slider-zone.slider-zone-top { padding-top: 0; margin-bottom: 56px; }
.pricing-page .slider-headline { text-align: center; color: var(--pp-fg-mute); font-size: 14px; margin-bottom: 16px; }
.pricing-page .slider-headline .num { color: var(--pp-fg); font-family: var(--pp-mono); font-weight: 600; font-size: 15px; }
.pricing-page .slider-rail { position: relative; height: 72px; margin: 0 40px; }
.pricing-page .slider-rail-track { position: absolute; top: 18px; left: 0; right: 0; height: 6px; background: rgba(255,255,255,0.06); border-radius: 999px; }
.pricing-page .slider-rail-fill { position: absolute; top: 18px; left: 0; height: 6px; background: linear-gradient(90deg, var(--pp-accent), var(--pp-accent-2)); border-radius: 999px; z-index: 1; }
.pricing-page .slider-rail-dot { position: absolute; top: 16px; width: 10px; height: 10px; border-radius: 50%; background: var(--pp-bg); border: 2px solid rgba(255,255,255,0.18); margin-left: -5px; transition: border-color .25s ease, background .25s ease; z-index: 2; }
.pricing-page .slider-rail-dot.passed { border-color: var(--pp-accent); }
.pricing-page .slider-rail-dot.active { background: #fff; border-color: #fff; }
.pricing-page .slider-rail-thumb {
  position: absolute; top: 6px; width: 30px; height: 30px; margin-left: -15px;
  background: #fff; border-radius: 50%;
  box-shadow: 0 0 0 6px var(--pp-bg), 0 0 0 8px var(--pp-accent), 0 8px 28px rgba(140,71,240,0.6);
  cursor: grab; z-index: 4; transition: box-shadow .2s ease;
}
.pricing-page .slider-rail-thumb:active { cursor: grabbing; box-shadow: 0 0 0 6px var(--pp-bg), 0 0 0 8px var(--pp-accent-2), 0 10px 36px rgba(140,71,240,0.75); }
.pricing-page .slider-rail-thumb::after { content: ""; position: absolute; inset: 9px; border-radius: 50%; background: var(--pp-accent); }
.pricing-page .slider-rail-label {
  position: absolute; top: 42px; background: transparent; border: 0;
  color: var(--pp-fg-dim); font-family: var(--pp-mono);
  font-size: 12px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase;
  white-space: nowrap; padding: 4px 6px; cursor: pointer;
  transition: color .2s ease; z-index: 3; transform: translateX(-50%);
}
.pricing-page .slider-rail-label:hover { color: var(--pp-fg-mute); }
.pricing-page .slider-rail-label.active { color: var(--pp-accent-2); }
.pricing-page .slider-input { position: absolute; left: -20px; right: -20px; top: 0; height: 42px; width: calc(100% + 40px); opacity: 0; cursor: grab; z-index: 5; margin: 0; }

/* Trial reminder rail — glass pill */
.pricing-page .trial-rail {
  margin: 44px auto 0; max-width: 760px;
  display: flex; align-items: center; justify-content: center; gap: 28px;
  padding: 15px 26px;
  background: rgba(17,20,29,0.55);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid var(--pp-line-strong); border-radius: 999px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.05) inset, 0 20px 48px -28px rgba(0,0,0,0.8);
  color: var(--pp-fg-mute); font-size: 13.5px; flex-wrap: wrap;
}
.pricing-page .trial-rail .item { display: inline-flex; align-items: center; gap: 8px; }
.pricing-page .trial-rail .item svg { color: var(--pp-success); }
.pricing-page .trial-rail .item strong { color: var(--pp-fg); font-weight: 600; }
.pricing-page .trial-rail .sep { width: 4px; height: 4px; border-radius: 50%; background: var(--pp-fg-faint); }

/* SECTION */
.pricing-page section { padding: 88px 0; position: relative; }
.pricing-page section.tight { padding: 48px 0; }
.pricing-page .section-head { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 36px; }
.pricing-page .section-head h2 { font-size: clamp(28px, 3.2vw, 40px); line-height: 1.08; letter-spacing: -0.03em; font-weight: 700; margin: 0; max-width: 620px; color: var(--pp-fg); }
.pricing-page .section-head p { color: var(--pp-fg-mute); margin: 0; max-width: 460px; font-size: 15.5px; }
.pricing-page .section-eyebrow { color: var(--pp-accent-2); font-family: var(--pp-mono); font-size: 12px; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 14px; }

/* COMPARISON TABLE — class renamed to .pp-compare to dodge the global reskin */
.pricing-page .compare-wrap { border: 1px solid var(--pp-line); border-radius: var(--pp-radius-lg); overflow: hidden; }
.pricing-page table.pp-compare { width: 100%; border-collapse: collapse; font-size: 15px; background: transparent; }
.pricing-page table.pp-compare th, .pricing-page table.pp-compare td { padding: 18px 24px; text-align: left; border-bottom: 1px solid var(--pp-line); color: var(--pp-fg) !important; }
.pricing-page table.pp-compare thead th { background: rgba(255,255,255,0.02) !important; font-size: 12px; font-family: var(--pp-mono); letter-spacing: 0.1em; text-transform: uppercase; color: var(--pp-fg-mute) !important; font-weight: 500; padding-top: 16px; padding-bottom: 16px; }
.pricing-page table.pp-compare tbody tr:last-child td { border-bottom: 0; }
.pricing-page table.pp-compare th.col-noem, .pricing-page table.pp-compare td.col-noem {
  background: var(--pp-surface-2) !important;
  border-left: 1px solid var(--pp-accent-line); border-right: 1px solid var(--pp-accent-line);
  color: var(--pp-fg) !important; position: relative;
}
.pricing-page table.pp-compare thead th.col-noem { color: var(--pp-accent-2) !important; }
.pricing-page table.pp-compare tbody tr:first-child td.col-noem { border-top: 1px solid var(--pp-accent-line); }
.pricing-page table.pp-compare tbody tr:last-child td.col-noem { border-bottom: 1px solid var(--pp-accent-line); }
.pricing-page table.pp-compare td .v { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(70,224,138,0.14); color: var(--pp-success); }
.pricing-page table.pp-compare td.col-noem .v { background: rgba(140,71,240,0.18); color: var(--pp-accent-2); }
.pricing-page table.pp-compare td .x { display: inline-flex; align-items: center; justify-content: center; width: 22px; height: 22px; color: var(--pp-fg-faint) !important; font-size: 18px; }
.pricing-page table.pp-compare td.feat { color: var(--pp-fg-mute) !important; font-weight: 500; }
.pricing-page table.pp-compare .anchor { font-weight: 700; }
.pricing-page table.pp-compare .price-cell.big { font-weight: 700; }
.pricing-page table.pp-compare td.col-others { color: var(--pp-fg-mute) !important; }
.pricing-page table.pp-compare .num-accent { font-weight: 700; color: var(--pp-accent-2) !important; }
/* Premium: recommended-column header glow + row hover highlight */
.pricing-page table.pp-compare thead th.col-noem {
  background: linear-gradient(180deg, rgba(140,71,240,0.18), rgba(140,71,240,0.04)) !important;
}
.pricing-page table.pp-compare tbody tr { transition: background-color .2s ease; }
.pricing-page table.pp-compare tbody tr:hover td { background-color: rgba(255,255,255,0.022); }
.pricing-page table.pp-compare tbody tr:hover td.col-noem { background: rgba(140,71,240,0.12) !important; }

/* GUARANTEE */
.pricing-page .guarantee {
  background:
    radial-gradient(130% 150% at 0% 50%, rgba(140,71,240,0.14), transparent 52%),
    var(--pp-surface-2);
  border: 1px solid var(--pp-accent-line);
  border-radius: var(--pp-radius-lg);
  padding: 44px 48px;
  display: grid; grid-template-columns: auto 1fr auto; gap: 36px; align-items: center;
  box-shadow: 0 1px 0 rgba(255,255,255,0.04) inset, 0 40px 100px -50px rgba(140,71,240,0.5);
}
.pricing-page .shield {
  width: 66px; height: 66px; border-radius: 18px;
  background: var(--pp-grad); color: #fff;
  display: grid; place-items: center;
  border: 0;
  box-shadow: 0 10px 30px -8px rgba(140,71,240,0.65), inset 0 1px 0 rgba(255,255,255,0.25);
}
.pricing-page .guarantee h3 { margin: 0 0 6px; font-size: 22px; letter-spacing: -0.02em; font-weight: 700; color: var(--pp-fg); }
.pricing-page .guarantee p { margin: 0; color: var(--pp-fg-mute); font-size: 15px; max-width: 640px; }
.pricing-page .guarantee p strong { color: var(--pp-fg); }

/* DONE FOR YOU */
.pricing-page .dfy {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 0;
  border-radius: var(--pp-radius-lg); overflow: hidden; border: 1px solid var(--pp-accent-line);
  background: linear-gradient(135deg, var(--pp-surface-2) 0%, var(--pp-bg) 100%);
  position: relative;
}
.pricing-page .dfy-content { padding: 56px 52px; display: flex; flex-direction: column; justify-content: center; }
.pricing-page .dfy h3 { margin: 0 0 16px; font-size: clamp(28px, 3vw, 36px); line-height: 1.05; letter-spacing: -0.03em; font-weight: 700; color: var(--pp-fg); }
.pricing-page .dfy h3 .accent { color: var(--pp-accent-2); }
.pricing-page .dfy p { color: var(--pp-fg-mute); font-size: 16px; margin: 0 0 28px; max-width: 460px; }
.pricing-page .dfy-bullets { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 10px; color: var(--pp-fg); font-size: 14.5px; }
.pricing-page .dfy-bullets li { display: flex; gap: 10px; align-items: center; }
.pricing-page .dfy-bullets li::before { content: ""; width: 5px; height: 5px; border-radius: 50%; background: var(--pp-accent); flex-shrink: 0; }
/* Emphasized guarantee bullet — folds the old guarantee band into the offer */
.pricing-page .dfy-bullets li.dfy-guarantee {
  margin-top: 8px; padding: 13px 15px; gap: 11px;
  align-items: flex-start;
  border-radius: 12px;
  background: rgba(140,71,240,0.08);
  border: 1px solid var(--pp-accent-line);
  color: var(--pp-fg); font-size: 13.6px; line-height: 1.5;
}
.pricing-page .dfy-bullets li.dfy-guarantee::before { display: none; }
.pricing-page .dfy-bullets li.dfy-guarantee .dfy-guarantee__icon { color: var(--pp-accent-2); flex-shrink: 0; margin-top: 1px; }
.pricing-page .dfy-bullets li.dfy-guarantee strong { color: var(--pp-accent-2); font-weight: 700; }
.pricing-page .dfy-image { position: relative; background: #0a1726; min-height: 360px; overflow: hidden; }
.pricing-page .dfy-image img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: 40% center;
  filter: saturate(0.85) contrast(1.02) brightness(0.92);
  transform-origin: 60% 40%;
  animation: pp-kenburns 24s ease-in-out infinite alternate;
}
@keyframes pp-kenburns { from { transform: scale(1); } to { transform: scale(1.08); } }
@media (prefers-reduced-motion: reduce) { .pricing-page .dfy-image img { animation: none; } }
.pricing-page .dfy-image::before {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(90deg, rgba(7,8,12,0.55) 0%, rgba(7,8,12,0.18) 28%, rgba(7,8,12,0) 55%),
    linear-gradient(180deg, rgba(9,11,19,0.35) 0%, rgba(9,11,19,0) 30%, rgba(9,11,19,0) 70%, rgba(9,11,19,0.35) 100%);
  z-index: 1; pointer-events: none;
}
.pricing-page .dfy-image::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(120% 80% at 100% 50%, rgba(140,71,240,0.18), rgba(140,71,240,0) 60%);
  mix-blend-mode: screen; z-index: 2; pointer-events: none;
}
.pricing-page .dfy-tag {
  position: absolute; left: 20px; bottom: 20px; z-index: 3;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 12px 8px 10px;
  background: rgba(7,8,12,0.72);
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--pp-line-strong); border-radius: 999px;
  color: var(--pp-fg); font-size: 12.5px; font-weight: 500;
}
.pricing-page .dfy-tag .live-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--pp-success); box-shadow: 0 0 0 3px rgba(70,224,138,0.18), 0 0 10px var(--pp-success); }
.pricing-page .dfy-tag strong { color: var(--pp-fg); font-weight: 600; }
.pricing-page .dfy-tag .mute { color: var(--pp-fg-mute); font-weight: 500; }

/* FEATURES EXPLAINED */
.pricing-page .fx-section { padding: 96px 0 80px; position: relative; }
.pricing-page .fx-section::before {
  content: ""; position: absolute; top: 8%; left: 50%; transform: translateX(-50%);
  width: min(900px, 92%); height: 360px;
  background: radial-gradient(closest-side, rgba(140,71,240,0.12), transparent 70%);
  filter: blur(40px); pointer-events: none; z-index: 0;
}
.pricing-page .fx-wrap { position: relative; z-index: 1; max-width: 1240px; margin: 0 auto; padding: 0 36px; }
.pricing-page .fx-head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.pricing-page .fx-head .fx-eyebrow { display: inline-block; font-family: var(--pp-mono); font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--pp-fg-mute); margin-bottom: 18px; }
.pricing-page .fx-head h2 { font-family: var(--pp-display); font-weight: 700; font-size: clamp(28px, 3vw, 40px); line-height: 1.1; letter-spacing: -0.02em; color: var(--pp-fg); margin: 0 auto 14px; max-width: 22ch; }
.pricing-page .fx-head h2 em { font-style: italic; font-weight: 700; background: var(--pp-grad); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.pricing-page .fx-head .fx-lede { font-size: 15px; line-height: 1.55; color: var(--pp-fg-mute); margin: 0 auto; max-width: 56ch; }
.pricing-page .fx-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pricing-page .fx-card {
  position: relative;
  background: linear-gradient(180deg, var(--pp-surface) 0%, var(--pp-bg-2) 100%);
  border-radius: 16px; padding: 28px 24px;
  transition: transform 540ms cubic-bezier(0.22, 0.61, 0.36, 1), box-shadow 540ms ease;
  overflow: hidden; cursor: default;
}
.pricing-page .fx-card::before {
  content: ""; position: absolute; inset: 0; border-radius: 16px; padding: 1px;
  background: linear-gradient(180deg, rgba(255,255,255,0.12) 0%, rgba(255,255,255,0.04) 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  pointer-events: none; transition: background 540ms ease;
}
.pricing-page .fx-card:hover { transform: translateY(-3px); box-shadow: 0 24px 56px -16px rgba(140,71,240,0.35); }
.pricing-page .fx-card:hover::before { background: linear-gradient(180deg, rgba(164,92,224,0.55) 0%, rgba(164,92,224,0.08) 100%); }
.pricing-page .fx-card > * { position: relative; z-index: 1; }
.pricing-page .fx-icon {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 34px; height: 26px; padding: 0 9px; margin-bottom: 16px;
  border-radius: 8px; border: 1px solid var(--pp-line-strong);
  background: rgba(140,71,240,0.08);
  font-family: var(--pp-mono); font-size: 11px; letter-spacing: 0.16em; font-weight: 600;
  color: var(--pp-accent-2);
  transition: border-color 540ms ease, background-color 540ms ease;
}
.pricing-page .fx-card:hover .fx-icon { border-color: var(--pp-accent-line); background: rgba(140,71,240,0.16); }
.pricing-page .fx-title { font-family: var(--pp-display); font-weight: 600; font-size: 19px; line-height: 1.25; letter-spacing: -0.01em; color: var(--pp-fg); margin: 0 0 8px; }
.pricing-page .fx-tag { font-size: 13px; line-height: 1.4; color: var(--pp-fg-mute); margin: 0 0 12px; }
.pricing-page .fx-body { font-size: 13.5px; line-height: 1.55; color: var(--pp-fg); margin: 0; }
.pricing-page .fx-card .fx-body { max-height: 0; opacity: 0; overflow: hidden; transition: max-height 620ms cubic-bezier(0.16, 1, 0.3, 1), opacity 420ms ease 80ms, margin-top 420ms cubic-bezier(0.16, 1, 0.3, 1) 80ms; margin: 0; }
.pricing-page .fx-card:hover .fx-body, .pricing-page .fx-card:focus-within .fx-body { max-height: 200px; opacity: 1; margin-top: 6px; }

/* FAQ — elevated panels (brand-guide accordion style) */
.pricing-page .faq-list { display: flex; flex-direction: column; gap: 12px; }
.pricing-page .faq-item {
  background: var(--pp-surface);
  border: 1px solid var(--pp-line);
  border-radius: 14px; overflow: hidden;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.pricing-page .faq-item:hover { border-color: var(--pp-line-strong); }
.pricing-page .faq-item:has(.faq-q.open) {
  border-color: var(--pp-accent-line);
  background: linear-gradient(180deg, rgba(140,71,240,0.07), var(--pp-surface) 60%);
  box-shadow: 0 20px 50px -32px rgba(140,71,240,0.55);
}
.pricing-page .faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  background: transparent; border: 0; padding: 20px 24px; text-align: left;
  color: var(--pp-fg); font-size: 16.5px; font-weight: 600; letter-spacing: -0.01em;
}
.pricing-page .faq-q:hover { color: var(--pp-accent-2); }
.pricing-page .faq-q .chev {
  transition: transform .3s cubic-bezier(0.34,1.56,0.64,1), color .25s ease;
  color: var(--pp-fg-mute); display: inline-flex; flex-shrink: 0;
}
.pricing-page .faq-q.open .chev { transform: rotate(135deg); color: var(--pp-accent-2); }
.pricing-page .faq-a { overflow: hidden; transition: max-height .32s ease; }
.pricing-page .faq-a-inner { padding: 0 24px 22px; color: var(--pp-fg-mute); font-size: 15px; max-width: 760px; line-height: 1.65; }

/* FINAL CTA */
.pricing-page .final-cta { position: relative; overflow: hidden; text-align: center; padding: 104px 0 116px; border-top: 1px solid var(--pp-line); }
.pricing-page .final-cta::before {
  content: ""; position: absolute; left: 50%; top: -8%; transform: translateX(-50%);
  width: min(820px, 92%); height: 440px;
  background: radial-gradient(closest-side, rgba(140,71,240,0.18), transparent 72%);
  filter: blur(34px); pointer-events: none; z-index: 0;
}
.pricing-page .final-cta .wrap { position: relative; z-index: 1; }
.pricing-page .final-cta h2 { font-size: clamp(32px, 4vw, 48px); margin: 0 0 18px; letter-spacing: -0.035em; line-height: 1.05; font-weight: 700; color: var(--pp-fg); }
.pricing-page .final-cta h2 .accent {
  background: var(--pp-grad); background-size: 220% auto;
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
  animation: pp-sheen 7s ease-in-out infinite;
}
.pricing-page .final-cta p { color: var(--pp-fg-mute); margin: 0 0 30px; font-size: 17px; }
.pricing-page .final-cta .row { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
@media (prefers-reduced-motion: reduce) { .pricing-page .final-cta h2 .accent { animation: none; } }

/* Responsive */
@media (max-width: 960px) {
  .pricing-page .carousel-stage { height: 580px; }
  .pricing-page .plan-card { width: 290px; margin-left: -145px; height: 540px; }
  .pricing-page .dfy { grid-template-columns: 1fr; }
  .pricing-page .dfy-content { padding: 36px 28px; }
  .pricing-page .guarantee { grid-template-columns: 1fr; text-align: left; padding: 28px; }
  .pricing-page .section-head { flex-direction: column; align-items: flex-start; }
  .pricing-page table.pp-compare th, .pricing-page table.pp-compare td { padding: 14px 14px; font-size: 13.5px; }
  .pricing-page .wrap { padding: 0 20px; }
  .pricing-page .trial-rail { gap: 12px 18px; }
  .pricing-page .slider-rail-label { font-size: 10px; }
  .pricing-page .fx-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .pricing-page .carousel-stage { height: 620px; }
  .pricing-page .plan-card { width: 270px; margin-left: -135px; height: 560px; }
  .pricing-page .slider-rail-label { font-size: 9px; }
  .pricing-page .slider-rail { margin: 0 28px; }
  .pricing-page .fx-grid { grid-template-columns: 1fr; }
}

/* ---------- mobile carousel: native scroll-snap strip ---------- */
@media (max-width: 720px) {
  .pricing-page .carousel-section { padding: 28px 0 56px; }
  .pricing-page .slider-zone-top { display: none; }
  .pricing-page .carousel-stage {
    height: auto; max-width: none;
    overflow-x: auto; overflow-y: visible;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory; scroll-padding-left: 16px;
    padding: 26px 0 10px; scrollbar-width: none;
  }
  .pricing-page .carousel-stage::-webkit-scrollbar { display: none; }
  .pricing-page .carousel-track { position: static; inset: auto; top: auto; perspective: none; display: flex; gap: 16px; width: max-content; padding: 0 16px; }
  .pricing-page .plan-card {
    position: static !important; left: auto !important; margin-left: 0 !important;
    transform: none !important; opacity: 1 !important; filter: none !important;
    pointer-events: auto !important; flex: 0 0 auto;
    width: 84vw; max-width: 320px; height: auto; scroll-snap-align: center;
  }
  .pricing-page .plan-card .popular-badge.show { opacity: 1 !important; }
  .pricing-page .plan-name-row { flex-direction: column; align-items: flex-start; gap: 6px; }
  .pricing-page .compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .pricing-page table.pp-compare { min-width: 420px; }
  .pricing-page .fx-card .fx-body { max-height: 200px; opacity: 1; margin-top: 6px; }
}
