 /* POLÍTICA DE PRIVACIDAD — Success Technology */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color:   #1A1A2E;
  --secondary-color: #3D3D5C;
  --dark-blue:       #0D0D0D;
  --accent-color:    #1CDAFF;
  --accent2:         #0BBDE0;
  --white:           #FFFFFF;
  --light-gray:      #F4F6F8;
  --border-color:    #E8ECF0;
  --text-primary:    #0D0D0D;
  --text-secondary:  #3D3D5C;
}

body {
  font-family: 'DM Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: var(--text-primary);
  background: var(--white);
  line-height: 1.7;
}

/* ══════════════════════════════════════════
   HEADER
   ══════════════════════════════════════════ */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  transition: box-shadow 0.3s ease;
  padding: 0.5rem 2.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header img {
  height: 80px;
}

/* Menú */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a,
.submenu-btn {
  display: block;
  padding: 0.8rem 1.2rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.3s ease;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  font-family: sans-serif;
}

.nav-menu a::after,
.submenu-btn::after {
  content: '';
  position: absolute;
  bottom: 6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.nav-menu a:hover::after,
.submenu-btn:hover::after {
  width: 70%;
}

.nav-menu a:hover,
.submenu-btn:hover {
  color: var(--primary-color);
}

/* Submenu */
.submenu {
  position: absolute;
  top: 110%;
  left: 0;
  background: white;
  width: 300px;
  list-style: none;
  padding: 0.5rem 0;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  display: block !important;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 100;
}

.dropdown {
  position: relative;
}

.dropdown:hover .submenu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.submenu li {
  display: block;
  width: 100%;
}

.submenu li a {
  display: block;
  padding: 12px 18px;
  width: 100%;
  font-size: 1rem;
  text-decoration: none;
  color: var(--text-primary);
}

.submenu li a:hover {
  background: #f5f7fa;
  color: var(--primary-color);
}

.submenu a::after {
  display: none;
}

.hamburguesa {
  background: none;
  border: none;
  color: #000;
  font-size: 2rem;
  cursor: pointer;
  display: none;
}

/* ══════════════════════════════════════════
   HERO
   ══════════════════════════════════════════ */
.privacy-hero {
  background: var(--primary-color);
  padding: 150px 24px 90px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Círculos decorativos de fondo */
.privacy-hero::before {
  content: '';
  position: absolute;
  width: 700px;
  height: 700px;
  border-radius: 50%;
  border: 1px solid rgba(28, 218, 255, 0.06);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.privacy-hero::after {
  content: '';
  position: absolute;
  width: 1050px;
  height: 1050px;
  border-radius: 50%;
  border: 1px solid rgba(28, 218, 255, 0.04);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.privacy-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
}

/* Badge */
.privacy-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Syne', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-color);
  border: 1px solid rgba(28, 218, 255, 0.3);
  background: rgba(28, 218, 255, 0.06);
  padding: 6px 18px;
  border-radius: 40px;
  margin-bottom: 30px;
  opacity: 0;
  animation: heroFadeDown 0.7s ease 0.1s forwards;
}

.privacy-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent-color);
  animation: dotPulse 2s ease-in-out infinite;
}

.privacy-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.4rem;
  opacity: 0;
  animation: heroFadeDown 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.privacy-hero h1 span {
  color: var(--accent-color);
}

.privacy-hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.55);
  max-width: 640px;
  margin: 0 auto 2rem;
  line-height: 1.8;
  opacity: 0;
  animation: heroFadeUp 0.9s ease 0.45s forwards;
}

.privacy-hero-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.8s ease 0.65s forwards;
}

.privacy-hero-meta span {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
  display: flex;
  align-items: center;
  gap: 6px;
}

.privacy-hero-meta span strong {
  color: rgba(255, 255, 255, 0.75);
}

