.zoomag-privacy-policy {
  --zoo-bg: #f7f9ff;
  --zoo-surface: #ffffff;
  --zoo-surface-soft: #f8f9fc;
  --zoo-text: #2f3440;
  --zoo-muted: #6f7787;
  --zoo-line: #e8ecf3;
  --zoo-accent: #667eea;
  --zoo-accent-2: #764ba2;
  --zoo-orange: #ff6b00;
  --zoo-green: #4caf50;
  --zoo-shadow: 0 10px 28px rgba(22, 28, 45, 0.08);
  --zoo-shadow-hover: 0 16px 32px rgba(26, 32, 57, 0.12);
  --zoo-radius: 20px;
  --zoo-radius-sm: 14px;

  font-family: 'Montserrat', Arial, sans-serif;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: clamp(12px, 2vw, 20px);
  color: var(--zoo-text);
  line-height: 1.6;
  box-sizing: border-box;
}

.zoomag-privacy-policy * {
  box-sizing: border-box;
}

.zoomag-privacy-policy a {
  color: var(--zoo-accent);
  text-decoration: none;
}

.zoomag-privacy-policy a:hover {
  text-decoration: underline;
}

/* Hero */
.zoo-hero-section {
  background:
    radial-gradient(circle at 15% 20%, rgba(255,255,255,0.16), transparent 40%),
    radial-gradient(circle at 85% 80%, rgba(255,255,255,0.12), transparent 45%),
    linear-gradient(135deg, var(--zoo-accent) 0%, var(--zoo-accent-2) 65%, #8c5fd1 100%);
  border-radius: 22px;
  padding: clamp(28px, 5vw, 56px) clamp(16px, 4vw, 36px);
  margin-bottom: 18px;
  position: relative;
  overflow: hidden;
  color: #fff;
  text-align: center;
  box-shadow: 0 14px 32px rgba(86, 76, 160, 0.22);
}

.zoo-hero-content {
  position: relative;
  z-index: 1;
}

.zoo-hero-content .zoo-shield-icon {
  font-size: clamp(2.5rem, 6vw, 3.8rem);
  margin-bottom: 14px;
  animation: zoo-bounce 2.5s ease-in-out infinite;
}

.zoo-hero-title {
  margin: 0 0 10px;
  font-size: clamp(1.55rem, 4vw, 2.7rem);
  line-height: 1.15;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 3px 14px rgba(0,0,0,0.15);
}

.zoo-hero-subtitle {
  margin: 0 0 14px;
  font-size: clamp(.95rem, 2vw, 1.15rem);
  opacity: 0.95;
  color: rgba(255,255,255,.96);
}

.zoo-hero-location {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.18);
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  backdrop-filter: blur(5px);
}

.zoo-hero-pets {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.zoo-floating-pet {
  position: absolute;
  font-size: clamp(1.4rem, 4vw, 2.2rem);
  opacity: .22;
  animation: zoo-float 6s ease-in-out infinite;
}

.zoo-floating-pet:nth-child(1) { top: 18%; left: 8%; animation-delay: 0s; }
.zoo-floating-pet:nth-child(2) { top: 58%; right: 10%; animation-delay: 1.8s; }
.zoo-floating-pet:nth-child(3) { bottom: 16%; left: 16%; animation-delay: 3.2s; }

/* Navigation */
.zoo-policy-nav {
  background: rgba(255,255,255,0.9);
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
  box-shadow: var(--zoo-shadow);
  border: 1px solid var(--zoo-line);
  position: sticky;
  top: 12px;
  z-index: 20;
  backdrop-filter: blur(6px);
}

.zoo-nav-container h3 {
  margin: 0 0 10px;
  color: var(--zoo-text);
  font-weight: 700;
  font-size: 1rem;
}

.zoo-nav-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.zoo-nav-link {
  background: #f7f9fd;
  padding: 9px 14px;
  border-radius: 999px;
  text-decoration: none;
  color: var(--zoo-accent);
  font-weight: 600;
  font-size: .9rem;
  transition: all .2s ease;
  border: 1px solid #e8edf8;
  cursor: pointer;
}

.zoo-nav-link:hover,
.zoo-nav-link.is-active {
  background: var(--zoo-accent);
  border-color: var(--zoo-accent);
  color: #fff;
  transform: translateY(-1px);
  text-decoration: none;
}

/* Operator Card */
.zoo-operator-card {
  background: var(--zoo-surface);
  border-radius: 18px;
  padding: 18px;
  margin-bottom: 16px;
  box-shadow: var(--zoo-shadow);
  border: 1px solid var(--zoo-line);
  border-left: 4px solid var(--zoo-orange);
}

.zoo-operator-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.zoo-operator-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fff3e8, #ffe8d4);
  border: 1px solid #ffd4b4;
  font-size: 1.7rem;
  flex: 0 0 auto;
}

