/* ===========================================================
   Premarital Compatibility Landing Page
   Namespace: .pc-*
   Built on top of layouts/site.ejs (Vazirmatn + tailwind tokens)

   Accent palette: teal (#006a62 / #14b8a6) — matches site primary brand
   color, signals new beginnings (vs. the gold/rose of the divorce-risk
   landing which signals warning).
   =========================================================== */

html:has(.pc-page),
body:has(.pc-page) {
  overflow-x: hidden;
  scroll-behavior: auto;
}

.pc-page {
  --pc-bg: #06241f;
  --pc-bg-2: #0a3a32;
  --pc-bg-3: #0f4f44;
  --pc-bg-soft: #f1f6f4;
  --pc-ink: #052522;
  --pc-ink-soft: #0e3b35;
  --pc-muted: #4d6a64;
  --pc-line: rgba(255, 255, 255, 0.08);
  --pc-line-light: rgba(5, 37, 34, 0.08);
  --pc-glass: rgba(255, 255, 255, 0.04);
  --pc-glass-strong: rgba(255, 255, 255, 0.08);
  --pc-glass-light: rgba(255, 255, 255, 0.92);
  --pc-accent: #006a62;
  --pc-accent-light: #14b8a6;
  --pc-accent-dark: #00524c;
  --pc-accent-soft: rgba(20, 184, 166, 0.18);
  --pc-gold: #d4af6f;
  --pc-gold-dark: #a88142;
  --pc-gold-soft: rgba(212, 175, 111, 0.18);
  --pc-purple: #6b4cff;
  --pc-purple-soft: rgba(107, 76, 255, 0.18);
  --pc-rose: #f43f5e;
  --pc-rose-soft: rgba(244, 63, 94, 0.15);
  --pc-success: #16a34a;
  --pc-radius-sm: 12px;
  --pc-radius: 20px;
  --pc-radius-lg: 28px;
  --pc-shadow-sm: 0 6px 20px -8px rgba(0, 60, 50, 0.35);
  --pc-shadow: 0 24px 60px -20px rgba(0, 60, 50, 0.45);
  --pc-shadow-accent: 0 18px 50px -16px rgba(20, 184, 166, 0.55);
  color: var(--pc-ink);
  background: var(--pc-bg-soft);
}

.pc-container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
}

@media (max-width: 720px) {
  .pc-container { padding: 0 18px; }
}

.pc-section {
  padding: 96px 0;
  position: relative;
}

@media (max-width: 720px) {
  .pc-section { padding: 64px 0; }
}

/* ---------- Reveal animation ---------- */
.pc-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  will-change: opacity, transform;
}
.pc-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Section heads ---------- */
.pc-section-head {
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}

.pc-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--pc-accent);
  letter-spacing: 0.06em;
  margin: 0 0 14px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--pc-accent-soft);
  text-transform: none;
}
.pc-eyebrow--gold {
  color: var(--pc-gold);
  background: var(--pc-gold-soft);
}

.pc-section-title {
  font-size: clamp(1.6rem, 2.4vw + 1rem, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--pc-ink);
  margin: 0 0 16px;
  line-height: 1.3;
}
.pc-section-title--light { color: #fff; }

.pc-section-sub {
  font-size: clamp(0.95rem, 0.7vw + 0.8rem, 1.1rem);
  line-height: 1.85;
  color: var(--pc-muted);
  margin: 0 auto;
  max-width: 720px;
}
.pc-section-sub--light { color: rgba(255, 255, 255, 0.78); }

/* ---------- Buttons ---------- */
.pc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 800;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  position: relative;
  white-space: nowrap;
}
.pc-btn:hover { transform: translateY(-2px); }
.pc-btn:active { transform: translateY(0); }

/* primary teal CTA (was gold in dr-) */
.pc-btn--gold {
  background: linear-gradient(135deg, var(--pc-accent-light), var(--pc-accent) 60%, var(--pc-accent-dark));
  color: #ffffff;
  box-shadow: var(--pc-shadow-accent);
  animation: pcPulseTeal 2.6s ease-in-out infinite;
}
.pc-btn--gold:hover {
  box-shadow: 0 24px 60px -14px rgba(20, 184, 166, 0.78);
}
.pc-btn--ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pc-btn--ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.32);
}
.pc-btn--solid {
  background: var(--pc-ink);
  color: #fff;
}
.pc-btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.pc-btn--xl { padding: 18px 38px; font-size: 1.08rem; }
.pc-btn--full { width: 100%; }
.pc-btn-icon { width: 18px; height: 18px; transform: scaleX(-1); }

@keyframes pcPulseTeal {
  0%, 100% { box-shadow: var(--pc-shadow-accent), 0 0 0 0 rgba(20, 184, 166, 0.45); }
  50%      { box-shadow: 0 22px 56px -16px rgba(20, 184, 166, 0.75), 0 0 0 12px rgba(20, 184, 166, 0); }
}

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

