:root {
  --pv1-bg: #f4f7fb;
  --pv1-surface: #ffffff;
  --pv1-navy: #0b1f3a;
  --pv1-navy-soft: #1b3a5f;
  --pv1-text: #142033;
  --pv1-muted: #5b6b7c;
  --pv1-border: #e4ebf3;
  --pv1-blue: #1f6fff;
  --pv1-gold: #c9a24a;
  --pv1-radius: 1rem;
  --pv1-shadow: 0 10px 30px rgba(15, 35, 70, 0.08);
}

body.pricing-v1-body {
  margin: 0;
  font-family: Inter, Manrope, system-ui, sans-serif;
  background: var(--pv1-bg);
  color: var(--pv1-text);
}

.pv1-wrap { min-height: 100vh; display: flex; flex-direction: column; }

.pv1-header {
  background: var(--pv1-surface);
  border-bottom: 1px solid var(--pv1-border);
  padding: 0.9rem 1.25rem;
}

.pv1-header__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.pv1-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--pv1-navy);
  font-weight: 700;
}

.pv1-brand svg { width: 2rem; height: 2.25rem; }

.pv1-nav { display: flex; flex-wrap: wrap; gap: 0.85rem 1.25rem; }
.pv1-nav a {
  color: var(--pv1-navy-soft);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 500;
}

.pv1-main {
  width: min(100%, 1100px);
  margin: 0 auto;
  padding: 1.5rem 1.25rem 3rem;
  flex: 1;
}

.pv1-hero { margin-bottom: 1.5rem; max-width: 40rem; }
.pv1-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--pv1-gold);
  font-weight: 700;
}
.pv1-title {
  margin: 0 0 0.55rem;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--pv1-navy);
  line-height: 1.15;
}
.pv1-sub { margin: 0; color: var(--pv1-muted); line-height: 1.55; }

.pv1-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}

.pv1-card {
  background: var(--pv1-surface);
  border: 1px solid var(--pv1-border);
  border-radius: calc(var(--pv1-radius) + 0.1rem);
  box-shadow: var(--pv1-shadow);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.pv1-card--featured {
  border-color: rgba(201, 162, 74, 0.55);
  box-shadow: 0 14px 36px rgba(15, 35, 70, 0.12);
  position: relative;
}

.pv1-card__badge {
  align-self: flex-start;
  margin: 0;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #fff7e8;
  color: #7a5a16;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pv1-card__eyebrow {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--pv1-blue);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.pv1-card__tier {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--pv1-navy);
}

.pv1-card__price {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--pv1-navy);
}

.pv1-card__cadence {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--pv1-muted);
}

.pv1-card__promise {
  margin: 0;
  color: var(--pv1-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.pv1-card__benefits {
  margin: 0.25rem 0 0.5rem;
  padding: 0 0 0 1.1rem;
  color: var(--pv1-text);
  font-size: 0.9rem;
  line-height: 1.55;
  flex: 1;
}

.pv1-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.6rem;
  padding: 0.65rem 1.1rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  border: none;
  cursor: pointer;
}

.pv1-btn--primary { background: var(--pv1-navy); color: #fff; }
.pv1-btn--gold {
  background: linear-gradient(135deg, #e6c97a, #c9a24a);
  color: #1a1408;
}
.pv1-btn--ghost {
  background: transparent;
  border: 1px solid var(--pv1-border);
  color: var(--pv1-navy);
}
.pv1-btn--disabled {
  background: #eef2f7;
  color: #8a97a8;
  cursor: not-allowed;
}

.pv1-trust {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin: 1rem 0 1.5rem;
}

.pv1-trust article {
  background: var(--pv1-surface);
  border: 1px solid var(--pv1-border);
  border-radius: 0.85rem;
  padding: 1rem;
}
.pv1-trust h3 { margin: 0 0 0.3rem; font-size: 0.95rem; color: var(--pv1-navy); }
.pv1-trust p { margin: 0; font-size: 0.86rem; color: var(--pv1-muted); line-height: 1.45; }

.pv1-note {
  background: #fff7e8;
  border: 1px solid #f0d7a3;
  color: #7a5a16;
  border-radius: 0.85rem;
  padding: 0.85rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}

.pv1-footer {
  margin-top: auto;
  padding: 1.25rem;
  text-align: center;
  color: var(--pv1-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--pv1-border);
  background: var(--pv1-surface);
}
.pv1-footer a { color: var(--pv1-navy-soft); }

.pv1-premium-note {
  margin: 0 0 1.25rem;
  padding: 0.75rem 0.95rem;
  border-radius: 0.75rem;
  background: #e8f8ef;
  border: 1px solid #b7e4c7;
  color: #166534;
  font-size: 0.9rem;
  line-height: 1.5;
  max-width: 46rem;
}

.pv1-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 0;
}

@media (max-width: 980px) {
  .pv1-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pv1-trust { grid-template-columns: 1fr; }
  .pv1-nav { display: none; }
  .pv1-header__inner { gap: 0.65rem; }
  .pv1-card--featured { order: -1; }
}

@media (max-width: 560px) {
  .pv1-grid { grid-template-columns: 1fr; }
  .pv1-main { padding: 1.1rem 1rem 2.5rem; }
  .pv1-btn { width: 100%; justify-content: center; text-align: center; }
  .pv1-cta-row .pv1-btn { width: auto; min-width: calc(50% - 0.4rem); flex: 1 1 auto; }
  .pv1-header__inner { flex-wrap: wrap; }
  .pv1-back,
  #pv1-back-product { width: 100%; text-align: center; }
}
