/* Proxy Guard — shell limpio estilo OmniRoute (grid + split) */
:root {
  --pg-bg: #f7f7f8;
  --pg-surface: #ffffff;
  --pg-text: #0f172a;
  --pg-muted: #64748b;
  --pg-border: #e5e7eb;
  --pg-accent: #e11d48;
  --pg-grad-a: #ec4899;
  --pg-grad-b: #a855f7;
  --pg-ring: #6366f1;
  --pg-radius: 14px;
  --pg-font: "Inter", system-ui, -apple-system, sans-serif;
  --pg-mono: "JetBrains Mono", ui-monospace, monospace;
  --pg-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 8px 24px rgba(15, 23, 42, 0.04);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html {
  overflow-x: clip;
  max-width: 100%;
}

html, body {
  min-height: 100%;
  font-family: var(--pg-font);
  color: var(--pg-text);
  background-color: var(--pg-bg);
  background-image:
    linear-gradient(to right, rgba(148, 163, 184, 0.14) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(148, 163, 184, 0.14) 1px, transparent 1px);
  background-size: 28px 28px;
  line-height: 1.5;
  max-width: 100%;
}

body {
  overflow-x: clip;
}

a { color: var(--pg-muted); text-decoration: none; }
a:hover { color: var(--pg-text); }

.pg-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* Login + acordeones debajo: no forzar altura viewport (evita hueco enorme) */
.pg-shell-login {
  min-height: auto;
}

.pg-shell-login .pg-pane {
  justify-content: flex-start;
  padding-top: clamp(1.5rem, 3.5vw, 2.5rem);
  padding-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

@media (max-width: 900px) {
  .pg-shell { grid-template-columns: 1fr; }
}

.pg-pane {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.pg-pane-left { max-width: 480px; width: 100%; margin: 0 auto; }
.pg-pane-left--center { max-width: 640px; text-align: center; }
.pg-pane-left--center .pg-brand { justify-content: center; margin-bottom: 1.25rem; }
.pg-pane--solo {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  align-items: center;
}

.pg-hero-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.pg-eu-act {
  width: min(260px, 72vw);
  height: auto;
  margin: 0 auto 1.15rem;
  border-radius: 16px;
  box-shadow: 0 12px 36px rgba(15, 23, 42, 0.12);
}

.pg-hero-kicker {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1d4ed8;
  margin: 0 0 0.45rem;
}

.pg-title--center {
  font-size: clamp(2.1rem, 5vw, 3rem);
  margin-bottom: 0.35rem;
}

.pg-hero-ria {
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--pg-text);
  margin: 0 0 0.75rem;
}

.pg-hero-lead {
  font-size: 1.18rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 0.65rem;
}

.pg-sub--center {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0.75rem;
}

.pg-hero-help {
  max-width: 50ch;
  margin: 0 auto 1.5rem;
  color: var(--pg-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.pg-home-cta--center {
  justify-content: center;
}

.pg-pane-right { max-width: 520px; width: 100%; margin: 0 auto; }

.pg-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 2rem;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--pg-text);
  text-decoration: none;
}

.pg-mark {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background: linear-gradient(135deg, var(--pg-accent), var(--pg-grad-b));
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  box-shadow: 0 6px 16px rgba(236, 72, 153, 0.28);
}

.pg-title {
  font-size: clamp(1.75rem, 3vw, 2.15rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin-bottom: 0.45rem;
}

.pg-sub {
  color: var(--pg-muted);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
}

.pg-field { margin-bottom: 1rem; }
.pg-field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
}

.pg-input-wrap { position: relative; }
.pg-input-wrap .pg-input-icon {
  position: absolute;
  right: 0.85rem;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  font-size: 0.95rem;
  pointer-events: none;
}

.pg-field input,
.pg-field textarea {
  width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 0.9rem;
  border: 1px solid var(--pg-border);
  border-radius: 12px;
  font: inherit;
  font-size: 0.92rem;
  background: #fff;
  color: var(--pg-text);
}

.pg-field textarea {
  min-height: 110px;
  resize: vertical;
  padding-right: 0.9rem;
  font-family: var(--pg-mono);
  font-size: 0.8rem;
}

.pg-field input:focus,
.pg-field textarea:focus {
  outline: none;
  border-color: var(--pg-ring);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.18);
}

.pg-hint {
  font-size: 0.75rem;
  color: #94a3b8;
  margin: 0.45rem 0 1.15rem;
}

.pg-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.8rem 1.1rem;
  border: none;
  border-radius: 12px;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  color: #fff;
  background: linear-gradient(90deg, var(--pg-grad-a), var(--pg-grad-b));
  box-shadow: 0 10px 24px rgba(168, 85, 247, 0.28);
  transition: transform 0.15s ease, box-shadow 0.15s ease, opacity 0.15s;
}

.pg-btn:hover { transform: translateY(-1px); box-shadow: 0 14px 28px rgba(168, 85, 247, 0.34); }
.pg-btn:disabled { opacity: 0.65; cursor: wait; transform: none; }

.pg-btn-ghost {
  background: #fff;
  color: var(--pg-text);
  border: 1px solid var(--pg-border);
  box-shadow: none;
  font-weight: 600;
}

.pg-btn-ghost:hover { box-shadow: var(--pg-shadow); }

.pg-link-row {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--pg-muted);
}

.pg-right-title {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.55rem;
}

