
/* ─── HERO ─── */
.page-hero {
  padding: 48px 48px 0;
  text-align: center; max-width: 760px; margin: 0 auto;
}
.page-hero .eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  padding: 8px 18px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500; color: var(--text-mid);
  letter-spacing: 0.09em; text-transform: uppercase;
  margin-bottom: 28px;
}
.eyebrow-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, #c98472, #8b7cba);
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.5); opacity: 0.7; }
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 300; line-height: 1.10; letter-spacing: -0.01em;
  color: var(--text-dark); margin-bottom: 22px;
}
.page-hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, #a090d0, #d4a8c7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero-sub {
  font-size: 17px; font-weight: 300; color: var(--text-mid);
  line-height: 1.72; max-width: 720px; margin: 0 auto 36px;
}
.page-meta {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; flex-wrap: wrap;
  font-size: 13px; color: var(--text-light);
  padding: 16px 24px; border-radius: 16px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  max-width: 520px; margin: 0 auto 56px;
}

/* ─── COMPLIANCE BADGES ─── */
.badge-row {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; flex-wrap: wrap; margin-bottom: 72px;
}
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 16px; border-radius: var(--radius-pill);
  font-size: 12px; font-weight: 500; letter-spacing: 0.04em;
  border: 1px solid;
}
.badge-google { background: rgba(195,224,212,0.18); border-color: rgba(195,224,212,0.50); color: #4a8a70; }
.badge-apple  { background: rgba(189,213,234,0.18); border-color: rgba(189,213,234,0.50); color: #3a6a8a; }
.badge-gdpr   { background: rgba(200,191,231,0.18); border-color: rgba(200,191,231,0.50); color: #6a5a9a; }
.badge-coppa  { background: rgba(245,201,179,0.18); border-color: rgba(245,201,179,0.50); color: #8a5a3a; }
.badge-child  { background: rgba(217,188,148,0.18); border-color: rgba(217,188,148,0.50); color: #7a6030; }

/* ─── TOC ─── */
.toc-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px 72px; isolation: isolate; }
.toc-card {
  background: var(--glass-bg); border: 1.5px solid var(--glass-border);
  backdrop-filter: blur(16px); border-radius: var(--radius-card);
  padding: 36px 40px; box-shadow: var(--shadow-soft);
}
.toc-card h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--text-dark); margin-bottom: 24px;
}
.toc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px 40px; }
.toc-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; color: var(--text-mid); padding: 7px 0;
  border-bottom: 1px solid rgba(200,191,231,0.15);
  text-decoration: none; transition: color 0.3s;
}
.toc-item:hover { color: var(--text-dark); }
.toc-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px; font-weight: 300; color: var(--text-light); min-width: 28px;
}

/* ─── CONTENT WRAP ─── */
.content-wrap { max-width: 1200px; margin: 0 auto; padding: 0 48px 100px; isolation: isolate; }

/* ─── SECTION ─── */
.del-section { margin-bottom: 64px; scroll-margin-top: 100px; }
.del-section-header {
  display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
}
.del-section-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 14px; font-weight: 300; color: var(--text-light); min-width: 32px;
}
.del-section h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(24px, 3vw, 32px); font-weight: 300;
  line-height: 1.18; color: var(--text-dark);
}
.del-section h2 em {
  font-style: italic;
  background: linear-gradient(135deg, #a090d0, #d4a8c7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.del-section h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px; font-weight: 400; color: var(--text-dark);
  margin: 28px 0 14px;
}
.del-section p {
  font-size: 16px; font-weight: 300; color: var(--text-mid);
  line-height: 1.82; margin-bottom: 18px;
}
.del-section p:last-child { margin-bottom: 0; }

/* ─── LISTS ─── */
.del-section ul, .del-section ol {
  padding-left: 0; list-style: none;
  margin: 16px 0 20px; display: flex; flex-direction: column; gap: 10px;
}
.del-section ul li, .del-section ol li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.68;
}
.del-section ul li::before {
  content: ''; display: block; width: 6px; height: 6px; border-radius: 50%;
  background: linear-gradient(135deg, var(--lavender), var(--peach));
  flex-shrink: 0; margin-top: 9px;
}
.del-section ol { counter-reset: step-counter; }
.del-section ol li { counter-increment: step-counter; }
.del-section ol li::before {
  content: counter(step-counter);
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; color: var(--text-light); min-width: 24px;
  flex-shrink: 0; margin-top: 1px;
}