.pc-hero {
  position: relative;
  padding: 160px 0 110px;
  background: radial-gradient(120% 80% at 50% 0%, #0a3a32 0%, var(--pc-bg) 55%, #03150f 100%);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

.pc-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  overflow: hidden;
}

.pc-aurora {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.55;
  animation: pcAurora 18s ease-in-out infinite;
}
.pc-aurora--1 { top: -120px; right: -120px; width: 480px; height: 480px; background: radial-gradient(circle, #14b8a6 0%, transparent 70%); }
.pc-aurora--2 { bottom: -160px; left: -100px; width: 540px; height: 540px; background: radial-gradient(circle, #d4af6f 0%, transparent 65%); animation-delay: -6s; opacity: 0.4; }
.pc-aurora--3 { top: 40%; left: 50%; width: 380px; height: 380px; transform: translate(-50%, -50%); background: radial-gradient(circle, #6b4cff 0%, transparent 70%); opacity: 0.3; animation-delay: -12s; }

@keyframes pcAurora {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%      { transform: translate(40px, -30px) scale(1.08); }
  66%      { transform: translate(-30px, 40px) scale(0.95); }
}

.pc-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse at center, #000 0%, transparent 70%);
}

.pc-particles {
  position: absolute;
  inset: 0;
}
.pc-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
  animation: pcFloat var(--pc-d, 14s) ease-in-out infinite;
  animation-delay: var(--pc-delay, 0s);
}
@keyframes pcFloat {
  0%, 100% { transform: translate(0, 0); opacity: 0.6; }
  50%      { transform: translate(var(--pc-x, 30px), var(--pc-y, -40px)); opacity: 1; }
}

.pc-hero-inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 960px) {
  .pc-hero-inner { grid-template-columns: 1fr; gap: 40px; }
}

.pc-hero-text { display: flex; flex-direction: column; gap: 20px; }

.pc-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.86);
  align-self: flex-start;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.pc-pulse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--pc-accent-light);
  box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7);
  animation: pcDotPulse 2s ease-out infinite;
}
@keyframes pcDotPulse {
  0%   { box-shadow: 0 0 0 0 rgba(20, 184, 166, 0.7); }
  100% { box-shadow: 0 0 0 14px rgba(20, 184, 166, 0); }
}

.pc-hero-title {
  font-size: clamp(2rem, 3.4vw + 1rem, 3.6rem);
  font-weight: 900;
  line-height: 1.18;
  letter-spacing: -0.025em;
  margin: 0;
  color: #fff;
}
.pc-hero-line-pre {
  display: block;
  color: rgba(255, 255, 255, 0.95);
}
.pc-hero-accent {
  display: block;
  background: linear-gradient(120deg, #5eead4 0%, var(--pc-accent-light) 45%, #d4af6f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-top: 0.15em;
}

.pc-hero-sub {
  font-size: clamp(0.98rem, 0.6vw + 0.85rem, 1.15rem);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.82);
  margin: 8px 0 0;
  max-width: 580px;
}

.pc-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 12px;
}

.pc-hero-trust {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.58);
  margin: 6px 0 0;
}

.pc-hero-live {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
  padding: 8px 14px;
  background: rgba(22, 163, 74, 0.12);
  border: 1px solid rgba(22, 163, 74, 0.28);
  border-radius: 999px;
  font-size: 0.82rem;
  color: rgba(220, 252, 231, 0.95);
  align-self: flex-start;
}
.pc-hero-live strong {
  color: var(--pc-success);
  font-weight: 800;
}
.pc-hero-live-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--pc-success);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6);
  animation: pcDotPulseGreen 1.6s ease-out infinite;
}
@keyframes pcDotPulseGreen {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.6); }
  100% { box-shadow: 0 0 0 10px rgba(22, 163, 74, 0); }
}

.pc-hero-visual {
  position: relative;
  height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-rings-visual {
  position: relative;
  width: 100%;
  max-width: 420px;
  padding: 28px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--pc-radius);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px -20px rgba(20, 184, 166, 0.4);
}
.pc-rings-visual svg { width: 100%; height: auto; display: block; }
.pc-ring {
  fill: rgba(20, 184, 166, 0.06);
  stroke: rgba(20, 184, 166, 0.8);
  stroke-width: 2.5;
  filter: drop-shadow(0 0 6px rgba(20, 184, 166, 0.4));
  animation: pcRingBreathe 3.2s ease-in-out infinite;
}
.pc-ring--self { animation-delay: 0s; }
.pc-ring--partner { animation-delay: -1.6s; }
@keyframes pcRingBreathe {
  0%, 100% { transform-origin: center; opacity: 0.85; }
  50%      { opacity: 1; }
}
.pc-ring-link {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: pcRingLink 3s ease-out infinite;
}
@keyframes pcRingLink {
  0%   { stroke-dashoffset: 100; }
  60%  { stroke-dashoffset: 0; }
  100% { stroke-dashoffset: 0; }
}
.pc-ring-score {
  font-size: 28px;
  font-weight: 900;
  fill: #d4af6f;
}
.pc-ring-label {
  font-size: 12px;
  fill: rgba(255, 255, 255, 0.7);
  font-weight: 700;
}
.pc-hero-rings {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  z-index: -1;
}
.pc-hero-rings span {
  position: absolute;
  width: 280px; height: 280px;
  border: 1px solid rgba(20, 184, 166, 0.2);
  border-radius: 50%;
  animation: pcRing 5s ease-out infinite;
}
.pc-hero-rings span:nth-child(2) { animation-delay: -1.6s; }
.pc-hero-rings span:nth-child(3) { animation-delay: -3.2s; }
@keyframes pcRing {
  0%   { transform: scale(0.6); opacity: 0.9; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* ===========================================================
   PAIN MIRROR
   =========================================================== */

.pc-section--mirror {
  background: linear-gradient(180deg, #06241f 0%, #0a3a32 100%);
  color: #fff;
}
.pc-section--mirror .pc-section-title { color: #fff; }
.pc-section--mirror .pc-eyebrow {
  background: rgba(244, 63, 94, 0.16);
  color: #fda4af;
}

.pc-pain-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 36px;
}
@media (max-width: 900px) { .pc-pain-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pc-pain-grid { grid-template-columns: 1fr; } }

.pc-pain-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--pc-radius);
  padding: 24px;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.pc-pain-card::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.4), transparent 40%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.pc-pain-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
}
.pc-pain-card:hover::before { opacity: 1; }

