/* ════════════════════════════════════════════════════════════════════════
   PRICING v11 — refonte premium /pricing electrocad.ch (2026-05-02)
   Scope STRICT : .pv11-* uniquement. Aucune fuite global.
   Design : Stripe / Linear / Vercel-2025 grade. Mobile-first absolu.
   Couleur unique : rouge Suisse #DC2626 (variantes #EF4444, #B91C1C, #7F1D1D).
   Fonts : Inter / Instrument Serif italic accent / JetBrains Mono labels.
   Typo : -0.04em titles, 0.18em uppercase eyebrows mono.
   Glass cards : rgba(255,255,255,0.02) + blur(8px) + border 0.06.
   ════════════════════════════════════════════════════════════════════════ */

.pv11 {
  --pv11-red: #DC2626;
  --pv11-red-bright: #EF4444;
  --pv11-red-dark: #B91C1C;
  --pv11-red-deep: #7F1D1D;
  --pv11-red-glow: rgba(220, 38, 38, 0.18);
  --pv11-red-glow-strong: rgba(220, 38, 38, 0.32);
  --pv11-text: #F1F5F9;
  --pv11-text-dim: rgba(241, 245, 249, 0.66);
  --pv11-text-mute: rgba(241, 245, 249, 0.42);
  --pv11-bg-card: rgba(255, 255, 255, 0.02);
  --pv11-bg-card-strong: rgba(255, 255, 255, 0.035);
  --pv11-border: rgba(255, 255, 255, 0.06);
  --pv11-border-strong: rgba(255, 255, 255, 0.10);
  --pv11-radius: 14px;
  --pv11-radius-sm: 10px;
  --pv11-radius-lg: 18px;
  --pv11-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset, 0 12px 32px rgba(0, 0, 0, 0.32);
  --pv11-shadow-pro: 0 1px 0 rgba(255, 255, 255, 0.06) inset, 0 0 0 1px rgba(220, 38, 38, 0.32), 0 18px 48px rgba(220, 38, 38, 0.18), 0 24px 64px rgba(0, 0, 0, 0.48);

  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, sans-serif;
  color: var(--pv11-text);
  letter-spacing: -0.01em;
  padding: clamp(56px, 10vw, 120px) 20px clamp(72px, 12vw, 160px);
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  isolation: isolate;
}

[data-theme="light"] .pv11 {
  --pv11-text: #1A1A1F;
  --pv11-text-dim: rgba(26, 26, 31, 0.68);
  --pv11-text-mute: rgba(26, 26, 31, 0.48);
  --pv11-bg-card: rgba(255, 255, 255, 0.62);
  --pv11-bg-card-strong: rgba(255, 255, 255, 0.78);
  --pv11-border: rgba(26, 26, 31, 0.10);
  --pv11-border-strong: rgba(26, 26, 31, 0.16);
}

/* ─── Eyebrow uppercase mono red avec hairline 24×1px ─────────────────── */
.pv11-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pv11-red);
  margin: 0 0 18px;
}

.pv11-eyebrow::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--pv11-red);
  flex-shrink: 0;
}

/* ─── HERO ─────────────────────────────────────────────────────────── */
.pv11-hero {
  text-align: center;
  padding: 0 0 clamp(48px, 8vw, 72px);
}

.pv11-hero__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 6.4vw, 4.2rem);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.04em;
  margin: 0 auto 20px;
  max-width: 18ch;
  color: var(--pv11-text);
}

.pv11-hero__title em {
  font-family: 'Instrument Serif', 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--pv11-text);
}

.pv11-hero__lede {
  font-size: clamp(1rem, 2.2vw, 1.18rem);
  line-height: 1.55;
  color: var(--pv11-text-dim);
  margin: 0 auto 22px;
  max-width: 56ch;
}

.pv11-hero__meta {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--pv11-text-mute);
  margin: 0;
}