.pg-right-lead {
  color: var(--pg-muted);
  font-size: 0.92rem;
  margin-bottom: 1.35rem;
  max-width: 42ch;
}

.pg-cards { display: flex; flex-direction: column; gap: 0.75rem; }

.pg-card {
  display: flex;
  gap: 0.85rem;
  align-items: flex-start;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--pg-border);
  border-radius: var(--pg-radius);
  padding: 0.95rem 1rem;
  box-shadow: var(--pg-shadow);
  backdrop-filter: blur(6px);
}

.pg-card-ico {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: rgba(236, 72, 153, 0.1);
  color: var(--pg-grad-a);
  font-size: 1rem;
}

.pg-card h3 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.pg-card p {
  font-size: 0.8rem;
  color: var(--pg-muted);
  line-height: 1.45;
}

/* App chrome */
.pg-app {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.pg-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.85rem clamp(1rem, 3vw, 1.75rem);
  background: rgba(255, 255, 255, 0.82);
  border-bottom: 1px solid var(--pg-border);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 20;
}

.pg-tabs { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.pg-tabs button {
  border: 1px solid var(--pg-border);
  background: #fff;
  color: var(--pg-muted);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
}
.pg-tabs button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(90deg, var(--pg-grad-a), var(--pg-grad-b));
}

.pg-main {
  flex: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(320px, 1.15fr);
  gap: 1.25rem;
  padding: 1.25rem clamp(1rem, 3vw, 1.75rem) 2rem;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}

@media (max-width: 900px) {
  .pg-main { grid-template-columns: 1fr; }
}

.pg-panel {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--pg-border);
  border-radius: 16px;
  box-shadow: var(--pg-shadow);
  padding: 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  min-height: 560px;
}

.pg-panel h2 {
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 0.25rem;
}

.pg-panel .sub {
  font-size: 0.84rem;
  color: var(--pg-muted);
  margin-bottom: 1rem;
}

.pg-chips { display: flex; flex-wrap: wrap; gap: 0.4rem; margin: 0.85rem 0; }
.pg-chip {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  color: #7e22ce;
}

.pg-meta { font-size: 0.8rem; color: var(--pg-muted); margin-top: 0.65rem; }

.pg-out {
  margin-top: 0.85rem;
  padding: 0.85rem;
  background: #fafafa;
  border: 1px solid var(--pg-border);
  border-radius: 12px;
  font-family: var(--pg-mono);
  font-size: 0.78rem;
  white-space: pre-wrap;
  min-height: 72px;
}

/* Chat */
.pg-chat {
  display: flex;
  flex-direction: column;
  min-height: 560px;
  height: calc(100vh - 7.5rem);
  max-height: 760px;
}

.pg-chat-log {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 0.25rem 0.15rem 0.85rem;
}

.pg-bubble {
  max-width: 92%;
  padding: 0.75rem 0.9rem;
  border-radius: 14px;
  font-size: 0.88rem;
  line-height: 1.45;
  border: 1px solid var(--pg-border);
  background: #fff;
}

