/* ── Privacy Policy Modal ─────────────────────────────────────────────── */

body.privacy-modal-no-scroll { overflow: hidden; }

/* ── Overlay ─────────────────────────────────────────────────────────── */
.privacy-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0, 0, 0, 0.60);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}
.privacy-modal-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

/* ── Modal shell ─────────────────────────────────────────────────────── */
.privacy-modal {
  position: relative;
  background: #fff;
  border-radius: 18px;
  width: 84%;
  height: 92%;
  max-width: calc(100vw - 32px);
  max-height: calc(100vh - 32px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  box-shadow: 0 24px 72px rgba(0, 0, 0, 0.28);
  transform: translateY(28px) scale(0.98);
  opacity: 0;
  transition: transform 0.30s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.28s ease;
}
.privacy-modal-overlay.show .privacy-modal {
  transform: translateY(0) scale(1);
  opacity: 1;
}
.privacy-modal,
.privacy-modal * {
  box-sizing: border-box;
  min-width: 0;
}

/* ── Watermark ───────────────────────────────────────────────────────── */
.prv-watermark {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.05;
  color: blueviolet;
  pointer-events: none;
  z-index: 0;
}
.prv-watermark svg,
.prv-watermark img { width: 280px; height: 280px; }

/* ── Sticky header ───────────────────────────────────────────────────── */
.prv-header {
  position: relative;
  z-index: 10;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 13px 18px;
  background: #ffffff;
  border-bottom: 1px solid #ede8f8;
  box-shadow: 0 2px 12px rgba(138, 43, 226, 0.07);
}
.prv-back-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 6px 13px;
  border: none;
  background: none;
  cursor: pointer;
  color: #111111;
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: 8px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s;
}
.prv-back-btn:hover { background: #f3eeff; color: #8a2be2; }
.prv-back-btn:focus-visible { outline: 2px solid #8a2be2; outline-offset: 2px; }

.prv-header-logo {
  height: 34px;
  max-width: 140px;
  object-fit: contain;
  flex-shrink: 1;
}
.prv-header-actions {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}
.prv-icon-btn {
  width: 36px;
  height: 36px;
  border: none;
  background: none;
  cursor: pointer;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8a2be2;
  transition: background 0.15s;
}
.prv-icon-btn:hover { background: #f3eeff; }
.prv-icon-btn:focus-visible { outline: 2px solid #8a2be2; outline-offset: 2px; }

/* ── Popover menu ────────────────────────────────────────────────────── */
.prv-more-wrap { position: relative; }
.prv-menu-popover {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  min-width: 230px;
  background: #fff;
  border: 1px solid #ede8f8;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(138, 43, 226, 0.15);
  padding: 6px 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.18s ease, transform 0.18s ease;
  z-index: 20;
  max-height: 340px;
  overflow-y: auto;
  max-width: calc(100vw - 40px);
}
.prv-menu-popover.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.prv-menu-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  color: #1a1a2e;
  text-decoration: none;
  font-size: 0.875rem;
  transition: background 0.12s, color 0.12s;
}
.prv-menu-link:hover { background: #f3eeff; color: #8a2be2; }
.prv-menu-link:focus-visible { outline: 2px solid #8a2be2; outline-offset: -2px; }
.prv-menu-link-icon { flex-shrink: 0; display: flex; align-items: center; }

/* ── Scroll area ─────────────────────────────────────────────────────── */
.prv-scroll {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  position: relative;
  z-index: 1;
}

/* ── Hero ────────────────────────────────────────────────────────────── */
.prv-hero {
  position: relative;
  background: linear-gradient(135deg, #4a1672 0%, #6d28d9 55%, #7c3aed 100%);
  padding: 46px 32px 42px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  overflow: hidden;
}
.prv-stars {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}
.prv-star {
  position: absolute;
  background: rgba(255, 255, 255, 0.80);
  border-radius: 50%;
  animation: prv-twinkle 3.5s ease-in-out infinite;
}
@keyframes prv-twinkle {
  0%, 100% { opacity: 0.20; transform: scale(1); }
  50%       { opacity: 1;    transform: scale(1.5); }
}
.prv-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 20px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 12px;
  color: #ffffff;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
  max-width: 90%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  transition: background 0.2s, transform 0.2s;
}
.prv-hero-badge:hover { background: rgba(255,255,255,0.52); transform: translateY(-2px); }
.prv-hero-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 800;
  color: #ffffff;
  margin: 0;
  text-shadow: 0 2px 14px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1;
}
.prv-hero-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 580px;
  line-height: 1.65;
  margin: 0;
  position: relative;
  z-index: 1;
}
.prv-hero-update {
  display: inline-block;
  font-size: 0.82rem;
  color: #ffffff;
  font-style: italic;
  margin: 0;
  padding: 7px 18px;
  background: rgba(255, 255, 255, 0.40);
  border-radius: 12px;
  backdrop-filter: blur(6px);
  position: relative;
  z-index: 1;
  transition: background 0.2s;
}
.prv-hero-update:hover { background: rgba(255,255,255,0.52); }
.prv-hero-update time { color: #ffffff; font-weight: 700; font-style: normal; }

/* ── Section base ────────────────────────────────────────────────────── */
.prv-section {
  padding: 28px 28px 24px;
  border-bottom: 1px solid #f0eaff;
}
.prv-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 18px 0;
}

/* ── Summary grid (2 per row) ────────────────────────────────────────── */
.prv-summary-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
.prv-summary-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 10px;
  color: #111111;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.18s, color 0.18s, border-color 0.18s, transform 0.15s, box-shadow 0.15s;
}
.prv-summary-item:hover {
  background: blueviolet;
  color: #ffffff;
  border-color: blueviolet;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(138, 43, 226, 0.28);
}
.prv-summary-item:focus-visible { outline: 2px solid blueviolet; outline-offset: 2px; }
.prv-summary-num {
  flex-shrink: 0;
  font-weight: 700;
  font-size: 0.80rem;
  min-width: 22px;
  color: inherit;
}
.prv-summary-label { flex: 1; min-width: 0; color: inherit; }

/* ── Two-column body ─────────────────────────────────────────────────── */
.prv-body-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.75fr) minmax(0, 1fr);
  align-items: start;
  border-bottom: 1px solid #f0eaff;
}
.prv-main-col {
  padding: 28px;
  border-right: 1px solid #f0eaff;
}
.prv-main-col p {
  color: #444;
  line-height: 1.65;
  font-size: 0.9rem;
  margin: 0 0 12px 0;
}