/* Barra de navegación rápida bajo el hero */
.privacy-quicknav {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 0 2rem;
  display: flex;
  justify-content: center;
  gap: 0;
  overflow-x: auto;
  position: sticky;
  top: 97px;
  z-index: 100;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.privacy-quicknav a {
  display: block;
  padding: 14px 18px;
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-secondary);
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.privacy-quicknav a:hover,
.privacy-quicknav a.active {
  color: var(--accent-color);
  border-bottom-color: var(--accent-color);
}

/* ══════════════════════════════════════════
   LAYOUT PRINCIPAL
   ══════════════════════════════════════════ */
.privacy-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 72px 24px 100px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 64px;
  align-items: start;
}

/* ══════════════════════════════════════════
   SIDEBAR
   ══════════════════════════════════════════ */
.privacy-sidebar {
  position: sticky;
  top: 150px;
}

.sidebar-label {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 14px;
}

.sidebar-nav {
  list-style: none;
  border-left: 2px solid var(--border-color);
}

.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  font-size: 0.83rem;
  color: var(--text-secondary);
  text-decoration: none;
  border-left: 2px solid transparent;
  margin-left: -2px;
  line-height: 1.4;
  transition: color 0.25s ease, padding-left 0.25s ease, border-color 0.25s ease;
}

.sidebar-nav li a .nav-icon {
  font-size: 13px;
  opacity: 0.6;
  flex-shrink: 0;
  transition: opacity 0.25s ease;
}

.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  color: var(--primary-color);
  padding-left: 22px;
  border-left-color: var(--accent-color);
}

.sidebar-nav li a.active {
  font-weight: 500;
  color: var(--accent-color);
}

.sidebar-nav li a.active .nav-icon {
  opacity: 1;
}

/* Info box sidebar */
.sidebar-info {
  margin-top: 32px;
  background: var(--light-gray);
  border-radius: 12px;
  padding: 20px;
  border-left: 3px solid var(--accent-color);
}

.sidebar-info h4 {
  font-family: 'Syne', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 8px;
}

.sidebar-info p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 12px;
}

.sidebar-info a {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--accent-color);
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.sidebar-info a:hover {
  opacity: 0.75;
}

/* ══════════════════════════════════════════
   CONTENIDO — SECCIONES
   ══════════════════════════════════════════ */
.privacy-content section {
  margin-bottom: 60px;
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.privacy-content section.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Cabecera de sección */
.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.section-num {
  font-family: 'Syne', sans-serif;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(28, 218, 255, 0.7);
}

.section-tag {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(28, 218, 255, 0.08);
  color: var(--accent-color);
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid rgba(28, 218, 255, 0.2);
}

.privacy-content h2 {
  font-family: 'Syne', sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-icon-box {
  width: 36px;
  height: 36px;
  background: var(--light-gray);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
  transition: background 0.3s ease, transform 0.3s ease;
}

.privacy-content section:hover .section-icon-box {
  background: rgba(28, 218, 255, 0.1);
  transform: rotate(-5deg);
}

.privacy-content p {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 16px;
  line-height: 1.85;
}

/* Listas */
.privacy-content ul {
  list-style: none;
  margin: 14px 0 20px;
}

.privacy-content ul li {
  font-size: 0.97rem;
  color: var(--text-secondary);
  padding: 10px 0 10px 26px;
  position: relative;
  border-bottom: 1px solid var(--border-color);
  line-height: 1.75;
  transition: padding-left 0.25s ease, color 0.25s ease;
}

.privacy-content ul li:last-child {
  border-bottom: none;
}

.privacy-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-color);
  transition: transform 0.25s ease;
}

.privacy-content ul li:hover {
  color: var(--text-primary);
  padding-left: 32px;
}

.privacy-content ul li:hover::before {
  transform: translateY(-50%) scale(1.4);
}

/* Tabla de derechos */
.rights-table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
  font-size: 0.92rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.rights-table thead {
  background: var(--primary-color);
  color: var(--white);
}