.pc-pain-icon {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: rgba(244, 63, 94, 0.12);
  color: #fda4af;
  border-radius: 14px;
}
.pc-pain-icon svg { width: 22px; height: 22px; }
.pc-pain-text {
  font-size: 0.98rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.pc-pain-punch {
  text-align: center;
  font-size: clamp(1.05rem, 1vw + 0.85rem, 1.4rem);
  font-weight: 800;
  line-height: 1.6;
  color: #fff;
  margin: 0;
  padding: 24px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.12), rgba(20, 184, 166, 0.14));
  border: 1px solid rgba(20, 184, 166, 0.25);
  border-radius: var(--pc-radius);
}

/* ===========================================================
   STAKES (counter stats)
   =========================================================== */

.pc-section--stakes {
  background: radial-gradient(60% 80% at 50% 30%, #0f4f44 0%, #06241f 75%);
  color: #fff;
}

.pc-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin: 0 0 44px;
}
@media (max-width: 720px) { .pc-stats-grid { grid-template-columns: 1fr; } }

.pc-stat {
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--pc-radius);
  text-align: center;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}
.pc-stat-value {
  font-size: clamp(2.4rem, 3vw + 1.5rem, 3.6rem);
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #fff 0%, var(--pc-gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-flex;
  align-items: baseline;
  gap: 4px;
}
.pc-stat-suffix {
  font-size: 0.45em;
  font-weight: 700;
  color: var(--pc-gold);
  -webkit-text-fill-color: var(--pc-gold);
}
.pc-stat-label {
  margin: 16px 0 0;
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}

.pc-stakes-para {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  font-size: 1.05rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.82);
}

/* ===========================================================
   INFORMATION GAP — 13 DOMAINS
   =========================================================== */

.pc-section--gap { background: var(--pc-bg-soft); }

.pc-gap-dots {
  display: grid;
  grid-template-columns: repeat(20, 1fr);
  gap: 6px;
  max-width: 760px;
  margin: 0 auto 48px;
  padding: 28px;
  background: #fff;
  border: 1px solid var(--pc-line-light);
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow-sm);
}
.pc-gap-dots span {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  background: rgba(20, 184, 166, 0.1);
  transform: scale(0.4);
  opacity: 0.35;
  transition: transform 0.35s ease, opacity 0.35s ease, background 0.35s ease;
}
.pc-gap-dots.is-lit span {
  transform: scale(1);
  opacity: 1;
  background: linear-gradient(135deg, var(--pc-accent), var(--pc-accent-light));
}
@media (max-width: 720px) {
  .pc-gap-dots { grid-template-columns: repeat(14, 1fr); gap: 5px; padding: 18px; }
}

.pc-domains-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 900px) { .pc-domains-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .pc-domains-grid { grid-template-columns: 1fr; } }

.pc-domain-card {
  background: #fff;
  border: 1px solid var(--pc-line-light);
  border-radius: var(--pc-radius);
  padding: 24px;
  box-shadow: var(--pc-shadow-sm);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pc-domain-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--pc-shadow);
}
.pc-domain-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.pc-domain-title {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--pc-ink);
  margin: 0;
}
.pc-domain-weight {
  font-size: 0.74rem;
  color: var(--pc-muted);
  background: rgba(20, 184, 166, 0.08);
  padding: 4px 10px;
  border-radius: 999px;
}
.pc-domain-weight strong { color: var(--pc-accent); font-weight: 800; }

.pc-domain-bar {
  height: 6px;
  background: rgba(20, 184, 166, 0.08);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 14px;
}
.pc-domain-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--pc-accent), var(--pc-accent-light));
  border-radius: inherit;
  transform: scaleX(0);
  transform-origin: right center;
  animation: pcFillBar 1.2s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
  animation-delay: var(--pc-domain-delay, 0s);
}
@keyframes pcFillBar { to { transform: scaleX(1); } }

.pc-domain-text {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--pc-muted);
  margin: 0;
}

.pc-gap-closer {
  margin: 40px auto 0;
  max-width: 720px;
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.85;
  color: var(--pc-ink-soft);
  padding: 18px 24px;
  border-radius: var(--pc-radius);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.1), rgba(212, 175, 111, 0.08));
  border: 1px dashed rgba(20, 184, 166, 0.4);
}

/* ===========================================================
   COUPLE FLOW — UNIQUE ANIMATED SECTION
   =========================================================== */

