/* =====================[PRIVACY PAGE STYLES]===================== */
:root {
  /* --primary: #0f2b4b;
  --primary-dark: #0a1e36;
  --primary-light: #1e3a5f;
  --accent: #c7a254;
  --accent-light: #d9b771;
  --accent-dark: #b38b3f;
  --text: #1e293b;
  --text-light: #475569;
  --text-lighter: #64748b;
  --background: #ffffff;
  --background-alt: #f8fafc;
  --background-dark: #0f172a;
  --border: #e9eef2;
  --border-dark: #cbd5e1;
  --success: #2e7d32; */
  --shadow-sm: 0 4px 6px rgba(0, 0, 0, 0.02);
  --shadow: 0 10px 25px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 20px 35px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 30px 50px rgba(15, 43, 75, 0.08);
  --transition: all 0.3s ease;
  --border-radius: 1rem;
  --border-radius-lg: 2rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
/* 
body {
  font-family:
    "Inter",
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Roboto,
    sans-serif;
  line-height: 1.6;
  color: var(--text);
  background: var(--background);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
} */

/* =====================[PRIVACY HERO]===================== */
.privacy-hero {
  background: linear-gradient(
    145deg,
    var(--primary-dark) 0%,
    var(--primary) 100%
  );
  padding: 8rem 0 6rem;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.privacy-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 20% 30%,
      rgba(199, 162, 84, 0.12) 0%,
      transparent 40%
    ),
    radial-gradient(
      circle at 80% 70%,
      rgba(199, 162, 84, 0.12) 0%,
      transparent 40%
    );
  z-index: -1;
  animation: ambientPulse 10s ease-in-out infinite;
}

.privacy-hero::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

@keyframes ambientPulse {
  0%,
  100% {
    opacity: 0.5;
  }
  50% {
    opacity: 0.8;
  }
}

.privacy-hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-block;
  padding: 0.5rem 1.5rem;
  background: rgba(199, 162, 84, 0.15);
  border: 1px solid rgba(199, 162, 84, 0.3);
  border-radius: 100px;
  color: var(--accent-light);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.privacy-hero-content h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 600;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.privacy-hero-content p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto;
  font-weight: 300;
}

/* =====================[PRIVACY CONTENT LAYOUT]===================== */
.privacy-content-section {
  padding: 4rem 0 6rem;
  background: white;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 3rem;
  align-items: start;
}

/* =====================[SIDEBAR]===================== */
.privacy-sidebar {
  position: relative;
}

.sidebar-sticky {
  position: sticky;
  top: 100px;
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.sidebar-sticky h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
}

.sidebar-nav {
  list-style: none;
  margin-bottom: 2rem;
}

.sidebar-nav li {
  margin-bottom: 0.5rem;
}

.sidebar-link {
  display: block;
  padding: 0.5rem 0.75rem;
  color: var(--text-light);
  text-decoration: none;
  font-size: 0.9rem;
  border-radius: 0.5rem;
  transition: var(--transition);
  border-left: 2px solid transparent;
}

.sidebar-link:hover {
  color: var(--primary);
  background: var(--background-alt);
  border-left-color: var(--accent-light);
  padding-left: 1rem;
}

.sidebar-link.active {
  color: var(--primary);
  background: rgba(199, 162, 84, 0.08);
  font-weight: 500;
  border-left-color: var(--accent);
}

.sidebar-cta {
  background: linear-gradient(
    145deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: var(--border-radius);
  padding: 1.5rem;
  color: white;
  text-align: center;
}

.sidebar-cta h4 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.sidebar-cta p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 1rem;
}

.sidebar-button {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: var(--accent);
  color: var(--primary);
  text-decoration: none;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: var(--transition);
}

.sidebar-button:hover {
  background: white;
  transform: translateY(-2px);
}

/* =====================[MAIN CONTENT]===================== */
.privacy-main {
  min-width: 0;
}

.privacy-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--border-radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
}

.last-updated {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--background-alt);
  border-radius: 100px;
  color: var(--text-light);
  font-size: 0.85rem;
  margin-bottom: 2rem;
}

.last-updated i {
  color: var(--accent);
}

/* =====================[POLICY SECTIONS]===================== */
.policy-section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

.policy-section:last-child {
  margin-bottom: 0;
}

.policy-section h2 {
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.policy-section h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 1rem;
}

