/* ============================================================
   MUSPREY – Privacy Page Stylesheet
   ============================================================ */

/* ----- Page Layout ----- */
.privacy-page {
  background: var(--off-white);
}

/* ----- Privacy Hero Header ----- */
.privacy-hero {
  padding: calc(var(--nav-height) + 60px) 48px 60px;
  background: var(--green);
  position: relative; overflow: hidden;
}
.privacy-hero::before {
  content: '🔒';
  position: absolute; right: 5%; top: 50%;
  transform: translateY(-50%);
  font-size: 220px; opacity: 0.05;
  line-height: 1; pointer-events: none;
}
.privacy-hero-inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 60px;
}
.privacy-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700; color: white;
  line-height: 1.15; margin-bottom: 20px;
}
.privacy-hero-sub {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  line-height: 1.7; font-weight: 300;
  max-width: 520px; margin-bottom: 24px;
}
.privacy-hero .last-updated {
  background: rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  border: 1px solid rgba(255,255,255,0.2);
}
.privacy-hero .section-label {
  color: var(--gold-light);
}
.privacy-hero-icon {
  flex-shrink: 0;
}
.shield-icon {
  width: 120px; height: 120px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: 32px;
  display: flex; align-items: center; justify-content: center;
  font-size: 56px;
  backdrop-filter: blur(8px);
}

/* ----- Main Content Area ----- */
.privacy-main {
  padding: 60px 48px 100px;
}

/* ----- Layout ----- */
.privacy-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 48px; align-items: start;
}

/* ----- Sidebar ----- */
.privacy-sidebar {
  position: sticky; top: calc(var(--nav-height) + 24px);
  background: white; border-radius: var(--radius);
  padding: 28px; border: 1px solid rgba(45,106,45,0.08);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
}
.privacy-sidebar h4 {
  font-size: 0.68rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.14em;
  color: var(--text-light); margin-bottom: 14px;
}
.privacy-nav {
  display: flex; flex-direction: column; gap: 4px;
  margin-bottom: 24px;
}
.privacy-nav a {
  display: block; font-size: 0.84rem; font-weight: 500;
  color: var(--text-mid); padding: 8px 12px;
  border-radius: 8px; border-left: 2px solid transparent;
  transition: all 0.2s;
}
.privacy-nav a:hover,
.privacy-nav a.active {
  color: var(--green); border-left-color: var(--green);
  background: var(--green-light);
}
.sidebar-back {
  border-top: 1px solid rgba(45,106,45,0.08);
  padding-top: 16px;
}
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.84rem; font-weight: 500;
  color: var(--text-light); transition: color 0.2s;
}
.back-link:hover { color: var(--green); }

/* ----- Content ----- */
.privacy-content {
  display: flex; flex-direction: column; gap: 24px;
}

/* ----- Privacy Section Cards ----- */
.privacy-section {
  background: white; border-radius: var(--radius);
  padding: 36px; border: 1px solid rgba(45,106,45,0.08);
  box-shadow: 0 2px 16px rgba(0,0,0,0.03);
  position: relative; overflow: hidden;
}
.privacy-section::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--green);
  border-radius: 4px 0 0 4px;
}
.section-icon {
  font-size: 28px; margin-bottom: 16px;
  display: block;
}
.privacy-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 14px;
}
.privacy-section p,
.privacy-section li {
  font-size: 0.92rem; color: var(--text-mid);
  line-height: 1.8; font-weight: 300;
}
.privacy-section ul {
  padding-left: 0; list-style: none;
  display: flex; flex-direction: column;
  gap: 10px; margin-top: 14px;
}
.privacy-section li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 12px 16px; border-radius: 10px;
  background: var(--off-white);
}
.privacy-section li::before {
  content: '✓';
  color: var(--green); font-weight: 700;
  font-size: 0.85rem; flex-shrink: 0;
  margin-top: 1px;
}

/* ----- Highlight Box ----- */
.highlight-box {
  margin-top: 20px; padding: 16px 20px;
  background: var(--green-light);
  border-left: 3px solid var(--green);
  border-radius: 0 10px 10px 0;
  font-size: 0.9rem; color: var(--text-mid);
  line-height: 1.7;
}
.highlight-box strong { color: var(--green); }

/* ----- Info Grid (Security section) ----- */
.info-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; margin-top: 20px;
}
.info-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 8px;
  padding: 20px 12px; border-radius: 12px;
  background: var(--off-white);
  border: 1px solid rgba(45,106,45,0.08);
  font-size: 0.82rem; color: var(--text-mid); font-weight: 400;
  line-height: 1.4;
}
.info-icon { font-size: 28px; }

/* ----- Contact Card ----- */
.contact-card {
  display: flex; align-items: center; gap: 16px;
  margin-top: 20px; padding: 20px 24px;
  background: var(--off-white); border-radius: 14px;
  border: 1.5px solid rgba(45,106,45,0.12);
  transition: all 0.2s;
}
.contact-card:hover {
  border-color: var(--green); background: var(--green-pale);
  transform: translateX(4px);
}
.contact-card-icon {
  font-size: 28px; flex-shrink: 0;
}
.contact-card div {
  display: flex; flex-direction: column; gap: 2px;
}
.contact-card-label {
  font-size: 0.72rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: var(--text-light);
}
.contact-card-value {
  font-size: 1rem; font-weight: 500; color: var(--text-dark);
}

/* ----- Active nav link in navbar ----- */
.nav-active {
  color: var(--green) !important;
  font-weight: 600 !important;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .privacy-hero { padding: calc(var(--nav-height) + 40px) 24px 48px; }
  .privacy-hero-inner { flex-direction: column; gap: 32px; }
  .shield-icon { width: 80px; height: 80px; font-size: 36px; }
  .privacy-main { padding: 40px 24px 60px; }
  .privacy-layout { grid-template-columns: 1fr; }
  .privacy-sidebar { position: static; }
  .info-grid { grid-template-columns: 1fr; }
}