.pc-section--couple {
  background: linear-gradient(180deg, #06241f 0%, #0a3a32 100%);
  color: #fff;
  padding: 110px 0;
  overflow: hidden;
}

.pc-couple-stage {
  display: grid;
  grid-template-columns: 1fr 80px 1fr;
  gap: 28px;
  align-items: start;
  position: relative;
  padding: 32px 0 0;
}
@media (max-width: 880px) {
  .pc-couple-stage {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

.pc-couple-track {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pc-couple-avatar {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--pc-radius);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.pc-couple-track[data-side="self"] .pc-couple-avatar {
  border-color: rgba(20, 184, 166, 0.4);
  background: rgba(20, 184, 166, 0.08);
}
.pc-couple-track[data-side="partner"] .pc-couple-avatar {
  border-color: rgba(212, 175, 111, 0.4);
  background: rgba(212, 175, 111, 0.08);
}
.pc-couple-avatar-icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}
.pc-couple-avatar-icon svg { width: 20px; height: 20px; }
.pc-couple-avatar-label {
  font-weight: 800;
  font-size: 0.98rem;
  color: #fff;
}

.pc-couple-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-couple-step {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  padding: 16px 18px;
  border-radius: var(--pc-radius);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
              background 0.4s ease,
              border-color 0.4s ease,
              box-shadow 0.4s ease,
              opacity 0.4s ease;
  opacity: 0.45;
}
.pc-couple-step.is-active {
  opacity: 1;
  transform: translateY(-2px);
  background: rgba(20, 184, 166, 0.1);
  border-color: rgba(20, 184, 166, 0.5);
  box-shadow: 0 16px 40px -16px rgba(20, 184, 166, 0.5);
}
.pc-couple-track[data-side="partner"] .pc-couple-step.is-active {
  background: rgba(212, 175, 111, 0.1);
  border-color: rgba(212, 175, 111, 0.5);
  box-shadow: 0 16px 40px -16px rgba(212, 175, 111, 0.5);
}

.pc-couple-step-num {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.7);
  font-weight: 900;
  font-size: 0.98rem;
  transition: background 0.4s ease, color 0.4s ease, transform 0.4s ease;
}
.pc-couple-step.is-active .pc-couple-step-num {
  background: linear-gradient(135deg, var(--pc-accent-light), var(--pc-accent));
  color: #fff;
  transform: scale(1.05);
}
.pc-couple-track[data-side="partner"] .pc-couple-step.is-active .pc-couple-step-num {
  background: linear-gradient(135deg, #e8c98a, var(--pc-gold));
  color: #1a1308;
}

.pc-couple-step-body { display: flex; flex-direction: column; gap: 6px; }
.pc-couple-step-title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.5;
}
.pc-couple-step-text {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
}

/* Security code typewriter */
.pc-couple-code {
  margin-top: 8px;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 8px 14px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(20, 184, 166, 0.4);
  font-family: 'Courier New', ui-monospace, monospace;
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--pc-accent-light);
  align-self: flex-start;
  min-width: 130px;
  min-height: 38px;
}
.pc-couple-track[data-side="partner"] .pc-couple-code {
  border-color: rgba(212, 175, 111, 0.4);
  color: var(--pc-gold);
}
.pc-couple-code-text {
  display: inline-block;
}
.pc-couple-code-caret {
  display: inline-block;
  width: 2px;
  height: 1em;
  background: currentColor;
  margin-inline-start: 2px;
  animation: pcCaret 0.9s steps(1) infinite;
}
@keyframes pcCaret {
  50% { opacity: 0; }
}
.pc-couple-step:not(.is-active) .pc-couple-code-caret { animation: none; opacity: 0; }

/* Highlight (connect glow) on step 4 — exchange-of-codes pulse */
.pc-couple-step[data-highlight="connect"].is-active {
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.18), rgba(212, 175, 111, 0.18));
  border-color: rgba(212, 175, 111, 0.55);
  animation: pcConnectGlow 1.6s ease-in-out infinite;
}
@keyframes pcConnectGlow {
  0%, 100% { box-shadow: 0 16px 40px -16px rgba(212, 175, 111, 0.5), 0 0 0 0 rgba(212, 175, 111, 0.35); }
  50%      { box-shadow: 0 20px 50px -16px rgba(212, 175, 111, 0.75), 0 0 0 8px rgba(212, 175, 111, 0); }
}

