/* ── Hero ── */
.hero {
  position: relative !important;
  width: 100% !important;
  min-height: 320px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  overflow: hidden !important;
  padding: 0 !important;
  background: linear-gradient(135deg, #e8edf5 0%, #dde4f0 100%) !important;
}

.hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  top: 0;
  left: 0;
  z-index: 0;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(248, 250, 252, 0.45);
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 800px;
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 1rem;
}

.hero-gradient-text {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p {
  font-size: 1.05rem;
  color: #334155;
  max-width: 520px;
  line-height: 1.65;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #1e293b;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: #667eea;
  border-radius: 50%;
  display: inline-block;
}

@media (max-width: 768px) {
  /* .hero {
    min-height: 44vh !important;
  } */

  .hero .container {
    padding: 3rem 1.2rem;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2rem);
  }

  .hero p {
    font-size: 0.93rem;
  }

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

/* ── Page layout ── */
.page-content {
  background: linear-gradient(160deg, #f1f5f9 0%, #e8edf5 100%);
  padding: 0;
  min-height: 60vh;
}

/* ── Privacy Layout ── */
.privacy-layout {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 60px;
  gap: 32px;
}

/* ── TOC Sidebar ── */
.toc-sidebar {
  width: 230px;
  flex-shrink: 0;
  position: sticky;
  top: 80px;
  max-height: calc(100vh - 100px);
  overflow-y: auto;
}

.toc-inner {
  background: white;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 4px 24px rgba(102, 126, 234, 0.10);
  border: 1px solid #e8edf5;
}

.toc-header {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 7px;
}

.toc-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.toc-link {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 7px 10px;
  border-radius: 8px;
  font-size: 0.81rem;
  color: #64748b;
  text-decoration: none;
  transition: background 0.18s, color 0.18s;
  font-weight: 500;
}

.toc-link:hover,
.toc-link.active {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.10), rgba(118, 75, 162, 0.10));
  color: #667eea;
}

.toc-num {
  font-size: 0.68rem;
  font-weight: 700;
  min-width: 22px;
}

.toc-link.active .toc-num {
  color: #667eea;
}

.toc-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  padding: 9px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.2s;
}

.toc-cta:hover {
  opacity: 0.88;
}

/* ── Main Content ── */
.privacy-main {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

/* ── Content Box ── */
.content-box {
  background: white;
  padding: 30px 32px;
  margin-bottom: 16px;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.07);
  border: 1px solid #e8edf5;
  transition: box-shadow 0.2s, transform 0.2s;
  scroll-margin-top: 90px;
}

.content-box:hover {
  box-shadow: 0 6px 28px rgba(102, 126, 234, 0.13);
  transform: translateY(-2px);
}