/* ─── STEP LIST (numbered, more visual) ─── */
.step-list { display: flex; flex-direction: column; gap: 14px; margin: 24px 0; }
.step-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px); border-radius: 18px; padding: 18px 22px;
  transition: box-shadow 0.3s;
}
.step-item:hover { box-shadow: var(--shadow-soft); }
.step-num {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, rgba(200,191,231,0.30), rgba(245,201,179,0.25));
  border: 1px solid rgba(200,191,231,0.40);
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 300; color: var(--text-mid);
}
.step-text h4 {
  font-size: 15px; font-weight: 500; color: var(--text-dark); margin-bottom: 4px;
}
.step-text p {
  font-size: 13px; color: var(--text-light); line-height: 1.60;
  margin: 0; font-weight: 300;
}

/* ─── CALLOUTS ─── */
.callout {
  border-radius: 18px; padding: 22px 24px; margin: 24px 0;
  border-left: 4px solid;
  font-size: 15px; font-weight: 300; line-height: 1.72;
}
.callout-info     { background: rgba(189,213,234,0.15); border-color: rgba(189,213,234,0.60); color: var(--text-mid); }
.callout-warning  { background: rgba(245,201,179,0.16); border-color: rgba(245,201,179,0.65); color: var(--text-mid); }
.callout-important{ background: rgba(200,191,231,0.16); border-color: rgba(200,191,231,0.65); color: var(--text-mid); }
.callout-danger   { background: rgba(232,136,90,0.10);  border-color: rgba(232,136,90,0.50);  color: #7a4a2a; }
.callout-success  { background: rgba(195,224,212,0.18); border-color: rgba(195,224,212,0.55); color: #3a6a50; }
.callout strong { color: var(--text-dark); font-weight: 500; }

/* ─── SUB CARDS ─── */
.sub-card {
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(14px); border-radius: 20px;
  padding: 24px 26px; margin: 20px 0; box-shadow: var(--shadow-soft);
}
.sub-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px; font-weight: 400; color: var(--text-dark);
  margin-bottom: 14px; display: flex; align-items: center; gap: 10px;
}
.sub-card p { font-size: 14px; color: var(--text-mid); line-height: 1.68; margin: 0; }

/* ─── DATA GRID (what gets deleted) ─── */
.data-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px;
  margin: 24px 0;
}
.data-chip {
  display: flex; align-items: center; gap: 10px;
  background: var(--glass-bg); border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px); border-radius: 14px;
  padding: 14px 16px; font-size: 14px; font-weight: 400;
  color: var(--text-mid);
}
.data-chip-icon { font-size: 18px; flex-shrink: 0; }
.data-chip.deleted { border-color: rgba(232,136,90,0.30); }
.data-chip.deleted .data-chip-icon::after { content: ''; }
.data-chip.retained { border-color: rgba(200,191,231,0.40); }

/* ─── EMAIL FORM BOX ─── */
.email-box {
  background: linear-gradient(135deg, rgba(200,191,231,0.14), rgba(245,201,179,0.10));
  border: 1.5px solid rgba(200,191,231,0.35);
  border-radius: var(--radius-card); padding: 36px 40px; margin: 28px 0;
}
.email-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 400; color: var(--text-dark);
  margin-bottom: 20px;
}
.email-field { margin-bottom: 18px; }
.email-field label {
  display: block; font-size: 11px; font-weight: 500;
  letter-spacing: 0.10em; text-transform: uppercase;
  color: var(--text-light); margin-bottom: 8px;
}
.email-field .field-value {
  font-size: 15px; color: var(--text-dark); font-weight: 400;
}
.email-field .field-value a { color: #a090d0; text-decoration: none; }
.email-field .field-value a:hover { text-decoration: underline; }
.email-field .field-note {
  font-size: 13px; color: var(--text-light); margin-top: 4px;
  font-weight: 300; font-style: italic;
}

/* ─── TIMELINE VISUAL ─── */
.timeline { display: flex; flex-direction: column; gap: 0; margin: 24px 0; position: relative; }
.timeline::before {
  content: ''; position: absolute; left: 18px; top: 28px; bottom: 28px;
  width: 1px; background: linear-gradient(180deg, rgba(200,191,231,0.40), rgba(245,201,179,0.30));
}
.timeline-item {
  display: flex; gap: 20px; align-items: flex-start; padding: 16px 0;
  position: relative;
}
.timeline-dot {
  width: 38px; height: 38px; border-radius: 50%; flex-shrink: 0;
  background: var(--glass-bg); border: 1.5px solid rgba(200,191,231,0.45);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px; position: relative; z-index: 1;
  backdrop-filter: blur(8px);
}
.timeline-body h4 {
  font-size: 15px; font-weight: 500; color: var(--text-dark); margin-bottom: 5px;
}
.timeline-body p {
  font-size: 14px; color: var(--text-light); line-height: 1.60;
  margin: 0; font-weight: 300;
}

/* ─── FAQ SECTION ─── */
.faq-item { border-bottom: 1px solid rgba(200,191,231,0.18); }
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0; text-align: left;
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 400;
  color: var(--text-dark); gap: 16px; transition: color 0.3s;
}
.faq-q:hover { color: var(--text-mid); }
.faq-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(200,191,231,0.20); border: 1px solid rgba(200,191,231,0.30);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0; color: var(--text-mid);
  transition: transform 0.3s ease, background 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); background: rgba(200,191,231,0.35); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.45s cubic-bezier(0.16,1,0.3,1), padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 20px; }