.policy-section h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 1.25rem 0 0.5rem;
}

.policy-section p {
  color: var(--text-light);
  margin-bottom: 1rem;
  line-height: 1.7;
}

/* Policy Highlights */
.policy-highlight {
  display: flex;
  gap: 1rem;
  background: rgba(199, 162, 84, 0.05);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.policy-highlight i {
  font-size: 2rem;
  color: var(--accent);
}

.policy-highlight strong {
  display: block;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

/* Lists */
.policy-list {
  list-style: none;
  margin: 1rem 0 1.5rem;
}

.policy-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--text-light);
  line-height: 1.6;
}

.policy-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.policy-list li strong {
  color: var(--text);
}

/* Use Grid */
.use-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.use-item {
  background: var(--background-alt);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.use-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}

.use-item i {
  color: var(--accent);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.use-item h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.use-item p {
  color: var(--text-light);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.5;
}

/* Legal Basis */
.legal-basis {
  background: rgba(199, 162, 84, 0.05);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.legal-basis h4 {
  margin-top: 0;
}

.legal-basis ul {
  list-style: none;
  margin-top: 1rem;
}

.legal-basis li {
  padding: 0.5rem 0;
  color: var(--text-light);
  position: relative;
  padding-left: 1.5rem;
}

.legal-basis li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
}

/* Sharing Cards */
.sharing-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin: 1.5rem 0;
}

.sharing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  transition: var(--transition);
}

.sharing-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--accent-light);
}

.sharing-card i {
  font-size: 1.5rem;
  color: var(--accent);
  margin-bottom: 1rem;
}

.sharing-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.sharing-card p {
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.5;
  margin: 0;
}

/* Data Processors */
.data-processors {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.processor-list {
  list-style: none;
  margin: 1rem 0;
}

.processor-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-light);
}

.processor-list i {
  color: var(--accent);
  font-size: 0.9rem;
}

.processor-note {
  font-size: 0.9rem;
  color: var(--text-lighter);
  font-style: italic;
}

/* Security Badge */
.security-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: linear-gradient(
    145deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: var(--border-radius);
  padding: 1.5rem;
  color: white;
  margin: 1.5rem 0;
}

.security-badge i {
  font-size: 2.5rem;
  color: var(--accent);
}

.security-badge h4 {
  font-size: 1rem;
  font-weight: 600;
  color: white;
  margin: 0 0 0.25rem;
}

.security-badge p {
  color: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* Security Measures */
.security-measures {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.measure {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--background-alt);
  border-radius: var(--border-radius);
  border: 1px solid var(--border);
}

.measure i {
  color: var(--accent);
  font-size: 1rem;
}

.measure span {
  color: var(--text);
  font-size: 0.9rem;
}

.security-note {
  font-size: 0.9rem;
  color: var(--text-lighter);
  font-style: italic;
  margin-top: 1rem;
}

/* Retention Table */
.retention-table {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
  margin: 1.5rem 0;
}

.retention-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--border);
}

.retention-row:last-child {
  border-bottom: none;
}

.retention-type {
  padding: 1rem;
  background: var(--background-alt);
  font-weight: 500;
  color: var(--text);
  border-right: 1px solid var(--border);
}

.retention-period {
  padding: 1rem;
  color: var(--text-light);
}

/* Rights Grid */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 1.5rem 0;
}

.right-item {
  background: var(--background-alt);
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  padding: 1.25rem;
  text-align: center;
}

.right-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.right-item p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin: 0;
}

/* Rights Exercise */
.rights-exercise {
  background: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin-top: 1.5rem;
}

.contact-methods {
  display: flex;
  gap: 1.5rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.contact-method {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--text-light);
}

.contact-method i {
  color: var(--accent);
}

.contact-method a {
  color: var(--primary);
  text-decoration: none;
}

.contact-method a:hover {
  text-decoration: underline;
}

.rights-note {
  font-size: 0.9rem;
  color: var(--text-lighter);
  margin-top: 0.5rem;
}

/* Cookies Table */
.cookies-table {
  margin: 1.5rem 0;
}

.cookies-table table {
  width: 100%;
  border-collapse: collapse;
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  overflow: hidden;
}

.cookies-table th {
  background: var(--primary);
  color: white;
  font-weight: 600;
  font-size: 0.9rem;
  padding: 1rem;
  text-align: left;
}