.pv11-hero__meta strong {
  color: var(--pv11-red);
  font-weight: 500;
}

.pv11-hero .pv11-eyebrow {
  margin-bottom: 22px;
}

/* ─── 3 PLAN CARDS ─────────────────────────────────────────────────── */
.pv11-plans {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin: 0 auto;
  max-width: 1100px;
}

@media (min-width: 1024px) {
  .pv11-plans {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
  }
}

.pv11-plan {
  position: relative;
  background: var(--pv11-bg-card);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--pv11-border);
  border-radius: var(--pv11-radius-lg);
  padding: clamp(24px, 4vw, 32px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: var(--pv11-shadow);
  transition: transform 280ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 280ms cubic-bezier(0.22, 1, 0.36, 1), border-color 220ms ease;
  opacity: 0;
  animation: pv11-fade-up 600ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.pv11-plan--starter   { animation-delay: 0ms; }
.pv11-plan--pro       { animation-delay: 120ms; }
.pv11-plan--ultimate  { animation-delay: 240ms; }

@keyframes pv11-fade-up {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
  .pv11-plan { animation: none; opacity: 1; transform: none; transition: none; }
}

@media (min-width: 1024px) {
  .pv11-plan:hover {
    transform: translateY(-3px);
    border-color: var(--pv11-border-strong);
  }
}

/* Plan PRO featured */
.pv11-plan--pro {
  border-color: rgba(220, 38, 38, 0.32);
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.04), rgba(255, 255, 255, 0.02));
  box-shadow: var(--pv11-shadow-pro);
}

@media (min-width: 1024px) {
  .pv11-plan--pro:hover {
    transform: translateY(-5px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08) inset, 0 0 0 1px rgba(220, 38, 38, 0.42), 0 24px 56px rgba(220, 38, 38, 0.24), 0 32px 80px rgba(0, 0, 0, 0.52);
  }
}

.pv11-plan__badge {
  position: absolute;
  top: 14px;
  right: 14px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pv11-red);
  background: rgba(220, 38, 38, 0.10);
  border: 1px solid rgba(220, 38, 38, 0.28);
  border-radius: 999px;
  padding: 5px 10px;
  line-height: 1;
}

/* Plan header */
.pv11-plan__name {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pv11-text-dim);
  margin: 0;
}

.pv11-plan__tagline {
  font-family: 'Inter', sans-serif;
  font-size: 1.02rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--pv11-text);
  margin: 6px 0 0;
  line-height: 1.4;
}

.pv11-plan__tagline em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
}

/* Price block */
.pv11-plan__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin: 4px 0 0;
}

.pv11-plan__price-amount {
  font-family: 'Inter', sans-serif;
  font-size: clamp(2.2rem, 5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  color: var(--pv11-text);
  line-height: 1;
}

.pv11-plan__price-suffix {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--pv11-text-dim);
}

.pv11-plan__price-equiv {
  display: block;
  width: 100%;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--pv11-text-mute);
  margin-top: 4px;
}

/* Divider hairline */
.pv11-plan__divider {
  height: 1px;
  background: var(--pv11-border);
  border: none;
  margin: 4px 0;
}

/* Features list */
.pv11-plan__features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.pv11-plan__features li {
  position: relative;
  padding-left: 26px;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--pv11-text);
}

.pv11-plan__features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 14px;
  height: 8px;
  border-left: 1.5px solid var(--pv11-red);
  border-bottom: 1.5px solid var(--pv11-red);
  transform: rotate(-45deg);
}

.pv11-plan__features li strong {
  font-weight: 600;
  color: var(--pv11-text);
}

.pv11-plan__features li small {
  display: block;
  font-size: 0.82rem;
  color: var(--pv11-text-mute);
  margin-top: 2px;
  letter-spacing: 0.01em;
}

/* CTA */
.pv11-plan__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border-radius: 10px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  text-align: center;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, background 220ms ease;
  cursor: pointer;
  margin-top: auto;
  position: relative;
  z-index: 2;
}