/* Center connecting line */
.pc-couple-link-line {
  position: relative;
  align-self: stretch;
  display: flex;
  justify-content: center;
  min-height: 100%;
}
.pc-couple-link-line svg {
  width: 60px;
  height: 100%;
  display: block;
}
.pc-couple-line-bg { fill: none; }
.pc-couple-line-fg {
  fill: none;
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  transition: stroke-dashoffset 1.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pc-couple-stage[data-step="3"] .pc-couple-line-fg,
.pc-couple-stage[data-step="4"] .pc-couple-line-fg {
  stroke-dashoffset: 0;
}
.pc-couple-link-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: radial-gradient(circle, #d4af6f 0%, transparent 70%);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
}
.pc-couple-stage[data-step="3"] .pc-couple-link-pulse,
.pc-couple-stage[data-step="4"] .pc-couple-link-pulse {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  animation: pcLinkPulse 1.4s ease-out infinite;
}
@keyframes pcLinkPulse {
  0%   { transform: translate(-50%, -50%) scale(0.7); opacity: 1; }
  100% { transform: translate(-50%, -50%) scale(2.4); opacity: 0; }
}

@media (max-width: 880px) {
  .pc-couple-link-line { display: none; }
}

/* Final result reveal (step 5) */
.pc-couple-result {
  grid-column: 1 / -1;
  margin-top: 32px;
  padding: 36px 24px;
  text-align: center;
  border-radius: var(--pc-radius-lg);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.12), rgba(212, 175, 111, 0.12));
  border: 1px solid rgba(212, 175, 111, 0.35);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px) scale(0.96);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pc-couple-stage[data-step="4"] .pc-couple-result {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.pc-couple-result-ring {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 140px;
  height: 140px;
}
.pc-couple-result-ring svg {
  width: 100%; height: 100%;
  transform: rotate(-90deg);
}
.pc-couple-result-bg {
  fill: none;
  stroke: rgba(255, 255, 255, 0.1);
  stroke-width: 8;
}
.pc-couple-result-fg {
  fill: none;
  stroke: url(#pc-couple-line-grad);
  stroke-width: 8;
  stroke-linecap: round;
  stroke-dasharray: 326.7;
  stroke-dashoffset: 326.7;
  transition: stroke-dashoffset 1.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.pc-couple-stage[data-step="4"] .pc-couple-result-fg {
  stroke-dashoffset: 58.8;  /* ~82% complete: 326.7 * (1 - 0.82) */
}
.pc-couple-result-score {
  position: absolute;
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  letter-spacing: -0.02em;
}
.pc-couple-result-typology {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--pc-gold);
}
.pc-couple-result-label {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
}
.pc-couple-result-sub {
  margin: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.65);
}

.pc-couple-microcopy {
  margin: 28px auto 0;
  max-width: 720px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 22px;
  border-radius: var(--pc-radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  font-size: 0.92rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
  text-align: start;
}
.pc-couple-microcopy svg {
  width: 22px; height: 22px;
  color: var(--pc-accent-light);
  flex-shrink: 0;
}

.pc-couple-cta {
  margin-top: 32px;
  text-align: center;
}

/* ===========================================================
   REPORT PREVIEW
   =========================================================== */

.pc-section--preview { background: #fff; }

.pc-preview-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 56px;
}
@media (max-width: 900px) { .pc-preview-pillars { grid-template-columns: 1fr; } }

.pc-preview-pillar {
  padding: 28px;
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--pc-line-light);
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pc-preview-pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--pc-shadow);
}
.pc-preview-num {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--pc-accent-soft);
  color: var(--pc-accent);
  font-weight: 900;
  font-size: 1.1rem;
}
.pc-preview-pillar-title {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0;
  color: var(--pc-ink);
}
.pc-preview-pillar-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--pc-muted);
  margin: 0;
}

.pc-preview-cta {
  margin-top: 36px;
  text-align: center;
}

/* ===========================================================
   COMPARE TABLE
   =========================================================== */

.pc-section--compare { background: var(--pc-bg-soft); }