.zoo-operator-info h3 {
  margin: 0 0 4px;
  color: var(--zoo-text);
  font-size: 1.1rem;
  font-weight: 700;
}

.zoo-operator-info p {
  margin: 0;
  color: var(--zoo-muted);
}

.zoo-operator-details {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.zoo-detail-item {
  background: #fbfcff;
  border: 1px solid var(--zoo-line);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: baseline;
}

.zoo-detail-label {
  font-weight: 700;
  color: #5b6272;
}

.zoo-detail-value {
  color: var(--zoo-text);
}

.zoo-detail-link {
  font-weight: 600;
}

/* Chapters */
.zoo-policy-content {
  display: block;
}

.zoo-policy-chapter {
  background: var(--zoo-surface);
  border-radius: 18px;
  padding: clamp(16px, 3vw, 28px);
  margin-bottom: 16px;
  box-shadow: var(--zoo-shadow);
  border: 1px solid var(--zoo-line);
  scroll-margin-top: 84px;
}

.zoo-highlight-section {
  border-left: 4px solid var(--zoo-green);
}

.zoo-chapter-header {
  margin-bottom: 20px;
  text-align: center;
}

.zoo-chapter-badge {
  background: linear-gradient(135deg, var(--zoo-accent), var(--zoo-accent-2));
  color: white;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.78rem;
  letter-spacing: .02em;
  box-shadow: 0 8px 20px rgba(102,126,234,.22);
}

.zoo-chapter-header h2 {
  margin: 0;
  color: var(--zoo-text);
  font-size: clamp(1.2rem, 2.5vw, 1.9rem);
  line-height: 1.2;
  font-weight: 800;
}

/* Chapter 1 grid */
.zoo-chapter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.zoo-info-card {
  background: #fafbff;
  padding: 14px;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 1px solid var(--zoo-line);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.zoo-info-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--zoo-shadow-hover);
  border-color: #dbe3ff;
}

.zoo-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #edf2ff;
  font-size: 1.25rem;
  flex: 0 0 auto;
}

.zoo-card-content h4 {
  margin: 0 0 6px 0;
  color: var(--zoo-text);
  font-weight: 700;
  font-size: .98rem;
}

.zoo-card-content p {
  margin: 0;
  color: var(--zoo-muted);
  line-height: 1.45;
  font-size: .9rem;
}

/* Chapter 2 */
.zoo-purposes-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.zoo-purpose-card {
  background: white;
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 16px rgba(0,0,0,0.05);
  transition: all .2s ease;
  border: 1px solid var(--zoo-line);
}

.zoo-purpose-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--zoo-shadow-hover);
  border-color: #d9e1ff;
}

.zoo-purpose-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  background: linear-gradient(135deg, #eef2ff, #f5eeff);
}

.zoo-purpose-card h4 {
  margin: 0 0 8px 0;
  color: var(--zoo-text);
  font-weight: 700;
  font-size: .98rem;
}

.zoo-purpose-card p {
  margin: 0;
  color: var(--zoo-muted);
  line-height: 1.45;
  font-size: .9rem;
}