.pg-bubble.user {
  align-self: flex-end;
  background: linear-gradient(135deg, #fdf2f8, #f5f3ff);
  border-color: #f5d0fe;
}

.pg-bubble.assistant {
  align-self: flex-start;
  background: #fff;
}

.pg-bubble .label {
  display: block;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #a855f7;
  margin-bottom: 0.3rem;
}

.pg-bubble.user .label { color: #db2777; }

.pg-bubble pre {
  margin-top: 0.45rem;
  padding: 0.55rem 0.65rem;
  background: #f8fafc;
  border-radius: 8px;
  font-family: var(--pg-mono);
  font-size: 0.74rem;
  white-space: pre-wrap;
  color: #334155;
}

.pg-chat-compose {
  display: flex;
  gap: 0.55rem;
  align-items: flex-end;
  border-top: 1px solid var(--pg-border);
  padding-top: 0.85rem;
  margin-top: auto;
}

.pg-chat-compose textarea {
  flex: 1;
  min-height: 52px;
  max-height: 140px;
  padding: 0.7rem 0.85rem;
  border: 1px solid var(--pg-border);
  border-radius: 12px;
  font: inherit;
  font-size: 0.88rem;
  resize: vertical;
}

.pg-chat-compose textarea:focus {
  outline: none;
  border-color: var(--pg-ring);
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

.pg-chat-compose .pg-btn {
  width: auto;
  min-width: 110px;
  padding: 0.7rem 1rem;
}

.pg-empty-chat {
  margin: auto;
  text-align: center;
  color: var(--pg-muted);
  font-size: 0.9rem;
  max-width: 28ch;
  padding: 2rem 1rem;
}

/* Accordion — ver más / cómo funciona */
.pg-more {
  max-width: 1100px;
  margin: 0.35rem auto 0;
  padding: 0 1.25rem 1.75rem;
}

.pg-accordion {
  border: 1px solid var(--pg-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--pg-shadow);
  overflow: hidden;
}

.pg-accordion-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: none;
  background: transparent;
  font: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pg-text);
  cursor: pointer;
  text-align: left;
}

.pg-accordion-toggle:hover { background: #fafafa; }

.pg-accordion-toggle .chev {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  border: 1px solid var(--pg-border);
  display: grid;
  place-items: center;
  font-size: 0.85rem;
  color: var(--pg-muted);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.pg-accordion.open .pg-accordion-toggle .chev { transform: rotate(180deg); }

.pg-accordion-body {
  display: none;
  border-top: 1px solid var(--pg-border);
  padding: 1.25rem 1.25rem 1.5rem;
}

.pg-accordion.open .pg-accordion-body { display: block; }

.pg-shell-home {
  min-height: auto;
  padding-bottom: 1rem;
}

.pg-shell-home--center {
  grid-template-columns: 1fr;
  justify-items: center;
}

.pg-more--center {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.pg-cards--center {
  margin: 0 auto 1.5rem;
  max-width: 100%;
}

/* Pasaporte de IA regulada */
.pg-passport .pass-cover {
  background: linear-gradient(155deg, #0b1f4d 0%, #1d4ed8 48%, #0369a1 100%);
  color: #fff;
  padding: 1.5rem 1.25rem 1.35rem;
  border-radius: 14px;
  margin-bottom: 1.35rem;
  text-align: center;
}
.pg-passport .pass-cover-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.85rem;
}
.pg-passport .pass-stamp {
  width: 72px;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  background: #0a1a3a;
}
.pg-passport .pass-doc {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-bottom: 0.25rem;
}
.pg-passport .pass-cover h2 {
  font-size: clamp(1.35rem, 3vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.3rem;
}
.pg-passport .pass-cover .tagline {
  font-size: 1rem;
  font-weight: 600;
  opacity: 0.95;
}
.pg-passport .pass-cover .lead {
  font-size: 0.9rem;
  opacity: 0.9;
  max-width: 52ch;
  margin: 0 auto 1rem;
  line-height: 1.5;
}
.pg-passport .pass-risks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.45rem;
}
.pg-passport .pass-risk {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.1);
}
.pg-passport .pass-risk--high { background: rgba(239, 68, 68, 0.28); }
.pg-passport .pass-risk--limited { background: rgba(245, 158, 11, 0.28); }
.pg-passport .pass-risk--minimal { background: rgba(34, 197, 94, 0.28); }

.pg-dossier .segments--passport {
  grid-template-columns: repeat(2, 1fr);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 700px) {
  .pg-dossier .segments--passport { grid-template-columns: 1fr; }
}
.pg-passport .seg-card--pass {
  border-color: #bfdbfe;
  text-align: left;
}
.pg-passport .pass-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1d4ed8;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  padding: 0.2rem 0.55rem;
  margin-bottom: 0.55rem;
}
.pg-passport .seg-card--pass h4 {
  color: #1e3a8a;
}

.pg-dossier .wrap { max-width: 100%; padding: 0; }
.pg-dossier .hero {
  background: linear-gradient(155deg, #042f2e 0%, #0f766e 45%, #0ea5e9 100%);
  color: #fff;
  padding: 1.75rem 1.25rem 2rem;
  border-radius: 14px;
  margin-bottom: 1.25rem;
}
.pg-dossier .hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 1.25rem;
  align-items: center;
}
@media (max-width: 800px) {
  .pg-dossier .hero-inner { grid-template-columns: 1fr; }
}
.pg-dossier .brand-row { display: flex; align-items: center; gap: 0.65rem; margin-bottom: 0.75rem; }
.pg-dossier .brand-mark {
  width: 40px; height: 40px; background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28); border-radius: 11px;
  display: grid; place-items: center; font-weight: 800; font-size: 0.65rem;
}
.pg-dossier .hero h2 { font-size: 1.45rem; font-weight: 800; letter-spacing: -0.02em; margin-bottom: 0.35rem; }
.pg-dossier .hero .tagline { font-size: 1rem; font-weight: 600; opacity: 0.95; margin-bottom: 0.45rem; }
.pg-dossier .hero .lead { font-size: 0.88rem; opacity: 0.88; margin-bottom: 0; }
.pg-dossier .hero-panel {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.18);
  border-radius: 12px; padding: 1rem; font-family: var(--pg-mono); font-size: 0.74rem; line-height: 1.55;
}
.pg-dossier .hero-panel .in { color: #5eead4; display: block; }
.pg-dossier .hero-panel .out { color: #fde68a; margin-top: 0.65rem; display: block; }
.pg-dossier .flow-card {
  background: #fff; border: 1px solid #99f6e4; border-radius: 12px;
  padding: 0.95rem 1.1rem; margin-bottom: 1.5rem;
  display: flex; flex-wrap: wrap; align-items: center; justify-content: center;
  gap: 0.45rem 0.65rem; font-size: 0.85rem; color: var(--pg-muted);
}
.pg-dossier .flow-card strong { color: var(--pg-text); }
.pg-dossier h3.sec {
  font-size: 1.15rem; font-weight: 800; text-align: center; margin: 0 0 0.35rem;
}
.pg-dossier p.sec-lead {
  text-align: center; color: var(--pg-muted); font-size: 0.9rem;
  max-width: 640px; margin: 0 auto 1.25rem;
}
.pg-dossier .segments {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.85rem; margin-bottom: 1.5rem;
}
@media (max-width: 768px) {
  .pg-dossier .segments { grid-template-columns: 1fr; }
}
.pg-dossier .seg-card {
  background: #fff; border: 1px solid #99f6e4; border-radius: 12px; padding: 1.1rem 1rem;
}
.pg-dossier .seg-card h4 { font-size: 0.95rem; font-weight: 800; margin-bottom: 0.3rem; color: #0f766e; }
.pg-dossier .seg-card p { font-size: 0.82rem; color: var(--pg-muted); margin-bottom: 0.55rem; }
.pg-dossier .seg-card ul { font-size: 0.8rem; color: var(--pg-muted); padding-left: 1.05rem; }
.pg-dossier .seg-card li { margin-bottom: 0.2rem; }
.pg-dossier .features {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 0.85rem; margin-bottom: 1.25rem;
}
@media (max-width: 640px) {
  .pg-dossier .features { grid-template-columns: 1fr; }
}
.pg-dossier .feat {
  background: #fff; border: 1px solid #99f6e4; border-radius: 12px; padding: 1rem;
}
.pg-dossier .feat h4 { font-size: 0.9rem; font-weight: 700; margin-bottom: 0.25rem; }
.pg-dossier .feat p { font-size: 0.82rem; color: var(--pg-muted); }
.pg-dossier .cta-band {
  background: linear-gradient(135deg, #0b1f4d, #1d4ed8);
  color: #fff; border-radius: 14px; padding: 1.5rem; text-align: center;
}
.pg-dossier .cta-band h3 { font-size: 1.15rem; margin-bottom: 0.35rem; }
.pg-dossier .cta-band p { opacity: 0.88; font-size: 0.88rem; margin-bottom: 1rem; }
.pg-dossier .cta-band .pg-btn { width: auto; display: inline-flex; min-width: 200px; }

/* Acordeón visual — imagen + descripción corporativa */
.pg-more-stack { display: flex; flex-direction: column; gap: 0.75rem; }

.pg-visual {
  padding: 0.35rem 0 0.25rem;
}

.pg-visual-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1rem;
}

.pg-visual-brand .pg-mark { width: 36px; height: 36px; font-size: 0.72rem; }

.pg-visual-brand b {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--pg-text);
}

.pg-visual-brand small {
  display: block;
  font-size: 0.75rem;
  color: var(--pg-muted);
  font-weight: 500;
}

.pg-visual-hero {
  width: 100%;
  display: block;
  border-radius: 14px;
  margin: 0 0 1.15rem;
  background: #f8fafc;
  object-fit: contain;
  max-height: 420px;
}

.pg-visual-title {
  font-size: clamp(1.35rem, 2.5vw, 1.7rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin: 0 0 0.55rem;
  color: var(--pg-text);
}

.pg-visual-sub {
  color: var(--pg-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  max-width: 62ch;
  margin: 0 0 1.15rem;
}

.pg-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

@media (max-width: 640px) {
  .pg-visual-grid { grid-template-columns: 1fr; }
}

.pg-visual-item {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  padding: 0.75rem 0.8rem;
  background: #f8fafc;
  border: 1px solid var(--pg-border);
  border-radius: 12px;
}

.pg-visual-item .ico {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  background: rgba(236, 72, 153, 0.1);
  display: grid; place-items: center; font-size: 0.95rem;
}

.pg-visual-item h5 {
  margin: 0 0 0.15rem;
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--pg-text);
}

.pg-visual-item p {
  margin: 0;
  font-size: 0.74rem;
  color: var(--pg-muted);
  line-height: 1.4;
}


/* Privacy powered · OCA-I net */
.pg-privacy-powered { padding-top: 0.25rem; }
.pp-hero { margin-bottom: 1.1rem; }
.pp-kicker {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7e22ce;
  background: #faf5ff;
  border: 1px solid #e9d5ff;
  border-radius: 999px;
  padding: 0.28rem 0.7rem;
  margin-bottom: 0.6rem;
}
.pp-hero h2 {
  font-size: clamp(1.2rem, 2.3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 0.4rem;
}
.pp-lead { color: var(--pg-muted); font-size: 0.94rem; max-width: 64ch; margin-bottom: 0.5rem; }
.pp-ref { font-size: 0.78rem; color: var(--pg-muted); }
.pp-ref a { font-weight: 600; color: #7e22ce; }

.pp-apertus {
  border: 1px solid #cce7e3;
  border-radius: 16px;
  background: linear-gradient(145deg, #f0fdfa 0%, #fff 65%);
  padding: 1.1rem 1.15rem;
  margin: 0 0 1.25rem;
}
.pp-apertus-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
  background: #ccfbf1;
  color: #0f766e;
  margin-bottom: 0.55rem;
}
.pp-apertus h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.35rem; }
.pp-apertus > p { color: var(--pg-muted); font-size: 0.9rem; margin-bottom: 0.65rem; }
.pp-apertus-meta {
  margin: 0 0 0.75rem;
  padding-left: 1.1rem;
  font-size: 0.86rem;
}
.pp-apertus-meta li { margin-bottom: 0.28rem; }
.pp-apertus-fit {
  font-size: 0.86rem !important;
  color: var(--pg-text) !important;
  font-weight: 500;
  margin-bottom: 0.85rem !important;
}

.pp-sec { font-size: 1.02rem; font-weight: 800; margin-bottom: 0.3rem; }
.pp-sec-lead { color: var(--pg-muted); font-size: 0.88rem; margin-bottom: 0.75rem; max-width: 70ch; }

.pp-inner-stack { display: flex; flex-direction: column; gap: 0.5rem; margin-bottom: 1.15rem; }
.pp-inner {
  border: 1px solid var(--pg-border);
  border-radius: 12px;
  background: #fafafa;
  overflow: hidden;
}
.pp-inner-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border: none;
  background: transparent;
  font: inherit;
  font-weight: 650;
  font-size: 0.9rem;
  text-align: left;
  cursor: pointer;
  color: var(--pg-text);
}
.pp-inner-toggle:hover { background: #f3f4f6; }
.pp-inner-toggle .chev {
  width: 24px; height: 24px; border-radius: 999px; border: 1px solid var(--pg-border);
  display: grid; place-items: center; font-size: 0.75rem; color: var(--pg-muted);
  flex-shrink: 0; transition: transform 0.15s ease;
}
.pp-inner.open .pp-inner-toggle .chev { transform: rotate(180deg); }
.pp-inner-body {
  display: none;
  border-top: 1px solid var(--pg-border);
  padding: 0.85rem 1rem 1rem;
  background: #fff;
}
.pp-inner.open .pp-inner-body { display: block; }
.pp-inner-body p { font-size: 0.88rem; color: var(--pg-muted); margin-bottom: 0.5rem; }
.pp-inner-body ul { margin: 0; padding-left: 1.1rem; font-size: 0.86rem; }
.pp-inner-body li { margin-bottom: 0.28rem; }

.pp-cta {
  border: 1px solid #e9d5ff;
  border-radius: 14px;
  background: linear-gradient(135deg, #faf5ff 0%, #fff 70%);
  padding: 1.05rem 1.1rem;
}
.pp-cta h3 { font-size: 1rem; font-weight: 800; margin-bottom: 0.3rem; }
.pp-cta p { font-size: 0.88rem; color: var(--pg-muted); margin-bottom: 0.8rem; }
.pp-cta-row { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.pp-cta-row .pg-btn { width: auto; min-width: 0; }


/* EU AI Act · plazos y multas */
.pg-eu-ai { padding-top: 0.25rem; }
.eu-status-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0 0 1.25rem;
}
@media (max-width: 800px) {
  .eu-status-grid { grid-template-columns: 1fr; }
}
.eu-status {
  border-radius: 14px;
  padding: 0.95rem 1rem;
  border: 1px solid var(--pg-border);
  background: #fff;
}
.eu-status h3 {
  font-size: 0.92rem;
  font-weight: 800;
  margin: 0.45rem 0 0.3rem;
}
.eu-status p {
  margin: 0;
  font-size: 0.82rem;
  color: var(--pg-muted);
  line-height: 1.45;
}
.eu-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
}
.eu-status-must {
  border-color: #fecaca;
  background: linear-gradient(160deg, #fef2f2 0%, #fff 70%);
}
.eu-status-must .eu-badge { background: #fee2e2; color: #b91c1c; }
.eu-status-rec {
  border-color: #bbf7d0;
  background: linear-gradient(160deg, #f0fdf4 0%, #fff 70%);
}
.eu-status-rec .eu-badge { background: #dcfce7; color: #15803d; }
.eu-status-fine {
  border-color: #fde68a;
  background: linear-gradient(160deg, #fffbeb 0%, #fff 70%);
}
.eu-status-fine .eu-badge { background: #fef3c7; color: #b45309; }

.eu-timeline {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.eu-timeline li {
  display: grid;
  grid-template-columns: 5.5rem auto;
  grid-template-rows: auto auto;
  column-gap: 0.75rem;
  row-gap: 0.2rem;
  align-items: center;
  padding: 0.75rem 0.9rem;
  border: 1px solid var(--pg-border);
  border-radius: 12px;
  background: #fafafa;
}
.eu-timeline time {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--pg-text);
  grid-row: 1 / 3;
  align-self: start;
  padding-top: 0.15rem;
}
.eu-timeline p {
  grid-column: 2;
  margin: 0;
  font-size: 0.84rem;
  color: var(--pg-muted);
  line-height: 1.4;
}
.eu-tag {
  display: inline-block;
  width: fit-content;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0.18rem 0.45rem;
  border-radius: 999px;
}
.eu-tag-live { background: #e0e7ff; color: #3730a3; }
.eu-tag-must { background: #fee2e2; color: #b91c1c; }

.eu-who {
  margin: 0 0 1.2rem;
  padding-left: 1.15rem;
  font-size: 0.88rem;
}
.eu-who li { margin-bottom: 0.35rem; }

.eu-risk-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.6rem;
  margin: 0 0 1.2rem;
}
@media (max-width: 640px) {
  .eu-risk-grid { grid-template-columns: 1fr; }
}
.eu-risk-grid > div {
  padding: 0.8rem 0.9rem;
  border: 1px solid var(--pg-border);
  border-radius: 12px;
  background: #fff;
}
.eu-risk-grid h4 {
  margin: 0 0 0.25rem;
  font-size: 0.86rem;
  font-weight: 800;
}
.eu-risk-grid p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--pg-muted);
  line-height: 1.4;
}

/* Top site navigation */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 0.7rem 1.25rem;
  background: rgba(247, 247, 248, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--pg-border);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.7) inset;
}
.site-nav__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 800;
  color: var(--pg-text);
  text-decoration: none;
  margin-right: auto;
}
.site-nav__logo {
  width: 32px;
  height: 32px;
  display: block;
  flex-shrink: 0;
}
.site-nav__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 0.08rem;
}
.site-nav__brand-text strong {
  font-size: 0.95rem;
  font-weight: 800;
}
.site-nav__brand-text small {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
}
.site-nav__brand .pg-mark {
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 8px;
  background: linear-gradient(135deg, #0b1f4d, #1d4ed8);
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 0.68rem;
  font-weight: 800;
}
.site-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 1rem;
}
.site-nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--pg-muted);
  text-decoration: none;
}
.site-nav__links a:hover {
  color: var(--pg-text);
}
.site-nav__lang,
.site-nav__country {
  flex-shrink: 0;
}
@media (max-width: 720px) {
  .site-nav {
    padding: 0.65rem 0.85rem;
  }
  .site-nav__links {
    width: 100%;
    order: 3;
    padding-top: 0.35rem;
    border-top: 1px solid var(--pg-border);
  }
}

/* Home: single column host for open book */
.pg-shell.pg-shell-home {
  display: block;
  min-height: auto;
  max-width: 1180px;
  margin: 0 auto;
  padding: 1.25rem 1rem 0.75rem;
}

.pg-spain-hub {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  justify-content: center;
  margin: 0.35rem 0 0.85rem;
  padding: 0.55rem 0.75rem;
  border-radius: 12px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  font-size: 0.8rem;
  color: #7f1d1d;
  font-weight: 600;
  max-width: 36ch;
}

.pg-brand--compact {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-weight: 800;
  font-size: 0.92rem;
  color: var(--pg-text);
  margin-bottom: 0.85rem;
  text-decoration: none;
}
.pg-brand__logo {
  width: 28px;
  height: 28px;
  display: block;
}

/* Open book: left (consultoría) + spine + right (pasaporte) */
.open-book {
  display: grid;
  grid-template-columns: 1fr 14px 1fr;
  align-items: stretch;
  border-radius: 12px 16px 16px 12px;
  overflow: hidden;
  background: #1a2744;
  box-shadow:
    0 22px 48px rgba(15, 23, 42, 0.18),
    0 0 0 1px rgba(15, 23, 42, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  min-height: 420px;
}
.open-book__spine {
  background:
    linear-gradient(90deg,
      #0b1220 0%,
      #475569 22%,
      #94a3b8 48%,
      #475569 78%,
      #0b1220 100%);
  box-shadow:
    inset 3px 0 8px rgba(0, 0, 0, 0.35),
    inset -3px 0 8px rgba(0, 0, 0, 0.35);
  position: relative;
  z-index: 2;
}
.open-book__spine::before {
  content: "";
  position: absolute;
  inset: 8% 35% 8% 35%;
  border-radius: 2px;
  background: linear-gradient(180deg, transparent, rgba(255,255,255,0.18), transparent);
  opacity: 0.5;
}
.open-book__page {
  background:
    radial-gradient(ellipse at 50% 0%, rgba(255, 255, 255, 0.55), transparent 55%),
    linear-gradient(180deg, #fffdf8 0%, #f3ebe0 100%);
  color: #1e293b;
  min-width: 0;
}
.open-book__page--left {
  box-shadow: inset -18px 0 28px -18px rgba(15, 23, 42, 0.18);
}
.open-book__page--right {
  box-shadow: inset 18px 0 28px -18px rgba(15, 23, 42, 0.18);
}
.open-book__page-inner {
  padding: clamp(1rem, 2.5vw, 1.6rem) clamp(0.9rem, 2vw, 1.35rem);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.open-book__page--left .pg-eu-act {
  width: min(220px, 70%);
  margin-bottom: 0.85rem;
}
@media (max-width: 900px) {
  .open-book {
    grid-template-columns: 1fr;
    grid-template-rows: auto 10px auto;
    border-radius: 14px;
  }
  .open-book__spine {
    min-height: 10px;
    background: linear-gradient(180deg, #0b1220, #64748b, #0b1220);
  }
  .open-book__page--left,
  .open-book__page--right {
    box-shadow: none;
  }
}

.pass-open-hint {
  text-align: left;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e3a8a;
  margin: 0 0 0.35rem;
}
.pass-page-inner--formal {
  align-items: stretch;
  text-align: left;
  gap: 0.85rem;
}
.pass-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.75rem;
  align-items: start;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #d6cbb8;
}
.pass-head__mark {
  flex-shrink: 0;
}
.pass-eu-mini {
  width: 48px;
  height: auto;
  border-radius: 6px;
  margin: 0;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.12);
  display: block;
}
.pass-head__meta {
  min-width: 0;
}
.pass-doc {
  font-size: 0.62rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #64748b;
  margin: 0 0 0.2rem;
}
.open-book__page--right h2,
.pass-page-inner h2 {
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 0.2rem;
  color: #0f172a;
  line-height: 1.25;
}
.pass-tagline {
  font-size: 0.8rem;
  font-weight: 500;
  color: #475569;
  margin: 0;
  line-height: 1.35;
}

.pass-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.75rem;
  margin: 0;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid #e7dcc8;
  border-radius: 8px;
}
.pass-field {
  margin: 0;
  min-width: 0;
}
.pass-field--full {
  grid-column: 1 / -1;
}
.pass-field dt {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #94a3b8;
  margin: 0 0 0.15rem;
}
.pass-field dd {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 700;
  color: #0f172a;
}

.pass-risks--formal {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-top: 0.15rem;
}
.pass-risks--formal .pass-risk {
  font-size: 0.68rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 4px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #334155;
  letter-spacing: 0.01em;
}
.pass-risks--formal .pass-risk--high {
  border-color: #fca5a5;
  background: #fef2f2;
  color: #991b1b;
  border-left: 3px solid #dc2626;
}
.pass-risks--formal .pass-risk--limited {
  border-color: #fcd34d;
  background: #fffbeb;
  color: #92400e;
  border-left: 3px solid #d97706;
}
.pass-risks--formal .pass-risk--minimal {
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
  border-left: 3px solid #16a34a;
}

.pass-registry {
  width: 100%;
  margin-top: 0.15rem;
}
.pass-registry__head {
  margin-bottom: 0.55rem;
}
.pass-registry__head h3 {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: 0 0 0.25rem;
  color: #0f172a;
}
.pass-visas-lead {
  font-size: 0.72rem;
  color: #64748b;
  margin: 0;
  max-width: none;
  line-height: 1.4;
}

.pass-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.74rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  overflow: hidden;
}
.pass-table thead {
  background: #0f172a;
  color: #f8fafc;
}
.pass-table th {
  text-align: left;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.45rem 0.55rem;
  border: 0;
}
.pass-table td {
  padding: 0.42rem 0.55rem;
  border-top: 1px solid #eef2f7;
  color: #1e293b;
  vertical-align: middle;
}
.pass-table tbody tr:nth-child(even) {
  background: #f8fafc;
}
.pass-table tbody tr:hover {
  background: #f1f5f9;
}
.pass-table tbody tr.pass-row--hub {
  background: #eff6ff;
}
.pass-table tbody tr.pass-row--featured {
  background: #fef2f2;
  box-shadow: inset 3px 0 0 #dc2626;
}
.pass-table tbody tr.pass-row--featured td {
  font-weight: 700;
}
.pass-table td:last-child,
.pass-table th:last-child {
  text-align: right;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  width: 3.2rem;
}
.pass-jur {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}
.pass-jur .flag {
  font-size: 0.95rem;
  line-height: 1;
}

.pass-registry__foot {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0.55rem 0 0;
  font-size: 0.66rem;
  color: #64748b;
  line-height: 1.35;
}
.pass-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.15rem 0.4rem;
  border: 1px solid #1e3a8a;
  color: #1e3a8a;
  font-weight: 800;
  font-size: 0.58rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: 3px;
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .pass-fields {
    grid-template-columns: 1fr;
  }
  .pass-head {
    grid-template-columns: 1fr;
  }
}

/* —— Lumo / aiprivacy landing hero —— */
.lumo-home {
  max-width: none !important;
  width: 100%;
  padding: 0 !important;
  margin: 0 !important;
}

.lumo-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: clamp(3.5rem, 10vw, 6.5rem) 1.5rem clamp(2.75rem, 7vw, 4.5rem);
  border-radius: 0;
  color: #f8fafc;
  background:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(56, 189, 248, 0.22), transparent 55%),
    radial-gradient(ellipse 50% 40% at 85% 80%, rgba(225, 29, 72, 0.18), transparent 50%),
    linear-gradient(165deg, #07111f 0%, #0f2744 48%, #0b1a2e 100%);
}

.lumo-hero__glow {
  position: absolute;
  inset: auto 10% -40% 10%;
  height: 55%;
  background: radial-gradient(ellipse at center, rgba(56, 189, 248, 0.15), transparent 70%);
  pointer-events: none;
}

.lumo-kicker {
  position: relative;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #7dd3fc;
  margin: 0 0 1rem;
}

.lumo-title {
  position: relative;
  font-size: clamp(2.15rem, 5.5vw, 3.55rem);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.08;
  max-width: 16ch;
  margin: 0 auto 1.1rem;
  color: #fff;
}

.lumo-lead {
  position: relative;
  font-size: clamp(1.05rem, 2.2vw, 1.28rem);
  color: #cbd5e1;
  max-width: 34ch;
  margin: 0 auto 1.15rem;
  line-height: 1.45;
}

.lumo-trust {
  position: relative;
  list-style: none;
  margin: 0 auto 1.5rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  justify-content: center;
  max-width: 42rem;
}

.lumo-trust li {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #e0f2fe;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid rgba(125, 211, 252, 0.35);
  background: rgba(14, 165, 233, 0.12);
}

.lumo-cta {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1.35rem;
}

.lumo-btn {
  width: auto !important;
  min-width: 220px;
  background: linear-gradient(135deg, #38bdf8, #0ea5e9) !important;
  box-shadow: 0 10px 28px rgba(14, 165, 233, 0.35) !important;
  color: #04111f !important;
  font-weight: 800;
}

.lumo-btn:hover {
  filter: brightness(1.06);
}

.lumo-btn-ghost {
  width: auto !important;
  min-width: 0;
  background: transparent !important;
  border: 1px solid rgba(148, 163, 184, 0.45) !important;
  color: #e2e8f0 !important;
  box-shadow: none !important;
}

.lumo-btn-ghost:hover {
  border-color: #7dd3fc !important;
  color: #fff !important;
}

.lumo-btn--sm {
  min-width: 180px;
  margin-top: 0.35rem;
}

.lumo-badge {
  position: relative;
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: #94a3b8;
  padding: 0.35rem 0.85rem;
  border: 1px solid rgba(148, 163, 184, 0.28);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.35);
}

.lumo-block {
  padding: clamp(2.25rem, 5vw, 3.5rem) 1.35rem;
  text-align: center;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}

.lumo-block--yours,
.lumo-block--diff,
.lumo-block--help,
.lumo-block--products {
  max-width: none;
  width: 100%;
}

.lumo-block--products {
  background:
    linear-gradient(180deg, #f8fafc 0%, #fff 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.lumo-block--products > h2,
.lumo-block--products > .lumo-block__lead {
  max-width: 36ch;
  margin-left: auto;
  margin-right: auto;
}

.lumo-products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  max-width: 860px;
  margin: 1.5rem auto 0;
  text-align: left;
}

.lumo-product {
  padding: 1.35rem 1.25rem 1.4rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.lumo-product__tag {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0284c7;
}

.lumo-product h3 {
  margin: 0;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.lumo-product p:not(.lumo-product__tag) {
  margin: 0;
  flex: 1;
  font-size: 0.95rem;
  line-height: 1.5;
  color: #475569;
}

.lumo-product .lumo-btn {
  align-self: flex-start;
  margin-top: 0.35rem;
}

@media (max-width: 720px) {
  .lumo-products {
    grid-template-columns: 1fr;
  }
}

.lumo-block--yours > *,
.lumo-block--diff > *:not(.lumo-table-wrap),
.lumo-block--help > *:not(.lumo-help-grid) {
  max-width: 54ch;
  margin-left: auto;
  margin-right: auto;
}

.lumo-block--diff > h2,
.lumo-block--help > h2,
.lumo-block--yours > h2 {
  max-width: 16ch;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lumo-block--diff .lumo-table-wrap,
.lumo-block--help .lumo-help-grid,
.lumo-block--diff .lumo-btn,
.lumo-block--yours .lumo-btn {
  margin-left: auto;
  margin-right: auto;
}

.lumo-block h2 {
  font-size: clamp(1.55rem, 3.2vw, 2.1rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-top: 0;
  margin-bottom: 0.85rem;
  color: var(--pg-text);
}

.lumo-block > p,
.lumo-block__lead {
  max-width: 54ch;
  margin: 0 auto 1.35rem;
  color: var(--pg-muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.lumo-block--yours {
  background: rgba(255, 255, 255, 0.72);
  border-bottom: 1px solid var(--pg-border);
}

.lumo-block--diff {
  background: #fff;
  border-bottom: 1px solid var(--pg-border);
}

.lumo-table-wrap {
  overflow-x: auto;
  margin: 0 auto 1.5rem;
  max-width: 920px;
  border: 1px solid var(--pg-border);
  border-radius: 14px;
  background: #fafafa;
  box-shadow: var(--pg-shadow);
}

.lumo-compare {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
  min-width: 640px;
}

.lumo-compare th,
.lumo-compare td {
  padding: 0.75rem 0.65rem;
  border-bottom: 1px solid var(--pg-border);
  text-align: center;
  vertical-align: middle;
}

.lumo-compare thead th {
  font-weight: 800;
  color: var(--pg-text);
  background: #f1f5f9;
}

.lumo-compare thead th:nth-child(2) {
  color: #0369a1;
  background: #e0f2fe;
}

.lumo-compare tbody th {
  text-align: left;
  font-weight: 600;
  color: var(--pg-text);
  max-width: 22ch;
  padding-left: 1rem;
}

.lumo-compare td.yes {
  color: #0369a1;
  font-weight: 800;
  font-size: 1.05rem;
  background: rgba(224, 242, 254, 0.45);
}

.lumo-compare tbody tr:last-child th,
.lumo-compare tbody tr:last-child td {
  border-bottom: none;
}

.lumo-help-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto;
  text-align: left;
}

.lumo-help-grid article {
  padding: 1.15rem 1.2rem;
  border: 1px solid var(--pg-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--pg-shadow);
}

.lumo-help-grid h3 {
  font-size: 1.02rem;
  font-weight: 800;
  margin: 0 0 0.4rem;
  color: var(--pg-text);
}

.lumo-help-grid p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--pg-muted);
  line-height: 1.45;
}

.lumo-audience {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  max-width: 860px;
  margin: 0 auto 1.5rem;
  text-align: center;
}

.lumo-audience__card {
  padding: 1.25rem 1.3rem;
  border: 1px solid var(--pg-border);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: var(--pg-shadow);
  text-align: center;
}

.lumo-audience__kicker {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #0369a1;
  margin: 0 0 0.45rem;
}

.lumo-audience__card h3 {
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 auto 0.55rem;
  color: var(--pg-text);
  line-height: 1.25;
  text-align: center;
  max-width: 18ch;
}

.lumo-audience__card p {
  margin: 0 auto;
  font-size: 0.92rem;
  color: var(--pg-muted);
  line-height: 1.5;
  max-width: 36ch;
}

.lumo-cta--block {
  margin-top: 0.25rem;
}

.lumo-block--yours > .lumo-audience,
.lumo-block--yours > .lumo-cta {
  max-width: none;
}

@media (max-width: 640px) {
  .lumo-audience,
  .lumo-help-grid {
    grid-template-columns: 1fr;
  }
}

#passportAccordion .pg-accordion-body {
  padding: 0.85rem;
  background: #f1f5f9;
}

#passportAccordion .open-book {
  margin: 0;
}