.cookies-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--text-light);
  font-size: 0.9rem;
}

.cookies-table tr:last-child td {
  border-bottom: none;
}

.cookies-table tr:hover td {
  background: var(--background-alt);
}

/* Cookie Control */
.cookie-control {
  margin-top: 2rem;
}

.browser-links {
  display: flex;
  gap: 1rem;
  margin: 1rem 0;
  flex-wrap: wrap;
}

.browser-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: var(--background-alt);
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--text);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition);
}

.browser-link:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.browser-link i {
  font-size: 1rem;
}

/* Transfer Mechanisms */
.transfer-mechanisms {
  background: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.transfer-mechanisms ul {
  list-style: none;
  margin-top: 1rem;
}

.transfer-mechanisms li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
  color: var(--text-light);
}

.transfer-mechanisms i {
  color: var(--accent);
  margin-top: 0.2rem;
}

/* Version History */
.version-history {
  background: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.version-history ul {
  list-style: none;
  margin-top: 1rem;
}

.version-history li {
  padding: 0.5rem 0;
  color: var(--text-light);
  border-bottom: 1px dashed var(--border);
}

.version-history li:last-child {
  border-bottom: none;
}

/* Contact Block */
.contact-block {
  background: var(--background-alt);
  border-radius: var(--border-radius);
  padding: 1.5rem;
  margin: 1.5rem 0;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info div {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-light);
}

.contact-info i {
  color: var(--accent);
  width: 1.25rem;
}

.contact-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

/* .btn-primary {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: var(--accent);
  color: var(--primary);
  text-decoration: none;
  border-radius: var(--border-radius);
  font-weight: 600;
  transition: var(--transition);
  border: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
} */
/* 
.btn-outline {
  display: inline-flex;
  align-items: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: var(--border-radius);
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--background-alt);
  transform: translateY(-2px);
} */

/* =====================[PRIVACY CTA]===================== */
.privacy-cta {
  padding: 4rem 0 6rem;
  background: white;
}

.cta-box {
  background: linear-gradient(
    145deg,
    var(--primary) 0%,
    var(--primary-light) 100%
  );
  border-radius: var(--border-radius-lg);
  padding: 4rem;
  text-align: center;
  color: white;
  box-shadow: var(--shadow-lg);
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

.cta-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(
      circle at 30% 40%,
      rgba(199, 162, 84, 0.15) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 70% 60%,
      rgba(199, 162, 84, 0.15) 0%,
      transparent 50%
    );
  z-index: -1;
}

.cta-box h2 {
  font-size: 2.5rem;
  font-weight: 500;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

.cta-box p {
  font-size: 1.25rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
}

/* =====================[RESPONSIVE DESIGN]===================== */
@media (max-width: 1024px) {
  .privacy-grid {
    grid-template-columns: 1fr;
  }

  .sidebar-sticky {
    position: static;
    margin-bottom: 2rem;
  }

  .use-grid,
  .sharing-cards {
    grid-template-columns: 1fr;
  }

  .rights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }

  .privacy-hero {
    padding: 6rem 0 4rem;
  }

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

  .privacy-content-section {
    padding: 3rem 0 4rem;
  }

  .privacy-card {
    padding: 2rem;
  }

  .policy-section h2 {
    font-size: 1.5rem;
  }

  .security-measures {
    grid-template-columns: 1fr;
  }

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

  .contact-methods {
    flex-direction: column;
    gap: 0.75rem;
  }

  .contact-actions {
    flex-direction: column;
  }

  .cta-box {
    padding: 3rem 2rem;
  }

  .cta-box h2 {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .privacy-hero-content h1 {
    font-size: 2rem;
  }

  .hero-badge {
    font-size: 0.75rem;
  }

  .privacy-card {
    padding: 1.5rem;
  }

  .retention-row {
    grid-template-columns: 1fr;
  }

  .retention-type {
    border-right: none;
    border-bottom: 1px solid var(--border);
  }

  .cookies-table {
    overflow-x: auto;
  }

  .browser-links {
    justify-content: center;
  }

  .contact-info div {
    flex-direction: column;
    text-align: center;
  }

  .btn-primary,
  .btn-outline {
    width: 100%;
    justify-content: center;
  }
}

/* Smooth scrolling for anchor links */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

/* Focus visible for accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}