/* ── Key sections ────────────────────────────────────────────────────── */
.prv-key-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid #f8f4ff;
  scroll-margin-top: 20px;
}
.prv-key-section:last-child { border-bottom: none; margin-bottom: 0; }
.prv-key-section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}
.prv-key-section-header h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
  line-height: 1.3;
  flex: 1;
  min-width: 0;
}
.prv-key-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: blueviolet;
  color: #fff;
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  aspect-ratio: 1 / 1;
}

/* Badges */
.prv-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}
.prv-badge.always   { background: #e8fff3; color: #15803d; border: 1px solid #bbf7d0; }
.prv-badge.optional { background: #fef9c3; color: #a16207; border: 1px solid #fde68a; }

/* Notice row */
.prv-notice-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(14, 165, 233, 0.10);
  border: 1px solid rgba(14, 165, 233, 0.30);
  border-radius: 10px;
  margin-bottom: 14px;
}
.prv-notice-icon { flex-shrink: 0; margin-top: 2px; display: flex; color: #0ea5e9; }
.prv-notice-body { flex: 1; min-width: 0; }
.prv-notice-body strong { display: block; font-size: 0.875rem; font-weight: 700; color: #0284c7; margin-bottom: 3px; }
.prv-notice-body p { margin: 0; font-size: 0.83rem; color: #0369a1; line-height: 1.45; }

/* List type */
.prv-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.prv-info-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.55;
}
.prv-list-bullet { flex-shrink: 0; margin-top: 2px; display: flex; }
.prv-info-list li strong { font-weight: 600; color: #1a1a2e; }
.prv-info-list li small  { color: #666; }

/* Contact chips */
.prv-contact-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 10px; }
.prv-contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: filter 0.15s, transform 0.15s;
}
.prv-contact-chip:hover { filter: brightness(1.10); transform: translateY(-2px); }
.prv-contact-chip.email   { background: linear-gradient(135deg, #6d28d9, #8a2be2); color: #fff; }
.prv-contact-chip.phone   { background: linear-gradient(135deg, #0284c7, #0ea5e9); color: #fff; }
.prv-contact-chip.chat    { background: linear-gradient(135deg, #059669, #10b981); color: #fff; }
.prv-contact-chip.default { background: #f3eeff; color: #8a2be2; }
.prv-contact-desc { font-size: 0.875rem; color: #555; margin: 8px 0 0 0; }

/* Address */
.prv-address-block {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px;
  background: #f8f4ff;
  border-radius: 10px;
  font-style: normal;
  color: #333;
  font-size: 0.9rem;
  line-height: 1.55;
}
.prv-address-icon { flex-shrink: 0; margin-top: 2px; color: #8a2be2; }

/* Chat button */
.prv-chat-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: linear-gradient(135deg, #059669, #10b981);
  color: #fff;
  border: none;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: filter 0.15s, transform 0.15s;
}
.prv-chat-btn:hover { filter: brightness(1.08); transform: translateY(-2px); }

/* Action chips */
.prv-action-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.prv-action-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  background: #f8f4ff;
  border: 1px solid #ede8f8;
  border-radius: 10px;
  color: #6d28d9;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: background 0.15s, transform 0.15s, box-shadow 0.15s;
}
.prv-action-chip:hover { background: #ede0ff; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(138,43,226,0.12); }

/* Empty states */
.prv-empty       { color: #999;  font-size: 0.9rem;  font-style: italic; }
.prv-entry-empty { color: #bbb;  font-size: 0.85rem; }

/* ── Sidebar ──────────────────────────────────────────────────────────── */
.prv-sidebar {
  padding: 28px 20px;
  background: #faf8ff;
  position: sticky;
  top: 20px;
}
.prv-sidebar-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Search */
.prv-search-wrap { display: flex; flex-direction: column; }
.prv-sidebar-nav-title {
  display: block;
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #8a2be2;
  margin: 0 0 8px 0;
}
.prv-search-field {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  background: #fff;
  border: 1.5px solid #ede8f8;
  border-radius: 10px;
  transition: border-color 0.15s, box-shadow 0.15s;
}
.prv-search-field:focus-within {
  border-color: #8a2be2;
  box-shadow: 0 0 0 3px rgba(138, 43, 226, 0.12);
}
.prv-search-icon { flex-shrink: 0; color: #8a2be2; display: flex; }
.prv-search-input {
  border: none;
  outline: none;
  background: transparent;
  font-size: 0.875rem;
  color: #1a1a2e;
  width: 100%;
}

/* Quick nav */
.prv-sidebar-nav { display: flex; flex-direction: column; gap: 4px; }
.prv-sidebar-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 7px 10px;
  border-radius: 8px;
  text-decoration: none;
  color: #444;
  font-size: 0.85rem;
  transition: background 0.13s, color 0.13s;
}
.prv-sidebar-nav-item:hover { background: rgba(138, 43, 226, 0.10); color: blueviolet; }
.prv-sidebar-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c4b5fd;
  flex-shrink: 0;
  transition: background 0.13s;
}
.prv-sidebar-nav-item:hover .prv-sidebar-nav-dot { background: #8a2be2; }

/* Contact CTA */
.prv-contact-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 16px;
  background: linear-gradient(135deg, #6d28d9, #8a2be2);
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: 0 4px 14px rgba(138, 43, 226, 0.25);
  transition: filter 0.15s, transform 0.15s, box-shadow 0.15s;
}
.prv-contact-cta:hover { filter: brightness(1.10); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(138, 43, 226, 0.35); }
.prv-contact-cta:focus-visible { outline: 2px solid #8a2be2; outline-offset: 2px; }

/* ── Related docs ─────────────────────────────────────────────────────── */
.prv-related-docs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.prv-related-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
  padding: 20px 16px;
  background: #f8f4ff;
  border: 1.5px solid #ede8f8;
  border-radius: 14px;
  text-decoration: none;
  color: #1a1a2e;
  transition: border-color 0.18s, box-shadow 0.18s, transform 0.18s;
}
.prv-related-card:hover {
  border-color: blueviolet;
  box-shadow: 0 4px 18px rgba(138, 43, 226, 0.14);
  transform: translateY(-3px);
}
.prv-related-card:focus-visible { outline: 2px solid #8a2be2; outline-offset: 2px; }
.prv-related-card-icon  { display: flex; color: #8a2be2; }
.prv-related-card-title { font-size: 0.9rem; font-weight: 700; margin: 0; color: #1a1a2e; }
.prv-related-card-desc  { margin: 0; font-size: 0.78rem; color: #666; line-height: 1.4; }

/* ── Footer ──────────────────────────────────────────────────────────── */
.prv-footer {
  background: linear-gradient(135deg, rgba(74,22,114,0.97) 0%, rgba(109,40,217,0.95) 100%);
  padding: 28px 28px 20px;
  color: #fff;
}
.prv-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.prv-footer-brand { display: flex; flex-direction: column; gap: 6px; }
.prv-footer-logo  { height: 32px; max-width: 130px; object-fit: contain; filter: brightness(0) invert(1); }
.prv-footer-slogan { font-size: 0.8rem; opacity: 0.72; letter-spacing: 0.04em; }
.prv-footer-socials { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.prv-footer-social {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  text-decoration: none;
  transition: background 0.15s, transform 0.15s;
}
.prv-footer-social:hover { background: rgba(255, 255, 255, 0.25); transform: translateY(-2px); }
.prv-footer-hr   { border: none; border-top: 1px solid rgba(255,255,255,0.15); margin: 0 0 14px 0; }
.prv-footer-copy { font-size: 0.8rem; opacity: 0.62; margin: 0; text-align: center; }

/* ── Action layouts ──────────────────────────────────────────────────── */
.prv-actions-col   { display: flex; flex-direction: column; gap: 10px; }
.prv-actions-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
/* keyI 0 checklist */
.prv-action-check-block { }
.prv-action-check-title { font-size: 0.9rem; font-weight: 700; color: #1a1a2e; margin: 0 0 7px; }
.prv-checklist {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 7px;
}
.prv-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.875rem;
  color: #333;
  line-height: 1.5;
}
.prv-check-icon { flex-shrink: 0; display: flex; margin-top: 2px; }
/* keyI 1, 3 cards */
.prv-action-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 14px 16px;
  background: #f8f4ff;
  border: 1.5px solid #ede8f8;
  border-radius: 12px;
  transition: box-shadow 0.15s, transform 0.15s;
}
.prv-action-card:hover { box-shadow: 0 4px 14px rgba(138,43,226,0.10); transform: translateY(-2px); }
.prv-action-card-icon { display: flex; }
.prv-action-card strong { font-size: 0.875rem; font-weight: 700; color: #1a1a2e; }
.prv-action-card p { margin: 0; font-size: 0.82rem; color: #555; line-height: 1.4; }
/* keyI 2, 4, 5 rows */
.prv-action-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border: 1.5px solid #e4e4e7;
  border-radius: 12px;
  background: #fff;
}
.prv-action-row--start   { justify-content: flex-start; }
.prv-action-row--between { justify-content: space-between; }
.prv-action-row-icon { flex-shrink: 0; display: flex; color: #8a2be2; }
.prv-action-row-body { flex: 1; min-width: 0; }
.prv-action-row-body strong { display: block; font-size: 0.875rem; font-weight: 700; color: #1a1a2e; }
.prv-action-row-body span { font-size: 0.82rem; color: #555; }
.prv-action-row-kbd { flex-shrink: 0; display: flex; color: #555; }
/* Status badges */
.prv-status-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.prv-status-badge.always   { background: #e8fff3; color: #15803d; border: 1px solid #bbf7d0; }
.prv-status-badge.optional { background: #fff7ed; color: #c2410c; border: 1px solid #fed7aa; }

/* ── Contact card grid ───────────────────────────────────────────────── */
.prv-ccontact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.prv-ccard {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
  background: #fff;
  border: 1.5px solid rgba(14, 165, 233, 0.25);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.18s, box-shadow 0.18s;
  min-height: 140px;
}
.prv-ccard:hover { border-color: rgba(14, 165, 233, 0.55); box-shadow: 0 4px 16px rgba(14,165,233,0.12); }
.prv-ccard-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 700;
  color: #555;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.prv-ccard-val { margin: 0; font-size: 0.82rem; color: #1a1a2e; word-break: break-all; }
.prv-ccard-free {
  display: inline-block;
  padding: 1px 7px;
  background: #e8fff3;
  color: #15803d;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-right: 4px;
}
.prv-ccard-logo { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.prv-ccard-row  { display: flex; align-items: center; gap: 6px; font-size: 0.82rem; color: #333; }
.prv-ccard-body { display: flex; flex-direction: column; gap: 4px; flex: 1; min-width: 0; }
/* CTA shown on hover */
.prv-ccard-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: linear-gradient(135deg, #6d28d9, #8a2be2);
  color: #fff;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  border: none;
  cursor: pointer;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 0.18s, transform 0.18s;
  margin-top: auto;
  align-self: flex-start;
}
.prv-ccard:hover .prv-ccard-cta { opacity: 1; transform: translateY(0); }
/* Wave pulse background */
.prv-ccard-wave {
  position: absolute;
  top: -20px;
  right: -20px;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  opacity: 0.08;
  animation: prv-wave-pulse 2.6s ease-in-out infinite;
  pointer-events: none;
}
.prv-ccard--email .prv-ccard-wave  { background: #0ea5e9; }
.prv-ccard--phone .prv-ccard-wave  { background: #8a2be2; animation-delay: 0.4s; }
.prv-ccard--chat  .prv-ccard-wave  { background: #059669; animation-delay: 0.8s; }
@keyframes prv-wave-pulse {
  0%, 100% { transform: scale(1);    opacity: 0.08; }
  50%       { transform: scale(1.4); opacity: 0.20; }
}
/* Address card — full Google Maps embed */
.prv-ccard--address { padding: 0; overflow: hidden; }
.prv-ccard-map-iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  pointer-events: none;
  transition: filter 0.18s;
}
.prv-ccard--address:hover .prv-ccard-map-iframe {
  pointer-events: auto;
  filter: brightness(1.04);
}
.prv-ccard-address-bar {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.90);
  backdrop-filter: blur(6px);
  border-top: 1px solid rgba(14, 165, 233, 0.15);
  margin-top: auto;
}
.prv-ccard-address-bar .prv-ccard-label { margin: 0; }

/* ── Contact card panels (phone & chat) ──────────────────────────────── */
.prv-ccard-panel {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.20s ease;
}
.prv-ccard-panel.open {
  pointer-events: auto;
  opacity: 1;
}
.prv-ccard-panel-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.22);
  cursor: pointer;
}
.prv-ccard-panel-sheet {
  position: relative;
  z-index: 2;
  background: #fff;
  border-radius: 12px 12px 0 0;
  padding-bottom: 6px;
  transform: translateY(100%);
  transition: transform 0.26s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.prv-ccard-panel.open .prv-ccard-panel-sheet { transform: translateY(0); }
.prv-ccard-panel-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 10px 6px;
  position: relative;
}
.prv-ccard-panel-handle-bar {
  position: absolute;
  top: 5px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 3px;
  background: #e5e7eb;
  border-radius: 2px;
}
.prv-ccard-panel-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}
.prv-ccard-panel-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background: #f3f4f6;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #555;
  flex-shrink: 0;
  padding: 0;
}
.prv-ccard-panel-close:hover { background: #e5e7eb; }
.prv-ccard-panel-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  text-decoration: none;
  color: #1a1a2e;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  text-align: left;
  transition: background 0.12s;
  box-sizing: border-box;
}
.prv-ccard-panel-item:hover { background: #f8f4ff; }
.prv-ccard-panel-item-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: #f3f4f6;
  border-radius: 7px;
}
.prv-ccard-panel-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.prv-ccard-panel-item-body strong {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  color: #1a1a2e;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prv-ccard-panel-item-body span {
  font-size: 0.68rem;
  color: #666;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.prv-ccard-panel-item-arrow { flex-shrink: 0; display: flex; color: #bbb; }
.prv-panel-logo { width: 16px; height: 16px; object-fit: contain; }

/* ── Icon fallback ────────────────────────────────────────────────────── */
.prv-icon-fallback { font-style: normal; }

/* ── Responsive ───────────────────────────────────────────────────────── */
@media (max-width: 960px) {
  .privacy-modal { width: 94%; height: 95%; }
  .prv-body-cols { grid-template-columns: 1fr; }
  .prv-main-col  { border-right: none; border-bottom: 1px solid #f0eaff; }
  .prv-sidebar   { border-top: none; }
  .prv-sidebar-inner { position: static; }
  .prv-summary-grid  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .prv-related-docs  { grid-template-columns: 1fr; }
  .prv-actions-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .privacy-modal {
    width: 100%;
    height: 100%;
    max-width: 100vw;
    max-height: 100vh;
    border-radius: 0;
  }
  .prv-hero     { padding: 32px 18px 28px; }
  .prv-section,
  .prv-main-col { padding: 20px 16px; }
  .prv-summary-grid    { grid-template-columns: 1fr; }
  .prv-related-docs    { grid-template-columns: 1fr; }
  .prv-actions-grid-2  { grid-template-columns: 1fr; }
  .prv-footer   { padding: 22px 16px 16px; }
}

