/* Pricing page — standalone styles. Does NOT override theme.css globals. */

/* ── Page body ── */
.pricing-page {
  background: var(--bg);
}

/* ── Nav variant ── */
.nav-inner--pricing {
  justify-content: space-between;
}

.nav-cta-small {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  transition: opacity 0.2s;
}

.nav-cta-small:hover {
  opacity: 0.75;
}

/* ── Hero ── */
.pp-hero {
  background: var(--navy);
  padding: 80px 24px 72px;
  position: relative;
  overflow: hidden;
}

.pp-hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245,166,35,0.10) 0%, transparent 65%);
  pointer-events: none;
}

.pp-hero-inner {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.pp-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.pp-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #FFFFFF;
  line-height: 1.1;
  margin-bottom: 24px;
}

.pp-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.62);
  line-height: 1.75;
  max-width: 560px;
  margin: 0 auto;
}

.pp-sub strong {
  color: rgba(255,255,255,0.85);
}

/* ── Tiers ── */
.pp-tiers {
  padding: 72px 24px 80px;
}

.pp-tiers-inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

/* Card */
.pp-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pp-card:hover {
  box-shadow: 0 12px 40px rgba(26,39,68,0.09);
  transform: translateY(-3px);
}

.pp-card--featured {
  border-color: var(--accent);
  box-shadow: 0 8px 32px rgba(245,166,35,0.18);
}

.pp-card--featured:hover {
  box-shadow: 0 16px 48px rgba(245,166,35,0.24);
}

/* Badge */
.pp-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  white-space: nowrap;
}

/* Card header */
.pp-card-header {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.pp-tier-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fg);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.pp-price-row {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 6px;
}

.pp-price {
  font-family: var(--font-display);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--fg);
  letter-spacing: -0.03em;
  line-height: 1;
}

.pp-card--featured .pp-price {
  color: var(--navy);
}

.pp-price-period {
  font-size: 1rem;
  color: var(--fg-muted);
  font-weight: 400;
}

.pp-no-setup {
  font-size: 0.78rem;
  color: var(--accent-dark);
  font-weight: 600;
  margin-bottom: 10px;
}

.pp-target {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

/* Guarantee row */
.pp-guarantee {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: rgba(245,166,35,0.07);
  border: 1px solid rgba(245,166,35,0.2);
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 24px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.5;
}

.pp-guarantee svg { flex-shrink: 0; margin-top: 1px; }

.pp-guarantee strong { color: var(--fg); }

.pp-guarantee--featured {
  background: rgba(245,166,35,0.12);
  border-color: rgba(245,166,35,0.35);
}

/* Bullets */
.pp-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.pp-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--fg);
  line-height: 1.55;
}

.pp-check { flex-shrink: 0; margin-top: 1px; }

/* CTA button */
.pp-cta {
  display: block;
  text-align: center;
  padding: 14px 24px;
  border-radius: 10px;
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.pp-cta--primary {
  background: var(--accent);
  color: var(--navy);
}

.pp-cta--primary:hover {
  background: var(--accent-dark);
  box-shadow: 0 4px 16px rgba(245,166,35,0.35);
}

.pp-cta--secondary {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--fg);
}

.pp-cta--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.pp-cta--large {
  padding: 18px 40px;
  font-size: 1.05rem;
}

/* ── Guarantee strip ── */
.pp-guarantee-strip {
  background: var(--navy);
  padding: 56px 24px;
}

.pp-guarantee-strip-inner {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: 28px;
}

.pp-guarantee-icon {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: rgba(245,166,35,0.1);
  border: 1px solid rgba(245,166,35,0.25);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pp-guarantee-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
}

.pp-guarantee-body {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.75;
}

/* ── FAQ ── */
.pp-faq {
  padding: 80px 24px;
  background: var(--bg);
}

.pp-faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.pp-faq-headline {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 40px;
}

.pp-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-top: 1px solid var(--border);
}

.pp-faq-item {
  border-bottom: 1px solid var(--border);
}

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

.pp-faq-q:hover { color: var(--accent-dark); }

.pp-faq-arrow {
  flex-shrink: 0;
  color: var(--fg-muted);
  transition: transform 0.25s ease;
}

.pp-faq-item.open .pp-faq-arrow {
  transform: rotate(180deg);
}

.pp-faq-a {
  display: none;
  padding: 0 0 22px;
}

.pp-faq-item.open .pp-faq-a {
  display: block;
}

.pp-faq-a p {
  font-size: 0.95rem;
  color: var(--fg-muted);
  line-height: 1.8;
  max-width: 600px;
}

/* ── Closing CTA ── */
.pp-close {
  padding: 100px 24px;
  background: var(--surface);
  text-align: center;
  border-top: 1px solid var(--border);
}

.pp-close-inner {
  max-width: 640px;
  margin: 0 auto;
}

.pp-close-headline {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 800;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 18px;
  line-height: 1.15;
}

.pp-close-sub {
  font-size: 1rem;
  color: var(--fg-muted);
  line-height: 1.75;
  margin-bottom: 36px;
}

.pp-close-fine {
  margin-top: 16px;
  font-size: 0.82rem;
  color: var(--fg-muted);
  font-style: italic;
}

/* ── Responsive ── */
@media (max-width: 960px) {
  .pp-tiers-inner {
    grid-template-columns: 1fr;
    max-width: 520px;
  }

  .pp-card--featured {
    order: -1;
  }
}

@media (max-width: 600px) {
  .pp-hero {
    padding: 56px 20px 48px;
  }

  .pp-tiers {
    padding: 48px 16px 56px;
  }

  .pp-card {
    padding: 28px 22px;
  }

  .pp-guarantee-strip-inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
  }

  .pp-faq-q {
    font-size: 0.95rem;
  }

  .pp-close {
    padding: 72px 20px;
  }
}