.pc-table-wrap {
  overflow-x: auto;
  border-radius: var(--pc-radius-lg);
  background: #fff;
  box-shadow: var(--pc-shadow);
  border: 1px solid var(--pc-line-light);
}
.pc-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 720px;
}
.pc-table th, .pc-table td {
  padding: 18px 16px;
  text-align: center;
  font-size: 0.92rem;
}
.pc-table th {
  background: #f1f6f4;
  color: var(--pc-ink);
  font-weight: 800;
  border-bottom: 1px solid var(--pc-line-light);
}
.pc-table-th--hero {
  background: linear-gradient(135deg, var(--pc-accent), var(--pc-accent-dark)) !important;
  color: #fff !important;
  position: relative;
}
.pc-table-th--hero::after {
  content: '';
  position: absolute;
  inset-inline-end: 8px;
  top: 8px;
  width: 8px; height: 8px;
  background: var(--pc-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(212, 175, 111, 0.6);
  animation: pcDotPulseGold 2s ease-out infinite;
}
@keyframes pcDotPulseGold {
  0%   { box-shadow: 0 0 0 0 rgba(212, 175, 111, 0.7); }
  100% { box-shadow: 0 0 0 14px rgba(212, 175, 111, 0); }
}
.pc-table tr:not(:last-child) td { border-bottom: 1px solid var(--pc-line-light); }
.pc-table-feature {
  text-align: start !important;
  font-weight: 700;
  color: var(--pc-ink);
  background: #fafaf7;
}
.pc-table-td--hero {
  background: rgba(20, 184, 166, 0.06);
  font-weight: 700;
}
.pc-check {
  display: inline-grid;
  place-items: center;
  width: 28px; height: 28px;
  border-radius: 50%;
}
.pc-check svg { width: 16px; height: 16px; }
.pc-check--on { background: var(--pc-success); color: #fff; }
.pc-check--off { background: rgba(0,0,0,0.06); color: var(--pc-muted); }
.pc-check--no { background: rgba(244, 63, 94, 0.1); color: var(--pc-rose); }
.pc-table-val { font-weight: 700; color: var(--pc-muted); }
.pc-table-val--hero { color: var(--pc-accent); font-size: 1rem; }

@media (max-width: 720px) {
  .pc-section--compare,
  .pc-section--method {
    display: none !important;
  }
}

@media (max-width: 720px) {
  .pc-table-wrap {
    overflow-x: visible;
    background: transparent;
    border: none;
    box-shadow: none;
  }
  .pc-table {
    min-width: 0;
    display: block;
  }
  .pc-table thead { display: none; }
  .pc-table tbody {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }
  .pc-table tbody tr {
    display: block;
    background: #fff;
    border-radius: var(--pc-radius-sm);
    border: 1px solid var(--pc-line-light);
    box-shadow: var(--pc-shadow-sm);
    overflow: hidden;
  }
  .pc-table tbody td {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    text-align: start;
    border-bottom: 1px solid var(--pc-line-light);
  }
  .pc-table tbody td:last-child { border-bottom: none; }
  .pc-table tbody td::before {
    content: attr(data-label);
    font-weight: 700;
    font-size: 0.82rem;
    color: var(--pc-muted);
    flex-shrink: 0;
    max-width: 45%;
    line-height: 1.5;
    text-align: start;
  }
  .pc-table-feature {
    background: #f1f6f4;
    font-size: 0.95rem;
    font-weight: 800;
    justify-content: center;
    text-align: center !important;
  }
  .pc-table-feature::before { display: none; }
  .pc-table-td--hero { background: rgba(20, 184, 166, 0.1); }
  .pc-table tr:not(:last-child) td { border-bottom: 1px solid var(--pc-line-light); }
}

/* ===========================================================
   METHODOLOGY (license-heavy)
   =========================================================== */

.pc-section--method { background: #fff; }

.pc-method-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media (max-width: 720px) { .pc-method-grid { grid-template-columns: 1fr; } }

.pc-method-card {
  padding: 28px;
  border-radius: var(--pc-radius);
  background: linear-gradient(180deg, #fff 0%, #fafafa 100%);
  border: 1px solid var(--pc-line-light);
  box-shadow: var(--pc-shadow-sm);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pc-method-card::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right, var(--pc-accent-soft), transparent 70%);
  opacity: 0.6;
}
.pc-method-card:hover { transform: translateY(-4px); box-shadow: var(--pc-shadow); }

.pc-method-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  padding: 4px 10px;
  border-radius: 6px;
  background: var(--pc-accent-soft);
  color: var(--pc-accent);
  margin-bottom: 14px;
}
.pc-method-title {
  font-size: 1.1rem;
  font-weight: 800;
  margin: 0 0 10px;
  color: var(--pc-ink);
}
.pc-method-text {
  font-size: 0.94rem;
  line-height: 1.85;
  color: var(--pc-muted);
  margin: 0;
}

.pc-method-license {
  margin: 36px auto 0;
  max-width: 820px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border-radius: var(--pc-radius);
  background: linear-gradient(135deg, rgba(20, 184, 166, 0.08), rgba(212, 175, 111, 0.08));
  border: 1px solid rgba(212, 175, 111, 0.35);
}
.pc-method-license svg {
  width: 28px; height: 28px;
  color: var(--pc-gold-dark);
  flex-shrink: 0;
  margin-top: 2px;
}
.pc-method-license p {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.8;
  color: var(--pc-ink-soft);
}

/* ===========================================================
   STEPS
   =========================================================== */

.pc-section--steps { background: var(--pc-bg-soft); }

.pc-steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
  position: relative;
}
@media (max-width: 1100px) { .pc-steps { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 800px) { .pc-steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .pc-steps { grid-template-columns: 1fr; } }

.pc-step {
  position: relative;
  padding: 28px 24px 24px;
  background: #fff;
  border: 1px solid var(--pc-line-light);
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow-sm);
  transition: transform 0.3s ease;
}
.pc-step:hover { transform: translateY(-4px); }

.pc-step-line {
  position: absolute;
  top: 38px;
  inset-inline-end: -10px;
  width: 20px; height: 2px;
  background: linear-gradient(to left, var(--pc-accent-light), transparent);
}
.pc-steps li:last-child .pc-step-line { display: none; }
@media (max-width: 1100px) { .pc-step-line { display: none; } }

.pc-step-num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--pc-accent-light), var(--pc-accent));
  color: #fff;
  font-weight: 900;
  font-size: 1.15rem;
  margin-bottom: 16px;
  box-shadow: 0 12px 30px -10px rgba(20, 184, 166, 0.6);
}
.pc-step-title {
  font-size: 1rem;
  font-weight: 800;
  margin: 0 0 8px;
  color: var(--pc-ink);
}
.pc-step-text {
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--pc-muted);
  margin: 0 0 12px;
}
.pc-step-duration {
  display: inline-block;
  font-size: 0.74rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--pc-accent-soft);
  color: var(--pc-accent);
}

/* ===========================================================
   PRICING — two tiers
   =========================================================== */