.pv11-plan__cta--primary {
  background: linear-gradient(180deg, #DC2626 0%, #991B1B 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 8px 22px rgba(220, 38, 38, 0.32);
}

.pv11-plan__cta--primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.24) inset, 0 12px 32px rgba(220, 38, 38, 0.42);
}

.pv11-plan__cta--secondary {
  background: rgba(255, 255, 255, 0.04);
  color: var(--pv11-text);
  border: 1px solid var(--pv11-border-strong);
}

.pv11-plan__cta--secondary:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(220, 38, 38, 0.32);
}

[data-theme="light"] .pv11-plan__cta--secondary {
  background: rgba(26, 26, 31, 0.04);
  color: var(--pv11-text);
}

.pv11-plan__cta:focus-visible {
  outline: 2px solid var(--pv11-red);
  outline-offset: 3px;
}

/* Card-overlay link mobile (entire card click) */
.pv11-plan__overlay {
  position: absolute;
  inset: 0;
  border-radius: var(--pv11-radius-lg);
  z-index: 1;
  display: block;
  text-indent: -9999px;
  overflow: hidden;
}

@media (min-width: 1024px) {
  .pv11-plan__overlay { display: none; }
}

/* ─── COMPARATEUR ──────────────────────────────────────────────────── */
.pv11-compare {
  margin: clamp(72px, 12vw, 120px) auto 0;
  max-width: 1100px;
}

.pv11-compare__head {
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 56px);
}

.pv11-compare__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0 0 14px;
  color: var(--pv11-text);
}

.pv11-compare__title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.pv11-compare__lede {
  font-size: 1rem;
  color: var(--pv11-text-dim);
  margin: 0 auto;
  max-width: 56ch;
  line-height: 1.55;
}

/* Mobile cards stack (default) */
.pv11-compare__cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (min-width: 1024px) {
  .pv11-compare__cards { display: none; }
}

.pv11-compare-card {
  background: var(--pv11-bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--pv11-border);
  border-radius: var(--pv11-radius);
  overflow: hidden;
}

.pv11-compare-card[open] {
  border-color: var(--pv11-border-strong);
}

.pv11-compare-card > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 18px;
  cursor: pointer;
  list-style: none;
  min-height: 56px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--pv11-text);
}

.pv11-compare-card > summary::-webkit-details-marker { display: none; }

.pv11-compare-card > summary::after {
  content: "";
  width: 10px;
  height: 10px;
  border-right: 1.5px solid var(--pv11-text-dim);
  border-bottom: 1.5px solid var(--pv11-text-dim);
  transform: rotate(45deg);
  transition: transform 220ms ease;
  margin-left: 12px;
  flex-shrink: 0;
}

.pv11-compare-card[open] > summary::after {
  transform: rotate(-135deg);
}

.pv11-compare-card__price {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.82rem;
  color: var(--pv11-red);
  letter-spacing: 0.04em;
  margin-right: auto;
  margin-left: 12px;
}

.pv11-compare-card__body {
  padding: 0 18px 18px;
  border-top: 1px solid var(--pv11-border);
  margin-top: 0;
}

.pv11-compare-card__row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid var(--pv11-border);
  font-size: 0.92rem;
}

.pv11-compare-card__row:last-child { border-bottom: none; }

.pv11-compare-card__label {
  color: var(--pv11-text-dim);
  flex: 1;
}

.pv11-compare-card__value {
  color: var(--pv11-text);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.86rem;
  text-align: right;
  white-space: nowrap;
}

.pv11-compare-card__value--yes { color: var(--pv11-red); }
.pv11-compare-card__value--no  { color: var(--pv11-text-mute); }

/* Desktop table */
.pv11-compare__table-wrap {
  display: none;
}