/* Chapter 3 */
.zoo-subjects-showcase {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.zoo-subject-category {
  background: #fafbff;
  padding: 14px;
  border-radius: 14px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid var(--zoo-line);
}

.zoo-subject-category:hover {
  transform: translateY(-2px);
  box-shadow: var(--zoo-shadow-hover);
}

.zoo-subject-category.zoo-highlight {
  border-color: #ffd8bf;
  background: linear-gradient(135deg, #fff8f1, #ffffff);
}

.zoo-category-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  justify-content: center;
}

.zoo-category-icon {
  font-size: 1.3rem;
}

.zoo-subject-category h3 {
  margin: 0;
  color: var(--zoo-text);
  font-weight: 700;
  font-size: .95rem;
}

.zoo-subject-category p {
  margin: 0;
  color: var(--zoo-muted);
  font-size: .88rem;
  line-height: 1.4;
}

/* Chapter 4 */
.zoo-data-categories {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.zoo-data-section {
  background: #fafbff;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--zoo-line);
  border-left: 4px solid var(--zoo-accent);
}

.zoo-data-section.zoo-highlight {
  border-left-color: var(--zoo-orange);
  background: linear-gradient(135deg, #fff9f3, #ffffff);
}

.zoo-data-section h3 {
  margin: 0 0 12px 0;
  color: var(--zoo-text);
  font-weight: 700;
  font-size: 1rem;
}

.zoo-data-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.zoo-data-tag {
  background: white;
  padding: 7px 11px;
  border-radius: 999px;
  color: #566174;
  font-size: .82rem;
  border: 1px solid #e5eaf2;
  transition: all .2s ease;
  line-height: 1.2;
}

.zoo-data-tag:hover {
  background: var(--zoo-accent);
  border-color: var(--zoo-accent);
  color: white;
  transform: translateY(-1px);
}

/* Chapter 5 */
.zoo-storage-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.zoo-storage-card {
  background: white;
  padding: 14px;
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.04);
  border: 1px solid var(--zoo-line);
}

.zoo-storage-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #f3f6ff;
  display: grid;
  place-items: center;
  font-size: 1.3rem;
  flex: 0 0 auto;
}

.zoo-storage-content h4 {
  margin: 0 0 6px 0;
  color: var(--zoo-text);
  font-weight: 700;
  font-size: .96rem;
}

.zoo-storage-content p {
  margin: 0;
  color: var(--zoo-muted);
  font-size: .9rem;
}

.zoo-small-text {
  font-size: .8rem;
  color: #8992a2;
  margin-top: 5px !important;
}

.zoo-consent-info {
  background: #f9fbff;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--zoo-line);
  border-left: 4px solid var(--zoo-green);
}

.zoo-consent-info h3 {
  margin: 0 0 12px 0;
  color: var(--zoo-text);
  font-weight: 700;
  font-size: 1rem;
}

.zoo-consent-details {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.zoo-consent-item {
  background: white;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--zoo-line);
}

.zoo-consent-item strong {
  color: var(--zoo-text);
  display: block;
  margin-bottom: 4px;
}

.zoo-consent-item p {
  margin: 0;
  color: var(--zoo-muted);
  font-size: .9rem;
}

/* Chapter 6 */
.zoo-processing-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.zoo-method-card {
  background: #fafbff;
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  border: 1px solid var(--zoo-line);
}

.zoo-method-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--zoo-shadow-hover);
}

.zoo-method-card.zoo-highlight {
  background: linear-gradient(135deg, var(--zoo-accent), var(--zoo-accent-2));
  color: white;
  border-color: transparent;
}

.zoo-method-card.zoo-highlight .zoo-method-icon,
.zoo-method-card.zoo-highlight h4,
.zoo-method-card.zoo-highlight p {
  color: white;
}

.zoo-method-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 10px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: #eef2ff;
}

.zoo-method-card.zoo-highlight .zoo-method-icon {
  background: rgba(255,255,255,.15);
}

.zoo-method-card h4 {
  margin: 0 0 8px 0;
  font-weight: 700;
  color: var(--zoo-text);
  font-size: .98rem;
}

.zoo-method-card p {
  margin: 0;
  color: var(--zoo-muted);
  line-height: 1.45;
  font-size: .9rem;
}

.zoo-processing-actions {
  background: #fafbff;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--zoo-line);
}

.zoo-processing-actions h3 {
  margin: 0 0 12px 0;
  color: var(--zoo-text);
  font-weight: 700;
  text-align: center;
  font-size: 1rem;
}

.zoo-actions-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.zoo-action-item {
  background: white;
  padding: 8px 12px;
  border-radius: 999px;
  color: #586274;
  font-weight: 600;
  font-size: .84rem;
  border: 1px solid #e5eaf2;
  transition: all .2s ease;
}

.zoo-action-item:hover {
  background: var(--zoo-accent);
  color: white;
  border-color: var(--zoo-accent);
  transform: translateY(-1px);
}

/* Chapter 7 */
.zoo-rights-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
}

.zoo-right-card {
  background: white;
  padding: 16px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.04);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  border: 1px solid var(--zoo-line);
}

.zoo-right-card:hover {
  transform: translateY(-2px);
  border-color: #d7f0dc;
  box-shadow: var(--zoo-shadow-hover);
}

.zoo-right-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 10px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  background: #edf8ee;
}

.zoo-right-card h4 {
  margin: 0 0 8px 0;
  color: var(--zoo-text);
  font-weight: 700;
  font-size: .96rem;
}

.zoo-right-card p {
  margin: 0;
  color: var(--zoo-muted);
  line-height: 1.45;
  font-size: .9rem;
}

/* Contact Block */
.zoo-contact-block {
  background: #f9fbff;
  padding: 14px;
  border-radius: 14px;
  border: 1px solid var(--zoo-line);
  border-left: 4px solid var(--zoo-green);
  margin-bottom: 12px;
}

.zoo-contact-block h3 {
  margin: 0 0 12px 0;
  color: var(--zoo-text);
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
}

.zoo-contact-ways {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.zoo-contact-way {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid var(--zoo-line);
  border-radius: 12px;
}

.zoo-contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: #eef2ff;
  font-size: 1.2rem;
  flex: 0 0 auto;
}

.zoo-contact-info strong {
  display: block;
  margin-bottom: 4px;
  color: var(--zoo-text);
}