.pc-section--pricing {
  background: radial-gradient(60% 80% at 50% 0%, #0f4f44 0%, #06241f 70%);
  color: #fff;
}

.pc-paymode-switch {
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: 540px;
  margin: 0 auto 1.25rem;
  padding: 0.85rem 1rem;
  background: linear-gradient(135deg, var(--pc-accent-soft), var(--pc-gold-soft));
  border: 1px dashed rgba(212, 175, 111, 0.35);
  border-radius: var(--pc-radius-sm);
  text-decoration: none;
  color: rgba(255, 255, 255, 0.9);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pc-paymode-switch:hover,
.pc-paymode-switch:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(212, 175, 111, 0.6);
  box-shadow: 0 6px 22px rgba(20, 184, 166, 0.18);
}
.pc-paymode-switch-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.8rem;
  background: var(--pc-accent-soft);
  color: var(--pc-accent-light);
  display: flex;
  align-items: center;
  justify-content: center;
}
.pc-paymode-switch-icon svg { width: 1.25rem; height: 1.25rem; }
.pc-paymode-switch-body {
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.85);
}
.pc-paymode-switch-body strong {
  display: block;
  font-weight: 700;
  margin-bottom: 0.15rem;
  color: #fff;
}
.pc-paymode-switch-cta {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.55rem 1rem;
  background: var(--pc-accent);
  color: #fff;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 700;
  white-space: nowrap;
}
.pc-paymode-switch-cta svg { width: 0.9rem; height: 0.9rem; }
@media (max-width: 640px) {
  .pc-paymode-switch {
    flex-direction: column;
    align-items: stretch;
    text-align: start;
  }
  .pc-paymode-switch-cta { align-self: flex-start; }
}

.pc-price-card {
  max-width: 1080px;
  margin: 0 auto;
  padding: 36px 32px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(212, 175, 111, 0.4);
  border-radius: var(--pc-radius-lg);
  text-align: center;
  position: relative;
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  box-shadow: 0 40px 100px -30px rgba(20, 184, 166, 0.5);
}
.pc-price-ribbon {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #f4d49a, var(--pc-gold), var(--pc-gold-dark));
  color: #1a1308;
  font-size: 0.82rem;
  font-weight: 800;
  padding: 6px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px -8px rgba(212, 175, 111, 0.6);
  white-space: nowrap;
}

.pc-price-name {
  font-size: 1.4rem;
  font-weight: 800;
  margin: 12px 0 6px;
  color: #fff;
}
.pc-price-meta {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.65);
  margin: 0 0 28px;
}

.pc-price-tiers {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 24px;
}
@media (max-width: 820px) {
  .pc-price-tiers { grid-template-columns: 1fr; }
}

.pc-price-tier {
  padding: 24px 22px;
  border-radius: var(--pc-radius);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: start;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.pc-price-tier:hover {
  transform: translateY(-4px);
}
.pc-price-tier--free {
  background: linear-gradient(180deg, rgba(20, 184, 166, 0.1) 0%, rgba(20, 184, 166, 0.03) 100%);
  border-color: rgba(20, 184, 166, 0.5);
}
.pc-price-tier--paid {
  background: linear-gradient(180deg, rgba(212, 175, 111, 0.1) 0%, rgba(212, 175, 111, 0.03) 100%);
  border-color: rgba(212, 175, 111, 0.45);
}

.pc-price-tier-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.pc-price-tier-label {
  font-size: 1.05rem;
  font-weight: 800;
  margin: 0;
  color: #fff;
}
.pc-price-tier-badge {
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(20, 184, 166, 0.2);
  color: #5eead4;
  white-space: nowrap;
}
.pc-price-tier-badge--paid {
  background: rgba(212, 175, 111, 0.2);
  color: #fbd38d;
}

.pc-price-tier-amount {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin: 0;
}
.pc-price-tier--free .pc-price-tier-amount { color: var(--pc-accent-light); }
.pc-price-tier--paid .pc-price-tier-amount { color: var(--pc-gold); }
.pc-price-tier-amount-value {
  font-size: clamp(2rem, 1.5vw + 1.8rem, 2.6rem);
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
.pc-price-tier-amount-currency,
.pc-price-tier-amount-currency-pre {
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
}
.pc-price-tier-strap {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin: -6px 0 0;
}

.pc-price-features {
  list-style: none;
  padding: 16px 0;
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.pc-price-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
}
.pc-price-check {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: rgba(22, 163, 74, 0.2);
  color: #4ade80;
  margin-top: 3px;
}
.pc-price-check--paid {
  background: rgba(212, 175, 111, 0.2);
  color: #fbd38d;
}
.pc-price-check svg { width: 11px; height: 11px; }

.pc-price-tier-foot {
  font-size: 0.78rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.55);
  margin: 0;
  text-align: center;
}

.pc-price-microcopy {
  margin: 20px 0 0;
  font-size: 0.85rem;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.6);
}

/* ===========================================================
   TESTIMONIALS
   =========================================================== */

.pc-section--testimonials { background: #fff; }

.pc-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 960px) { .pc-testimonials-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .pc-testimonials-grid { grid-template-columns: 1fr; } }