.content-box h2 {
  background: linear-gradient(135deg, #667eea, #764ba2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 1.22rem;
  font-weight: 800;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid #f1f5f9;
}

.content-box p {
  color: #475569;
  line-height: 1.8;
  margin-bottom: 10px;
  font-size: 0.95rem;
}

.content-box p:last-child {
  margin-bottom: 0;
}

.content-box strong {
  color: #1e293b;
  font-weight: 700;
}

/* ── Section Icon ── */
.section-icon-wrap {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.section-icon-wrap i {
  color: #667eea;
  font-size: 1.1rem;
}

/* ── Info Boxes ── */
.info-box {
  /* display: flex; */
  align-items: flex-start;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.info-box i {
  margin-top: 2px;
  flex-shrink: 0;
}

.info-blue {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  color: #1e40af;
}

.info-blue i {
  color: #3b82f6;
}

.info-green {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.info-green i {
  color: #22c55e;
}

.info-warn {
  background: #fffbeb;
  border: 1px solid #fde68a;
  color: #92400e;
}

.info-warn i {
  color: #f59e0b;
}

/* ── Highlight Strip ── */
.highlight-strip {
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
  border-left: 4px solid #667eea;
  padding: 12px 16px;
  border-radius: 0 10px 10px 0;
  color: #334155;
  font-size: 0.92rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

/* ── Privacy Stats (intro) ── */
.privacy-stats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.pstat-card {
  flex: 1;
  min-width: 110px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.08), rgba(118, 75, 162, 0.08));
  border: 1px solid #c7d2fe;
  font-size: 0.85rem;
  font-weight: 600;
  color: #4338ca;
}

.pstat-card i {
  color: #667eea;
  font-size: 1rem;
}

/* ── Data Grid ── */
.data-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.data-card {
  background: #f8fafc;
  border: 1px solid #e8edf5;
  border-radius: 12px;
  padding: 16px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.data-card:hover {
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.10);
  border-color: #c7d2fe;
}

.data-card-head {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e8edf5;
}

.data-card-head i {
  color: #667eea;
}

.data-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.data-card ul li {
  font-size: 0.85rem;
  color: #64748b;
  line-height: 1.5;
  padding-left: 12px;
  position: relative;
}

.data-card ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #667eea;
}

/* ── Use List ── */
.use-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.use-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 13px 14px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.use-item:hover {
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.10);
  border-color: #c7d2fe;
}

.use-item>i {
  color: #667eea;
  font-size: 1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.use-item strong {
  display: block;
  font-size: 0.88rem;
  color: #1e293b;
  margin-bottom: 2px;
}

.use-item p {
  font-size: 0.83rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ── Security Grid ── */
.security-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 14px;
}

.sec-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.sec-card:hover {
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.10);
  border-color: #c7d2fe;
}

.sec-card>i {
  color: #667eea;
  font-size: 1.2rem;
}

.sec-card strong {
  font-size: 0.9rem;
  color: #1e293b;
}

.sec-card p {
  font-size: 0.83rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ── Share Cards ── */
.share-cards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.share-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.share-card:hover {
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.10);
  border-color: #c7d2fe;
}

.share-card>i {
  color: #667eea;
  font-size: 1.1rem;
  margin-top: 3px;
  flex-shrink: 0;
  width: 20px;
  text-align: center;
}

.share-card strong {
  display: block;
  font-size: 0.92rem;
  color: #1e293b;
  margin-bottom: 3px;
}

.share-card p {
  font-size: 0.87rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

.share-card--warn {
  background: #fffbeb;
  border-color: #fde68a;
}

.share-card--warn>i {
  color: #f59e0b;
}

/* ── Cookie Cards ── */
.cookie-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-card {
  flex: 1;
  min-width: 160px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.cookie-card:hover {
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.10);
  border-color: #c7d2fe;
}

.cookie-card>i {
  color: #667eea;
  font-size: 1.2rem;
}

.cookie-card strong {
  font-size: 0.9rem;
  color: #1e293b;
}

.cookie-card p {
  font-size: 0.83rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ── Rights Grid ── */
.rights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.right-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding: 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.06), rgba(118, 75, 162, 0.06));
  border: 1px solid #c7d2fe;
  transition: box-shadow 0.2s, transform 0.2s;
}

.right-card:hover {
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.14);
  transform: translateY(-2px);
}

.right-card>i {
  color: #667eea;
  font-size: 1.2rem;
}

.right-card strong {
  font-size: 0.9rem;
  color: #1e293b;
}

.right-card p {
  font-size: 0.83rem;
  color: #64748b;
  margin: 0;
  line-height: 1.5;
}

/* ── Retention List ── */
.retention-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.retention-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.retention-item:hover {
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.10);
  border-color: #c7d2fe;
}

.retention-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background: linear-gradient(135deg, #667eea, #764ba2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.retention-icon i {
  color: white;
  font-size: 0.95rem;
}

.retention-item strong {
  display: block;
  font-size: 0.92rem;
  color: #1e293b;
  margin-bottom: 3px;
}

.retention-item p {
  font-size: 0.87rem;
  color: #64748b;
  margin: 0;
  line-height: 1.55;
}