@media (min-width: 1024px) {
  .pv11-compare__table-wrap {
    display: block;
    background: var(--pv11-bg-card);
    backdrop-filter: blur(8px);
    border: 1px solid var(--pv11-border);
    border-radius: var(--pv11-radius);
    overflow: hidden;
  }
}

.pv11-compare__table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.92rem;
}

.pv11-compare__table thead th {
  position: sticky;
  top: 0;
  background: rgba(15, 15, 20, 0.92);
  backdrop-filter: blur(12px);
  z-index: 2;
  text-align: left;
  padding: 18px 22px;
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pv11-text-dim);
  border-bottom: 1px solid var(--pv11-border-strong);
}

[data-theme="light"] .pv11-compare__table thead th {
  background: rgba(255, 255, 255, 0.92);
}

.pv11-compare__table thead th.pv11-compare__th-pro {
  color: var(--pv11-red);
  position: relative;
}

.pv11-compare__table tbody td {
  padding: 14px 22px;
  border-bottom: 1px solid var(--pv11-border);
  vertical-align: middle;
  color: var(--pv11-text);
}

.pv11-compare__table tbody tr:last-child td { border-bottom: none; }

.pv11-compare__table tbody tr.pv11-compare__group td {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pv11-text-mute);
  padding: 22px 22px 8px;
  background: rgba(255, 255, 255, 0.015);
  border-bottom: none;
}

.pv11-compare__yes {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
}

.pv11-compare__yes::before {
  content: "";
  width: 12px;
  height: 7px;
  border-left: 1.5px solid var(--pv11-red);
  border-bottom: 1.5px solid var(--pv11-red);
  transform: rotate(-45deg) translateY(-1px);
}

.pv11-compare__no {
  color: var(--pv11-text-mute);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
}

.pv11-compare__cell {
  color: var(--pv11-text);
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.86rem;
}

.pv11-compare__row-pro td {
  background: rgba(220, 38, 38, 0.03);
}

/* ─── TRUST BAND ───────────────────────────────────────────────────── */
.pv11-trust {
  margin: clamp(56px, 9vw, 96px) auto 0;
  max-width: 1100px;
  padding: clamp(24px, 4vw, 36px) 0;
  border-top: 1px solid var(--pv11-border);
  border-bottom: 1px solid var(--pv11-border);
}

.pv11-trust__title {
  font-family: 'JetBrains Mono', ui-monospace, monospace;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pv11-text-mute);
  text-align: center;
  margin: 0 0 22px;
}

.pv11-trust__row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0 4px 6px;
  scroll-snap-type: x mandatory;
}

.pv11-trust__row::-webkit-scrollbar { display: none; }

@media (min-width: 768px) {
  .pv11-trust__row {
    overflow-x: visible;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
  }
}

.pv11-trust__badge {
  flex-shrink: 0;
  scroll-snap-align: start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  background: var(--pv11-bg-card);
  border: 1px solid var(--pv11-border);
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-size: 0.86rem;
  letter-spacing: -0.005em;
  color: var(--pv11-text);
  white-space: nowrap;
}

.pv11-trust__badge::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--pv11-red);
  flex-shrink: 0;
}

/* ─── FAQ ──────────────────────────────────────────────────────────── */
.pv11-faq {
  margin: clamp(72px, 12vw, 120px) auto 0;
  max-width: 820px;
}

.pv11-faq__head {
  text-align: center;
  margin-bottom: clamp(36px, 6vw, 56px);
}

.pv11-faq__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.08;
  margin: 0;
  color: var(--pv11-text);
}

.pv11-faq__title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.pv11-faq__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pv11-faq__item {
  background: var(--pv11-bg-card);
  backdrop-filter: blur(8px);
  border: 1px solid var(--pv11-border);
  border-radius: var(--pv11-radius);
  overflow: hidden;
  transition: border-color 220ms ease;
}

.pv11-faq__item[open] {
  border-color: var(--pv11-border-strong);
}