.pc-testimonial {
  padding: 26px;
  background: linear-gradient(180deg, #fff, #fafafa);
  border: 1px solid var(--pc-line-light);
  border-radius: var(--pc-radius);
  box-shadow: var(--pc-shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.pc-testimonial:hover {
  transform: translateY(-4px);
  box-shadow: var(--pc-shadow);
}

.pc-testimonial-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: linear-gradient(135deg, rgba(244, 63, 94, 0.08), rgba(20, 184, 166, 0.1));
  border-radius: 10px;
  font-size: 0.72rem;
  font-weight: 700;
  align-self: flex-start;
}
.pc-testimonial-badge svg { width: 14px; height: 14px; color: var(--pc-muted); transform: scaleX(-1); }
.pc-testimonial-badge-from { color: var(--pc-muted); }
.pc-testimonial-badge-to { color: var(--pc-accent); }

.pc-testimonial-quote {
  width: 24px; height: 24px;
  color: var(--pc-accent-light);
  opacity: 0.4;
}
.pc-testimonial-text {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--pc-ink);
  margin: 0;
}
.pc-testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 12px;
  border-top: 1px solid var(--pc-line-light);
}
.pc-testimonial-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.pc-testimonial-name {
  font-size: 0.92rem;
  font-weight: 800;
  margin: 0;
  color: var(--pc-ink);
}
.pc-testimonial-role {
  font-size: 0.78rem;
  color: var(--pc-muted);
  margin: 0;
}

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

.pc-section--faq { background: var(--pc-bg-soft); }

.pc-faq-wrap { max-width: 820px; margin: 0 auto; }
.pc-faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pc-faq-item {
  background: #fff;
  border: 1px solid var(--pc-line-light);
  border-radius: var(--pc-radius);
  overflow: hidden;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.pc-faq-item[open] {
  box-shadow: var(--pc-shadow-sm);
  border-color: var(--pc-accent-soft);
}
.pc-faq-summary {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  list-style: none;
  user-select: none;
}
.pc-faq-summary::-webkit-details-marker { display: none; }
.pc-faq-q {
  font-weight: 700;
  color: var(--pc-ink);
  font-size: 0.98rem;
  line-height: 1.7;
}
.pc-faq-chevron {
  flex-shrink: 0;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--pc-accent-soft);
  color: var(--pc-accent);
  transition: transform 0.25s ease;
}
.pc-faq-chevron svg { width: 16px; height: 16px; }
.pc-faq-item[open] .pc-faq-chevron { transform: rotate(180deg); }
.pc-faq-a {
  padding: 0 22px 20px;
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.95;
  color: var(--pc-muted);
}

/* ===========================================================
   FINAL CTA
   =========================================================== */

.pc-final-cta {
  background: radial-gradient(80% 100% at 50% 0%, #0f4f44 0%, #03150f 80%);
  color: #fff;
  padding: 110px 0 120px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.pc-final-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.pc-final-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(20, 184, 166, 0.25) 0%, transparent 60%);
  filter: blur(40px);
  animation: pcFinalPulse 4s ease-in-out infinite;
}
@keyframes pcFinalPulse {
  0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.8; }
  50%      { transform: translate(-50%, -50%) scale(1.15); opacity: 1; }
}

.pc-final-inner {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.pc-final-icon { width: 80px; height: 80px; margin: 0 auto 6px; }
.pc-final-icon svg { width: 100%; height: 100%; }

.pc-final-eyebrow {
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  color: var(--pc-gold);
  margin: 0;
}
.pc-final-title {
  font-size: clamp(1.8rem, 2.6vw + 1rem, 3rem);
  font-weight: 900;
  line-height: 1.35;
  margin: 0;
  color: #fff;
  letter-spacing: -0.02em;
}
.pc-final-sub {
  font-size: clamp(0.98rem, 0.5vw + 0.85rem, 1.12rem);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 600px;
}

/* ===========================================================
   STICKY MOBILE CTA
   =========================================================== */

.pc-sticky-cta {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 60;
  display: none;
}
.pc-sticky-link {
  display: block;
  text-align: center;
  padding: 16px 22px;
  background: linear-gradient(135deg, var(--pc-accent-light), var(--pc-accent), var(--pc-accent-dark));
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  border-radius: 999px;
  box-shadow: 0 16px 40px -10px rgba(20, 184, 166, 0.7);
}
@media (max-width: 720px) {
  .pc-sticky-cta:not([hidden]) { display: block; }
}

/* ===========================================================
   ALERT
   =========================================================== */

.pc-alert {
  position: fixed;
  top: 96px;
  inset-inline-start: 50%;
  transform: translateX(-50%);
  z-index: 70;
  padding: 14px 22px;
  border-radius: 999px;
  background: var(--pc-ink);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: var(--pc-shadow);
}

/* ===========================================================
   REDUCED MOTION
   =========================================================== */

@media (prefers-reduced-motion: reduce) {
  .pc-aurora,
  .pc-particles span,
  .pc-pulse-dot,
  .pc-hero-live-dot,
  .pc-btn--gold,
  .pc-ring,
  .pc-ring-link,
  .pc-hero-rings span,
  .pc-final-glow,
  .pc-domain-bar span,
  .pc-table-th--hero::after,
  .pc-couple-step[data-highlight="connect"].is-active,
  .pc-couple-link-pulse,
  .pc-couple-code-caret {
    animation: none !important;
  }
  .pc-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .pc-domain-bar span { transform: scaleX(1); }
  .pc-couple-step { opacity: 1; }
  .pc-couple-line-fg { stroke-dashoffset: 0; }
  .pc-couple-result { opacity: 1; transform: none; }
}
