/* HERO */
.privacy-hero {
  background: var(--blue);
  position: relative; overflow: hidden;
  padding: 72px 28px 84px;
}
.privacy-hero::before {
  content: ''; position: absolute; inset: 0; z-index: 0; opacity: 0.05;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 44px, rgba(255,255,255,1) 44px, rgba(255,255,255,1) 45px),
    repeating-linear-gradient(90deg, transparent, transparent 44px, rgba(255,255,255,1) 44px, rgba(255,255,255,1) 45px);
}
.privacy-hero-blob { position: absolute; right: -80px; top: -100px; width: 460px; height: 460px; border-radius: 50%; background: rgba(255,255,255,0.07); z-index: 0; }
.privacy-hero-inner { max-width: 1200px; margin: 0 auto; position: relative; z-index: 1; }
.crumbs { font-size: 13px; color: rgba(255,255,255,0.65); margin-bottom: 16px; }
.crumbs a { color: rgba(255,255,255,0.85); text-decoration: none; }
.crumbs a:hover { color: #fff; text-decoration: underline; }
.crumbs span.sep { margin: 0 8px; color: rgba(255,255,255,0.4); }
.privacy-hero h1 { font-family: var(--font-head); font-size: clamp(32px, 4.5vw, 52px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 16px; max-width: 900px; }
.privacy-hero p.lede { font-size: 17px; color: rgba(255,255,255,0.85); line-height: 1.65; max-width: 760px; margin-bottom: 20px; }
.privacy-hero p.updated { font-size: 13px; color: rgba(255,255,255,0.55); font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; }

/* MAIN LAYOUT */
.privacy-section { padding: 72px 0 96px; background: var(--off-white); }
.privacy-container { max-width: 1200px; margin: 0 auto; padding: 0 28px; display: grid; grid-template-columns: 260px 1fr; gap: 56px; align-items: start; }

/* TOC */
.toc {
  position: sticky; top: 84px;
  background: #fff; border: 1px solid var(--border); border-radius: 10px;
  padding: 24px 22px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.toc h3 {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 2px solid var(--blue-light);
}
.toc ul { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.toc a {
  display: block;
  font-size: 13.5px; color: var(--text-mid); text-decoration: none;
  padding: 7px 10px; border-radius: 4px; line-height: 1.4;
  border-left: 2px solid transparent;
  transition: all .15s;
}
.toc a:hover { color: var(--blue); background: var(--blue-light); border-left-color: var(--blue); }

/* CONTENT CARD */
.privacy-content {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 56px 56px 64px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.04);
}
.privacy-content h2 {
  font-family: var(--font-head);
  font-size: 26px; font-weight: 800; color: var(--text);
  margin-top: 44px; margin-bottom: 16px; line-height: 1.25;
  scroll-margin-top: 88px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--blue-light);
}
.privacy-content h2:first-child { margin-top: 0; }
.privacy-content h3 {
  font-family: var(--font-head);
  font-size: 18px; font-weight: 700; color: var(--navy);
  margin-top: 26px; margin-bottom: 10px;
}
.privacy-content p {
  font-size: 15.5px; color: var(--text-mid); line-height: 1.75; margin-bottom: 14px;
}
.privacy-content p strong { color: var(--text); font-weight: 600; }
.privacy-content a {
  color: var(--blue); text-decoration: none; font-weight: 500;
  border-bottom: 1px solid rgba(35,127,195,0.3);
  transition: border-color .15s, color .15s;
}
.privacy-content a:hover { color: var(--blue-dark); border-bottom-color: var(--blue-dark); }
.privacy-content ul { list-style: none; padding-left: 0; margin-bottom: 14px; }
.privacy-content ul li {
  font-size: 15.5px; color: var(--text-mid); line-height: 1.7;
  padding-left: 22px; position: relative; margin-bottom: 8px;
}
.privacy-content ul li::before {
  content: ''; position: absolute; left: 4px; top: 11px;
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
}

/* CALLOUT */
.callout {
  background: var(--blue-light); border-left: 4px solid var(--blue);
  padding: 18px 22px; border-radius: 0 6px 6px 0;
  margin: 18px 0;
}
.callout p { font-size: 14.5px; color: var(--text); margin-bottom: 0; }
.callout p strong { color: var(--blue-dark); }

/* CTA STRIP */
.cta-strip {
  background: var(--blue); padding: 64px 28px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content:''; position:absolute; inset:0; opacity:0.05;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 44px, rgba(255,255,255,1) 44px, rgba(255,255,255,1) 45px),
    repeating-linear-gradient(90deg, transparent, transparent 44px, rgba(255,255,255,1) 44px, rgba(255,255,255,1) 45px);
}
.cta-strip-inner { max-width: 680px; margin: 0 auto; position: relative; z-index: 1; }
.cta-strip h2 { font-family: var(--font-head); font-size: clamp(24px, 3vw, 34px); font-weight: 800; color: #fff; margin-bottom: 12px; line-height: 1.2; }
.cta-strip p { font-size: 16px; color: rgba(255,255,255,0.82); line-height: 1.6; margin-bottom: 28px; }
.btn-white-sm {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--blue); font-size: 15px; font-weight: 700;
  padding: 14px 28px; border-radius: 5px; text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15); transition: transform .15s, box-shadow .15s;
}
.btn-white-sm:hover { transform: translateY(-2px); box-shadow: 0 14px 32px rgba(0,0,0,0.2); }

/* FOOTER */
footer { background: var(--footer-bg); color: rgba(255,255,255,0.72); }
.footer-grid { max-width: 1200px; margin: 0 auto; padding: 56px 28px 40px; display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; }
.f-brand p { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.65; margin-top: 12px; max-width: 240px; }
.f-social { display: flex; gap: 8px; margin-top: 16px; }
.f-soc { width: 32px; height: 32px; background: rgba(255,255,255,0.1); border-radius: 4px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.65); text-decoration: none; font-size: 13px; font-weight: 700; transition: background .2s; }
.f-soc:hover { background: var(--blue); color: #fff; }
.f-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(255,255,255,0.38); margin-bottom: 16px; }
.f-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.f-col a { font-size: 14px; color: rgba(255,255,255,0.62); text-decoration: none; transition: color .2s; }
.f-col a:hover { color: #fff; }
.f-contact p { font-size: 14px; color: rgba(255,255,255,0.62); line-height: 1.7; margin-bottom: 4px; }
.f-contact a { color: rgba(255,255,255,0.62); text-decoration: none; transition: color .2s; }
.f-contact a:hover { color: #fff; }
.footer-bot { border-top: 1px solid rgba(255,255,255,0.1); max-width: 1200px; margin: 0 auto; padding: 18px 28px; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.38); flex-wrap: wrap; gap: 10px; }
.footer-bot a { color: rgba(255,255,255,0.38); text-decoration: none; }
.footer-bot a:hover { color: rgba(255,255,255,0.75); }
.footer-bot-links { display: flex; gap: 20px; }

@media(max-width:960px){
  .privacy-container { grid-template-columns: 1fr; gap: 32px; }
  .toc { position: static; }
  .privacy-content { padding: 36px 32px 44px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media(max-width:620px){
  .nav-links { display: none; }
  .privacy-content { padding: 28px 22px 36px; }
  .privacy-content h2 { font-size: 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
}