.zoo-contact-info p {
  margin: 0;
  color: var(--zoo-muted);
  font-size: .9rem;
  line-height: 1.4;
}

.zoo-contact-info a {
  font-weight: 600;
}

.zoo-withdrawal-info {
  background: #fff;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid var(--zoo-line);
}

.zoo-withdrawal-info h4 {
  margin: 0 0 8px 0;
  color: var(--zoo-text);
  font-weight: 700;
  font-size: .95rem;
}

.zoo-withdrawal-info p {
  margin: 0;
  color: var(--zoo-muted);
  font-size: .88rem;
  line-height: 1.45;
}

/* Security Badge */
.zoo-security-badge {
  background: linear-gradient(135deg, #43b65c, #38a84f);
  color: white;
  padding: clamp(16px, 3vw, 26px);
  border-radius: 18px;
  text-align: center;
  margin-top: 8px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  box-shadow: 0 12px 24px rgba(56,168,79,.2);
}

.zoo-badge-icon {
  width: 62px;
  height: 62px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(255,255,255,.13);
  font-size: 1.8rem;
}

.zoo-badge-content h3 {
  margin: 0 0 4px 0;
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  color: #fff;
}

.zoo-badge-content p {
  margin: 0;
  opacity: 0.94;
  color: rgba(255,255,255,.95);
}

/* Reveal animation (замена AOS) */
.zoomag-privacy-policy [data-zoo-reveal] {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .45s ease, transform .45s ease;
}
.zoomag-privacy-policy [data-zoo-reveal].is-zoo-hidden {
  opacity: 0;
  transform: translateY(16px);
}

/* Animations */
@keyframes zoo-float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-12px) rotate(3deg); }
}

@keyframes zoo-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Responsive */
@media (max-width: 1199px) {
  .zoo-subjects-showcase {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991px) {
  .zoo-operator-details,
  .zoo-chapter-grid,
  .zoo-purposes-grid,
  .zoo-rights-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zoo-storage-info,
  .zoo-processing-methods,
  .zoo-contact-ways {
    grid-template-columns: 1fr;
  }

  .zoo-subjects-showcase {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .zoo-policy-nav {
    position: static;
    top: auto;
  }

  .zoo-policy-chapter {
    scroll-margin-top: 18px;
  }
}

@media (max-width: 575px) {
  .zoomag-privacy-policy {
    padding: 10px;
  }

  .zoo-hero-section {
    padding: 24px 14px;
    border-radius: 16px;
  }

  .zoo-nav-links {
    flex-direction: column;
    align-items: stretch;
  }

  .zoo-nav-link {
    text-align: center;
  }

  .zoo-operator-card,
  .zoo-policy-chapter {
    padding: 14px;
    border-radius: 14px;
  }

  .zoo-operator-header,
  .zoo-info-card,
  .zoo-storage-card,
  .zoo-contact-way {
    flex-direction: column;
    align-items: flex-start;
  }

  .zoo-operator-icon,
  .zoo-card-icon,
  .zoo-storage-icon,
  .zoo-contact-icon {
    margin-bottom: 2px;
  }

  .zoo-operator-details,
  .zoo-chapter-grid,
  .zoo-purposes-grid,
  .zoo-subjects-showcase,
  .zoo-rights-grid {
    grid-template-columns: 1fr;
  }

  .zoo-data-tags,
  .zoo-actions-list {
    justify-content: flex-start;
  }

  .zoo-security-badge {
    text-align: center;
  }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .zoomag-privacy-policy * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

/* R21 wide-screen adaptation */
.zoomag-privacy-policy { max-width: 1760px; margin-inline: auto; font-family: inherit; }
@media (min-width: 1400px) {
  .zoo-hero-section { padding: 42px 40px; }
  .zoo-purposes-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}
@media (min-width: 1700px) {
  .zoomag-privacy-policy { max-width: 1840px; padding: 24px 28px; }
  .zoo-purposes-grid { grid-template-columns: repeat(6, minmax(0, 1fr)); }
  .zoo-chapter-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .zoo-storage-info { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .zoo-rights-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .zoo-policy-chapter { padding: 30px; }
}
@media (min-width: 2400px) { .zoomag-privacy-policy { max-width: 2100px; } }


/* R22: page-wide final override */
#information-information.zm-info-page-4 .zoomag-privacy-policy {
  width: 100% !important;
  max-width: none !important;
  margin-inline: 0 !important;
}
@media (min-width: 1900px) {
  .zoomag-privacy-policy { padding: 26px 30px !important; }
  .zoo-purposes-grid { grid-template-columns: repeat(6,minmax(0,1fr)) !important; }
  .zoo-subjects-showcase { grid-template-columns: repeat(5,minmax(0,1fr)) !important; }
  .zoo-storage-info { grid-template-columns: repeat(4,minmax(0,1fr)) !important; }
}