.rights-table thead th {
  padding: 14px 18px;
  text-align: left;
  font-family: 'Syne', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rights-table tbody tr {
  border-bottom: 1px solid var(--border-color);
  transition: background 0.2s ease;
}

.rights-table tbody tr:last-child {
  border-bottom: none;
}

.rights-table tbody tr:hover {
  background: var(--light-gray);
}

.rights-table tbody td {
  padding: 13px 18px;
  color: var(--text-secondary);
  vertical-align: top;
  line-height: 1.6;
}

.rights-table tbody td:first-child {
  font-weight: 600;
  color: var(--primary-color);
  white-space: nowrap;
}

.rights-table tbody td .right-icon {
  margin-right: 6px;
}

/* Bloques destacados */
.info-block {
  background: rgba(28, 218, 255, 0.04);
  border: 1px solid rgba(28, 218, 255, 0.18);
  border-left: 3px solid var(--accent-color);
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.info-block strong {
  color: var(--primary-color);
}

.warn-block {
  background: rgba(245, 158, 11, 0.04);
  border: 1px solid rgba(245, 158, 11, 0.22);
  border-left: 3px solid #f59e0b;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.warn-block strong {
  color: #92400e;
}

.success-block {
  background: rgba(16, 185, 129, 0.04);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-left: 3px solid #10b981;
  border-radius: 0 10px 10px 0;
  padding: 18px 22px;
  margin: 20px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.8;
}

.success-block strong {
  color: #065f46;
}

/* Grid de datos de contacto */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 20px 0;
}

.contact-item {
  background: var(--light-gray);
  border-radius: 10px;
  padding: 16px 20px;
  border: 1px solid var(--border-color);
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
  border-color: rgba(28, 218, 255, 0.3);
  box-shadow: 0 4px 16px rgba(28, 218, 255, 0.08);
}

.contact-item-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-bottom: 6px;
}

.contact-item-value {
  font-size: 0.92rem;
  color: var(--text-primary);
  font-weight: 500;
}

.contact-item-value a {
  color: var(--text-primary);
  text-decoration: none;
  transition: color 0.25s ease;
}

.contact-item-value a:hover {
  color: var(--accent-color);
}

/* CTA final */
.privacy-cta {
  background: var(--primary-color);
  border-radius: 20px;
  padding: 52px 40px;
  text-align: center;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

.privacy-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 70% at 50% 0%, rgba(28, 218, 255, 0.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 80% 100%, rgba(28, 218, 255, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.privacy-cta-inner {
  position: relative;
  z-index: 1;
}

.privacy-cta h3 {
  font-family: 'Syne', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.privacy-cta p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.98rem;
  margin-bottom: 30px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.75;
}

.cta-buttons-row {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-color);
  color: var(--primary-color);
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.cta-btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 55%;
  height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255,255,255,0.3), transparent);
  animation: shimmer 2.8s ease-in-out infinite;
}

.cta-btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(28, 218, 255, 0.4);
}

.cta-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.75);
  padding: 13px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: border-color 0.3s ease, color 0.3s ease, background 0.3s ease;
}

.cta-btn-secondary:hover {
  border-color: rgba(28, 218, 255, 0.4);
  color: var(--accent-color);
  background: rgba(28, 218, 255, 0.06);
}