/* ── Benefits List ── */
.benefits-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.benefits-list li {
  padding: 13px 16px;
  color: #475569;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.65;
  font-size: 0.95rem;
  background: #f8fafc;
  border-radius: 10px;
  border: 1px solid #e8edf5;
  transition: box-shadow 0.2s, transform 0.2s;
}

.benefits-list li:hover {
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.10);
  transform: translateX(4px);
  background: white;
  border-color: #c7d2fe;
}

.benefits-list i {
  color: #667eea;
  margin-top: 3px;
  font-size: 1rem;
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

/* ── Contact Card ── */
.contact-card {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 14px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e8edf5;
  color: #475569;
  font-size: 0.92rem;
  text-decoration: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}

.contact-item:hover {
  box-shadow: 0 4px 14px rgba(102, 126, 234, 0.12);
  border-color: #c7d2fe;
  color: #667eea;
}

.contact-item i {
  color: #667eea;
  font-size: 1rem;
}

/* ── Shimmer ── */
@keyframes shimmerSweep {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}

.shimmer-icon,
.shimmer-title,
.shimmer-text {
  display: block;
  border-radius: 6px;
  background: linear-gradient(90deg, #e8edf5 25%, #f8fafc 50%, #e8edf5 75%);
  background-size: 800px 100%;
  animation: shimmerSweep 1.5s ease-in-out infinite;
}

.shimmer-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  margin-bottom: 16px;
}

.shimmer-title {
  height: 20px;
  width: 50%;
  margin-bottom: 18px;
  border-radius: 8px;
}

.shimmer-text {
  height: 13px;
  width: 100%;
  margin-bottom: 10px;
}

.shimmer-text.w85 { width: 85%; }
.shimmer-text.w70 { width: 70%; }
.shimmer-text.w90 { width: 90%; }
.shimmer-text.w60 { width: 60%; }

.shimmer-card {
  pointer-events: none;
  cursor: default;
}
.shimmer-card:hover {
  transform: none !important;
  box-shadow: 0 2px 12px rgba(102,126,234,0.07) !important;
}

.shimmer-sidebar .toc-inner {
  background: white;
  border-radius: 16px;
  padding: 20px 16px;
  box-shadow: 0 4px 24px rgba(102,126,234,0.10);
  border: 1px solid #e8edf5;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .toc-sidebar {
    display: none;
  }
  .shimmer-sidebar {
    display: none;
  }
  .privacy-layout {
    padding: 20px 12px 40px;
  }
}

@media (max-width: 768px) {
  .content-box {
    padding: 22px 18px;
    border-radius: 12px;
  }

  .content-box h2 {
    font-size: 1.1rem;
  }

  .content-box p {
    font-size: 0.92rem;
  }

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

  .use-list {
    grid-template-columns: 1fr;
  }

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

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

  .benefits-list li {
    padding: 10px 13px;
    font-size: 0.9rem;
  }

  .shimmer-title {
    width: 60%;
  }
}

@media (max-width: 480px) {
  .rights-grid {
    grid-template-columns: 1fr;
  }

  .privacy-stats {
    flex-direction: column;
  }
}

/* ── Contact Us Strip ── */
.contact-us-strip {
  background: white;
  border: 1px solid #e8edf5;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(102, 126, 234, 0.07);
  margin-bottom: 0;
}

.contact-us-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.contact-us-left {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-us-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.12), rgba(118, 75, 162, 0.12));
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-us-icon i {
  color: #667eea;
  font-size: 1.3rem;
}

.contact-us-left h3 {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
  margin: 0 0 4px;
}

.contact-us-left p {
  font-size: 0.85rem;
  color: #64748b;
  margin: 0;
}

.contact-us-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #667eea, #764ba2);
  color: white;
  font-weight: 800;
  font-size: 0.9rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(102, 126, 234, 0.3);
  transition: transform 0.2s, box-shadow 0.2s;
  white-space: nowrap;
}