.pv11-faq__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  cursor: pointer;
  list-style: none;
  min-height: 56px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  color: var(--pv11-text);
  letter-spacing: -0.005em;
}

.pv11-faq__q::-webkit-details-marker { display: none; }

.pv11-faq__q::after {
  content: "+";
  font-family: 'JetBrains Mono', monospace;
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--pv11-text-dim);
  transition: transform 220ms ease, color 220ms ease;
  flex-shrink: 0;
  line-height: 1;
}

.pv11-faq__item[open] .pv11-faq__q::after {
  content: "−";
  color: var(--pv11-red);
}

.pv11-faq__a {
  padding: 0 22px 20px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--pv11-text-dim);
}

.pv11-faq__a strong {
  color: var(--pv11-text);
  font-weight: 500;
}

/* ─── CTA FINAL ────────────────────────────────────────────────────── */
.pv11-final {
  margin: clamp(72px, 12vw, 120px) auto 0;
  max-width: 720px;
  text-align: center;
  padding: clamp(36px, 6vw, 56px) clamp(24px, 4vw, 40px);
  background: linear-gradient(180deg, rgba(220, 38, 38, 0.04), rgba(255, 255, 255, 0.01));
  border: 1px solid rgba(220, 38, 38, 0.18);
  border-radius: var(--pv11-radius-lg);
  position: relative;
  overflow: hidden;
}

.pv11-final::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% -20%, rgba(220, 38, 38, 0.18), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

.pv11-final > * { position: relative; z-index: 1; }

.pv11-final__title {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.6rem, 3.6vw, 2.2rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.12;
  margin: 0 0 14px;
  color: var(--pv11-text);
}

.pv11-final__title em {
  font-family: 'Instrument Serif', serif;
  font-style: italic;
  font-weight: 400;
}

.pv11-final__lede {
  font-size: 1rem;
  color: var(--pv11-text-dim);
  margin: 0 auto 26px;
  max-width: 50ch;
  line-height: 1.55;
}

.pv11-final__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  justify-content: center;
}

@media (min-width: 540px) {
  .pv11-final__actions { flex-direction: row; gap: 18px; }
}

.pv11-final__primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 26px;
  border-radius: 10px;
  background: linear-gradient(180deg, #DC2626 0%, #991B1B 100%);
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.18) inset, 0 10px 28px rgba(220, 38, 38, 0.36);
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  text-decoration: none;
  transition: transform 180ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease;
}

.pv11-final__primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.24) inset, 0 14px 38px rgba(220, 38, 38, 0.46);
}

.pv11-final__secondary {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 4px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--pv11-text);
  text-decoration: none;
  letter-spacing: -0.005em;
  transition: color 200ms ease, transform 200ms ease;
}

.pv11-final__secondary:hover {
  color: var(--pv11-red);
  transform: translateX(2px);
}

.pv11-final__secondary::after {
  content: "→";
  font-family: 'JetBrains Mono', monospace;
  margin-left: 4px;
  transition: transform 200ms ease;
}

.pv11-final__secondary:hover::after {
  transform: translateX(3px);
}

.pv11-final__primary:focus-visible,
.pv11-final__secondary:focus-visible {
  outline: 2px solid var(--pv11-red);
  outline-offset: 3px;
}

/* ─── A11y / focus visible ─────────────────────────────────────────── */
.pv11 :focus-visible {
  outline: 2px solid var(--pv11-red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Safe-area inset for iOS notch */
@supports (padding: max(0px)) {
  .pv11 {
    padding-left: max(20px, env(safe-area-inset-left));
    padding-right: max(20px, env(safe-area-inset-right));
  }
}

/* Print = mode lecture sobre */
@media print {
  .pv11 { padding: 24px; }
  .pv11-plan, .pv11-faq__item, .pv11-compare-card { break-inside: avoid; box-shadow: none; }
  .pv11-plan__cta, .pv11-final__primary, .pv11-final__secondary { display: none; }
}