/* ══════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════ */
.footer {
  background: var(--primary-color);
  color: var(--white);
  padding: 3rem 2rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.footer-col h3,
.footer-col h4 {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  opacity: 0.9;
}

.footer-col p {
  margin-bottom: 0.5rem;
  opacity: 0.8;
  font-size: 0.9rem;
  color: var(--white);
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col a {
  color: var(--white);
  text-decoration: none;
  opacity: 0.8;
  transition: opacity 0.3s ease, color 0.3s ease, padding-left 0.3s ease;
  position: relative;
  display: inline-block;
}

.footer-col ul li a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.footer-col ul li a:hover {
  opacity: 1;
  color: var(--accent-color);
  padding-left: 5px;
}

.footer-col ul li a:hover::after {
  width: 100%;
}

.social-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.social-links a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  transition: all 0.3s ease;
  font-weight: 500;
  opacity: 1;
  color: var(--white);
  text-decoration: none;
}

.social-links a:hover {
  background: rgba(28, 218, 255, 0.1);
  border-color: rgba(28, 218, 255, 0.4);
  transform: translateX(6px);
}

.social-links img {
  width: 20px;
  height: 20px;
  filter: brightness(0) invert(1);
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
  opacity: 0.8;
}

.footer-bottom a {
  color: var(--white);
  text-decoration: none;
  margin: 0 0.5rem;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: var(--accent-color);
  text-decoration: underline;
}

/* ══════════════════════════════════════════
   KEYFRAMES
   ══════════════════════════════════════════ */
@keyframes heroFadeDown {
  from { opacity: 0; transform: translateY(-28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.6); }
}

@keyframes shimmer {
  0%   { left: -100%; }
  100% { left: 160%; }
}

/* ══════════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════════ */
@media (max-width: 1100px) {
  .privacy-layout {
    grid-template-columns: 210px 1fr;
    gap: 40px;
  }
}

@media (max-width: 900px) {
  header {
    flex-wrap: wrap;
    justify-content: center;
    padding: 1rem;
    gap: 1rem;
  }

  header img { height: 70px; }

  .privacy-layout {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 48px 20px 80px;
  }

  .privacy-sidebar {
    position: static;
  }

  .sidebar-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    border-left: none;
    border-bottom: 2px solid var(--border-color);
    padding-bottom: 14px;
  }

  .sidebar-nav li a {
    border-left: none;
    border-bottom: 2px solid transparent;
    margin-left: 0;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.78rem;
    background: var(--light-gray);
  }

  .sidebar-nav li a:hover,
  .sidebar-nav li a.active {
    border-left: none;
    border-bottom-color: var(--accent-color);
    padding-left: 12px;
    background: rgba(28, 218, 255, 0.08);
  }

  .sidebar-info { display: none; }

  .contact-grid { grid-template-columns: 1fr; }

  .privacy-quicknav {
    top: 80px;
    justify-content: flex-start;
  }
}

@media (max-width: 768px) {
  header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
  }

   header img {
    width: auto;
    height: 60px;
  }

  .hamburguesa { display: block; }

  .nav-menu {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.6);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    flex-direction: column;
    align-items: center;
    padding: 1rem 0;
    clip-path: circle(0px at 90% -10%);
    pointer-events: none;
    transition: clip-path 0.4s ease;
  }

  .nav-menu a {
    font-size: 1.1rem;
    color: var(--white);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-menu.active {
    clip-path: circle(1000px at 90% -10%);
    pointer-events: all;
  }

  .submenu-btn{
    color: var(--white);
  }

  .nav-menu li {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
  }

  .nav-menu.active li { opacity: 1; transform: translateY(0); }
  .nav-menu li:nth-child(1) { transition-delay: 0.1s; }
  .nav-menu li:nth-child(2) { transition-delay: 0.2s; }
  .nav-menu li:nth-child(3) { transition-delay: 0.3s; }
  .nav-menu li:nth-child(4) { transition-delay: 0.4s; }

  .privacy-content{ margin: 0;}

  .privacy-hero { padding: 120px 0 60px; }

  .privacy-hero h1 { font-size: 2rem; }

  .rights-table { font-size: 0.82rem; }
  .rights-table thead th,
  .rights-table tbody td { padding: 10px 0; }

  .privacy-cta { padding: 36px 20px; margin: 0; }
  .privacy-cta h3 { font-size: 1.3rem; }

  .footer-row {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .privacy-hero-meta {
    flex-direction: column;
    gap: 8px;
  }

  .cta-buttons-row { flex-direction: column; align-items: center; }
  .cta-btn-primary, .cta-btn-secondary { width: 100%; justify-content: center; }
}