.faq-a p { font-size: 15px; font-weight: 300; color: var(--text-mid); line-height: 1.78; }

/* ─── CONTACT CARD ─── */
.contact-card {
  background: linear-gradient(135deg, rgba(200,191,231,0.14), rgba(245,201,179,0.10));
  border: 1.5px solid rgba(200,191,231,0.30);
  border-radius: var(--radius-card); padding: 40px 44px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
  margin-top: 32px;
}
.contact-item { display: flex; flex-direction: column; gap: 6px; }
.contact-label {
  font-size: 11px; font-weight: 500; letter-spacing: 0.10em;
  text-transform: uppercase; color: var(--text-light);
}
.contact-value { font-size: 15px; color: var(--text-dark); font-weight: 400; }
.contact-value a { color: #a090d0; text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }

/* ─── DIVIDER ─── */
.del-divider { border: none; border-top: 1px solid rgba(200,191,231,0.22); margin: 56px 0; }

/* ─── UPDATED CHIP ─── */
.updated-chip {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(200,191,231,0.14); border: 1px solid rgba(200,191,231,0.30);
  border-radius: var(--radius-pill); padding: 6px 14px;
  font-size: 12px; color: var(--text-light); letter-spacing: 0.04em;
}

/* ─── DELETE CTA BUTTON ─── */
.delete-cta {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, rgba(232,136,90,0.90), rgba(195,80,80,0.80));
  color: white; padding: 16px 34px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 500; text-decoration: none;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 28px rgba(200,80,60,0.28);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: none; cursor: pointer;
}
.delete-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(200,80,60,0.40); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--glass-bg); border: 1px solid rgba(200,191,231,0.40);
  backdrop-filter: blur(12px); color: var(--text-mid);
  padding: 16px 30px; border-radius: var(--radius-pill);
  font-size: 15px; font-weight: 400; text-decoration: none;
  transition: all 0.3s ease;
}
.btn-ghost:hover { background: rgba(255,255,255,0.90); color: var(--text-dark); transform: translateY(-2px); }

/* ─── REVEAL ─── */
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.16,1,0.3,1), transform 0.85s cubic-bezier(0.16,1,0.3,1);
}
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.10s; }
.reveal-delay-2 { transition-delay: 0.20s; }
.reveal-delay-3 { transition-delay: 0.30s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .toc-wrap,
  .content-wrap { padding-left: 24px; padding-right: 24px; }
  .page-hero { padding: 40px 24px 0; }
  .toc-grid { grid-template-columns: 1fr; }
  .contact-card { grid-template-columns: 1fr; gap: 20px; padding: 28px 24px; }
  .data-grid { grid-template-columns: 1fr 1fr; }
  .email-box { padding: 24px 22px; }
}

@media (max-width: 640px) {
  .page-hero h1 { font-size: 34px; }
  .page-hero-sub { font-size: 15px; }
  .page-meta { flex-direction: column; gap: 8px; padding: 14px 16px; font-size: 12px; }
  .badge-row { gap: 8px; }
  .del-section h2 { font-size: 22px; }
  .data-grid { grid-template-columns: 1fr; }
  .step-item { padding: 14px 14px; gap: 12px; }
  .step-num { width: 30px; height: 30px; font-size: 15px; flex-shrink: 0; }
  .email-box { padding: 20px 16px; }
  .delete-cta,
  .btn-ghost { width: 100%; justify-content: center; }
  .timeline::before { left: 16px; }
  .timeline-dot { width: 32px; height: 32px; font-size: 14px; }

  /* Nav sticky fix for mobile */
  #main-nav  { position: fixed !important; z-index: 9999 !important; }
  #nav-drawer  { z-index: 10001 !important; }
  #nav-overlay { z-index: 10000 !important; }
  ol li{list-style: none;}
}