.contact-us-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.2);
}

@media (max-width: 640px) {
  .contact-us-strip-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-us-btn {
    width: 100%;
    justify-content: center;
  }
}
/* ══════════════════════════════════════════
   DARK MODE — instant via html.dark-mode
   Applies to: About, FAQ, Terms, Privacy, Contact
   ══════════════════════════════════════════ */

/* Body & page bg */
html.dark-mode body,
body.dark-mode {
  background: #0d1117 !important;
  color: #e6edf3 !important;
  transition: none !important;
}
html.dark-mode .page-content,
body.dark-mode .page-content {
  background: #0d1117 !important;
  transition: none !important;
}

/* Content boxes — instant bg + border */
html.dark-mode .content-box,
body.dark-mode .content-box {
  background: #161b22 !important;
  border-bottom-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .content-box:nth-child(even),
body.dark-mode .content-box:nth-child(even) {
  background: #0d1117 !important;
}
html.dark-mode .content-box:nth-child(even):hover,
body.dark-mode .content-box:nth-child(even):hover {
  background: #161b22 !important;
}
html.dark-mode .content-box h2,
body.dark-mode .content-box h2 {
  border-bottom-color: #30363d !important;
}
html.dark-mode .content-box > p,
body.dark-mode .content-box > p { color: #8b949e !important; }
html.dark-mode .content-box strong,
body.dark-mode .content-box strong { color: #e6edf3 !important; }

/* Hero */
html.dark-mode .hero::before,
body.dark-mode .hero::before {
  background: rgba(13,17,23,0.55) !important;
}
html.dark-mode .hero-badge,
body.dark-mode .hero-badge {
  background: rgba(124,106,247,0.18) !important;
  border-color: rgba(124,106,247,0.35) !important;
  color: #c9d1d9 !important;
}
html.dark-mode .hero-badge-dot,
body.dark-mode .hero-badge-dot { background: #a78bfa !important; }
html.dark-mode .hero h1,
body.dark-mode .hero h1 { color: #e6edf3 !important; }
html.dark-mode .hero p,
body.dark-mode .hero p { color: #8b949e !important; }

/* Feature items */
html.dark-mode .feature-item,
body.dark-mode .feature-item {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .feature-item:hover,
body.dark-mode .feature-item:hover {
  background: #21293d !important;
  border-color: #7c6af7 !important;
}
html.dark-mode .feature-item h3,
body.dark-mode .feature-item h3 { color: #e6edf3 !important; }
html.dark-mode .feature-item p,
body.dark-mode .feature-item p { color: #8b949e !important; }

/* Benefits list */
html.dark-mode .benefits-list li,
body.dark-mode .benefits-list li {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .benefits-list li:hover,
body.dark-mode .benefits-list li:hover {
  background: #21293d !important;
  border-color: #7c6af7 !important;
}
html.dark-mode .benefits-list i,
body.dark-mode .benefits-list i { color: #a78bfa !important; }
html.dark-mode .benefits-list li strong,
body.dark-mode .benefits-list li strong { color: #e6edf3 !important; }
html.dark-mode .benefits-list li span,
body.dark-mode .benefits-list li span { color: #8b949e !important; }

/* Value cards */
html.dark-mode .value-card,
body.dark-mode .value-card {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .value-card:hover,
body.dark-mode .value-card:hover {
  background: #21293d !important;
  border-color: #7c6af7 !important;
}
html.dark-mode .value-card h3,
body.dark-mode .value-card h3 { color: #e6edf3 !important; }
html.dark-mode .value-card p,
body.dark-mode .value-card p { color: #8b949e !important; }

/* FAQ accordion */
html.dark-mode .faq-item,
body.dark-mode .faq-item {
  background: #161b22 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .faq-item:hover,
body.dark-mode .faq-item:hover {
  border-color: #7c6af7 !important;
}
html.dark-mode .faq-item.open,
body.dark-mode .faq-item.open {
  background: #1c2333 !important;
  border-color: #7c6af7 !important;
  border-left-color: #7c6af7 !important;
}
html.dark-mode .faq-q,
body.dark-mode .faq-q { color: #e6edf3 !important; }
html.dark-mode .faq-icon,
body.dark-mode .faq-icon { color: #484f58 !important; }
html.dark-mode .faq-item.open .faq-icon,
body.dark-mode .faq-item.open .faq-icon { color: #a78bfa !important; }
html.dark-mode .faq-a,
body.dark-mode .faq-a {
  color: #8b949e !important;
  border-top-color: #30363d !important;
}
html.dark-mode .faq-cat-head,
body.dark-mode .faq-cat-head { border-bottom-color: #30363d !important; }
html.dark-mode .faq-cat-btn,
body.dark-mode .faq-cat-btn {
  background: #1c2333 !important;
  border-color: #30363d !important;
  color: #8b949e !important;
}
html.dark-mode .faq-cat-btn:hover,
body.dark-mode .faq-cat-btn:hover {
  background: rgba(124,106,247,0.1) !important;
  border-color: #7c6af7 !important;
  color: #a78bfa !important;
}

/* Contact us strip */
html.dark-mode .contact-us-strip,
body.dark-mode .contact-us-strip {
  background: #161b22 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .contact-us-icon,
body.dark-mode .contact-us-icon { background: rgba(124,106,247,0.15) !important; }
html.dark-mode .contact-us-icon i,
body.dark-mode .contact-us-icon i { color: #a78bfa !important; }
html.dark-mode .contact-us-left h3,
body.dark-mode .contact-us-left h3 { color: #e6edf3 !important; }
html.dark-mode .contact-us-left p,
body.dark-mode .contact-us-left p { color: #8b949e !important; }

/* ── Shimmer — dark mode ── */
html.dark-mode .shimmer-icon,
html.dark-mode .shimmer-title,
html.dark-mode .shimmer-text,
body.dark-mode .shimmer-icon,
body.dark-mode .shimmer-title,
body.dark-mode .shimmer-text {
  background: linear-gradient(90deg, #1c2333 25%, #252f3f 50%, #1c2333 75%) !important;
  background-size: 800px 100% !important;
  animation: shimmerSweep 1.5s ease-in-out infinite !important;
}
html.dark-mode .shimmer-card,
body.dark-mode .shimmer-card {
  background: #161b22 !important;
  border-color: #30363d !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
}
html.dark-mode .shimmer-sidebar .toc-inner,
body.dark-mode .shimmer-sidebar .toc-inner {
  background: #161b22 !important;
  border-color: #30363d !important;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4) !important;
}

/* TOC sidebar */
html.dark-mode .toc-inner,
body.dark-mode .toc-inner {
  background: #161b22 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .toc-header,

html.dark-mode .toc-link,
body.dark-mode .toc-link { color: #8b949e !important; }
html.dark-mode .toc-link:hover,
html.dark-mode .toc-link.active,
body.dark-mode .toc-link:hover,
body.dark-mode .toc-link.active {
  background: rgba(124,106,247,0.12) !important;
  color: #a78bfa !important;
}

html.dark-mode .toc-link.active .toc-num,
body.dark-mode .toc-link.active .toc-num { color: #a78bfa !important; }

/* Content box — card style */
html.dark-mode .content-box,
body.dark-mode .content-box {
  background: #161b22 !important;
  border-color: #30363d !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3) !important;
  transition: none !important;
}
html.dark-mode .content-box h2,
body.dark-mode .content-box h2 { border-bottom-color: #30363d !important; }
html.dark-mode .content-box p,
body.dark-mode .content-box p { color: #8b949e !important; }
html.dark-mode .content-box strong,
body.dark-mode .content-box strong { color: #e6edf3 !important; }

/* Section icon */
html.dark-mode .section-icon-wrap,
body.dark-mode .section-icon-wrap {
  background: rgba(124,106,247,0.15) !important;
}
html.dark-mode .section-icon-wrap i,
body.dark-mode .section-icon-wrap i { color: #a78bfa !important; }

/* Info boxes */
html.dark-mode .info-blue,
body.dark-mode .info-blue {
  background: rgba(59,130,246,0.1) !important;
  border-color: rgba(59,130,246,0.25) !important;
  color: #93c5fd !important;
}
html.dark-mode .info-blue i,
body.dark-mode .info-blue i { color: #60a5fa !important; }
html.dark-mode .info-green,
body.dark-mode .info-green {
  background: rgba(34,197,94,0.1) !important;
  border-color: rgba(34,197,94,0.25) !important;
  color: #86efac !important;
}
html.dark-mode .info-green i,
body.dark-mode .info-green i { color: #4ade80 !important; }
html.dark-mode .info-warn,
body.dark-mode .info-warn {
  background: rgba(245,158,11,0.1) !important;
  border-color: rgba(245,158,11,0.25) !important;
  color: #fcd34d !important;
}
html.dark-mode .info-warn i,
body.dark-mode .info-warn i { color: #fbbf24 !important; }

/* Highlight strip */
html.dark-mode .highlight-strip,
body.dark-mode .highlight-strip {
  background: rgba(124,106,247,0.1) !important;
  border-left-color: #7c6af7 !important;
  color: #c9d1d9 !important;
}

/* Rule cards */
html.dark-mode .rule-card,
body.dark-mode .rule-card {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .rule-card:hover,
body.dark-mode .rule-card:hover { border-color: #7c6af7 !important; }
html.dark-mode .rule-card > i,
body.dark-mode .rule-card > i { color: #a78bfa !important; }
html.dark-mode .rule-card strong,
body.dark-mode .rule-card strong { color: #e6edf3 !important; }
html.dark-mode .rule-card p,
body.dark-mode .rule-card p { color: #8b949e !important; }
html.dark-mode .rule-card--warn,
body.dark-mode .rule-card--warn {
  background: rgba(239,68,68,0.08) !important;
  border-color: rgba(239,68,68,0.25) !important;
}
html.dark-mode .rule-card--warn > i,
body.dark-mode .rule-card--warn > i { color: #f87171 !important; }

/* Step items */
html.dark-mode .step-item,
body.dark-mode .step-item {
  background: #1c2333 !important;
  border-color: #30363d !important;
  color: #8b949e !important;
  transition: none !important;
}
html.dark-mode .step-item strong,
body.dark-mode .step-item strong { color: #e6edf3 !important; }

/* Contact items */
html.dark-mode .contact-item,
body.dark-mode .contact-item {
  background: #1c2333 !important;
  border-color: #30363d !important;
  color: #8b949e !important;
  transition: none !important;
}
html.dark-mode .contact-item:hover,
body.dark-mode .contact-item:hover {
  border-color: #7c6af7 !important;
  color: #a78bfa !important;
}
html.dark-mode .contact-item i,
body.dark-mode .contact-item i { color: #a78bfa !important; }

/* Privacy: pstat cards */
html.dark-mode .pstat-card,
body.dark-mode .pstat-card {
  background: #1c2333 !important;
  border-color: #30363d !important;
  color: #8b949e !important;
  transition: none !important;
}
html.dark-mode .pstat-card i,
body.dark-mode .pstat-card i { color: #a78bfa !important; }

/* Privacy: data cards */
html.dark-mode .data-card,
body.dark-mode .data-card {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .data-card:hover,
body.dark-mode .data-card:hover { border-color: #7c6af7 !important; }
html.dark-mode .data-card-head,
body.dark-mode .data-card-head {
  color: #a78bfa !important;
  border-bottom-color: #30363d !important;
}
html.dark-mode .data-card-head i,
body.dark-mode .data-card-head i { color: #a78bfa !important; }
html.dark-mode .data-card ul li,
body.dark-mode .data-card ul li { color: #8b949e !important; }

/* Privacy: use items */
html.dark-mode .use-item,
body.dark-mode .use-item {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .use-item:hover,
body.dark-mode .use-item:hover { border-color: #7c6af7 !important; }
html.dark-mode .use-item > i,
body.dark-mode .use-item > i { color: #a78bfa !important; }
html.dark-mode .use-item strong,
body.dark-mode .use-item strong { color: #e6edf3 !important; }
html.dark-mode .use-item p,
body.dark-mode .use-item p { color: #8b949e !important; }

/* Privacy: security cards */
html.dark-mode .sec-card,
body.dark-mode .sec-card {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .sec-card:hover,
body.dark-mode .sec-card:hover { border-color: #7c6af7 !important; }
html.dark-mode .sec-card > i,
body.dark-mode .sec-card > i { color: #a78bfa !important; }
html.dark-mode .sec-card strong,
body.dark-mode .sec-card strong { color: #e6edf3 !important; }
html.dark-mode .sec-card p,
body.dark-mode .sec-card p { color: #8b949e !important; }

/* Privacy: share cards */
html.dark-mode .share-card,
body.dark-mode .share-card {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .share-card:hover,
body.dark-mode .share-card:hover { border-color: #7c6af7 !important; }
html.dark-mode .share-card > i,
body.dark-mode .share-card > i { color: #a78bfa !important; }
html.dark-mode .share-card strong,
body.dark-mode .share-card strong { color: #e6edf3 !important; }
html.dark-mode .share-card p,
body.dark-mode .share-card p { color: #8b949e !important; }
html.dark-mode .share-card--warn,
body.dark-mode .share-card--warn {
  background: rgba(245,158,11,0.08) !important;
  border-color: rgba(245,158,11,0.2) !important;
}
html.dark-mode .share-card--warn > i,
body.dark-mode .share-card--warn > i { color: #fbbf24 !important; }

/* Privacy: cookie cards */
html.dark-mode .cookie-card,
body.dark-mode .cookie-card {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .cookie-card:hover,
body.dark-mode .cookie-card:hover { border-color: #7c6af7 !important; }
html.dark-mode .cookie-card > i,
body.dark-mode .cookie-card > i { color: #a78bfa !important; }
html.dark-mode .cookie-card strong,
body.dark-mode .cookie-card strong { color: #e6edf3 !important; }
html.dark-mode .cookie-card p,
body.dark-mode .cookie-card p { color: #8b949e !important; }

/* Privacy: right cards */
html.dark-mode .right-card,
body.dark-mode .right-card {
  background: rgba(124,106,247,0.06) !important;
  border-color: rgba(124,106,247,0.2) !important;
  transition: none !important;
}
html.dark-mode .right-card:hover,
body.dark-mode .right-card:hover { border-color: #7c6af7 !important; }
html.dark-mode .right-card > i,
body.dark-mode .right-card > i { color: #a78bfa !important; }
html.dark-mode .right-card strong,
body.dark-mode .right-card strong { color: #e6edf3 !important; }
html.dark-mode .right-card p,
body.dark-mode .right-card p { color: #8b949e !important; }

/* Privacy: retention items */
html.dark-mode .retention-item,
body.dark-mode .retention-item {
  background: #1c2333 !important;
  border-color: #30363d !important;
  transition: none !important;
}
html.dark-mode .retention-item:hover,
body.dark-mode .retention-item:hover { border-color: #7c6af7 !important; }
html.dark-mode .retention-item strong,
body.dark-mode .retention-item strong { color: #e6edf3 !important; }
html.dark-mode .retention-item p,
body.dark-mode .retention-item p { color: #8b949e !important; }
html.dark-mode .retention-icon,
body.dark-mode .retention-icon {
  background: rgba(124,106,247,0.15) !important;
}
html.dark-mode .retention-icon i,
body.dark-mode .retention-icon i { color: #a78bfa !important; }

