/* =========================================================
   DealerPost Pro – Settings Page
   ========================================================= */

/* ---- LAYOUT ---- */
.settings-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.settings-layout {
  display: flex;
  flex: 1;
}

/* ---- SIDEBAR ---- */
.settings-sidebar {
  width: 268px;
  flex-shrink: 0;
  background: var(--bg-panel);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  padding: 0.75rem 0 1rem;
}

.settings-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
  text-decoration: none;
  padding: 0 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.3px;
}

.settings-logo .logo-accent { color: var(--accent); }

/* ---- NAV TABS ---- */
.settings-nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 1rem 0.75rem;
  flex: 1;
}

.settings-tab {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.65rem 0.85rem;
  background: transparent;
  border: none;
  border-radius: var(--radius-sm);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background var(--transition), color var(--transition);
  position: relative;
}

.settings-tab:hover:not(.active) {
  background: var(--bg-input);
  color: var(--text-primary);
}

.settings-tab.active {
  background: rgba(91, 106, 255, 0.12);
  color: var(--accent);
}

.settings-tab.active svg {
  stroke: var(--accent);
}


.settings-back-link {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  padding: 0.5rem 1.25rem 0.75rem;
  transition: color var(--transition);
}

.settings-back-link:hover {
  color: var(--text-primary);
}

/* ---- MAIN CONTENT ---- */
.settings-main {
  flex: 1;
  min-width: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
}

.settings-content {
  flex: 1;
  padding: 2.5rem 2.5rem 2rem;
  max-width: 760px;
  margin: 0 auto;
  width: 100%;
}

.settings-bottombar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.6rem;
  padding: 1rem 2.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-panel);
  position: sticky;
  bottom: 0;
}

.settings-bottombar .btn {
  text-decoration: none;
}

/* ---- PANELS ---- */
.settings-panel {
  display: none;
  flex-direction: column;
  gap: 1.25rem;
  animation: fadeIn 0.15s ease;
}

.settings-panel.active {
  display: flex;
}

/* ---- SECTION HEADER ---- */
.settings-section-header {
  margin-bottom: 0.5rem;
}

.settings-section-header h1 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  margin-bottom: 0.3rem;
}

.settings-section-header p {
  color: var(--text-muted);
  font-size: 0.925rem;
}

/* ---- SETTINGS CARDS ---- */
.settings-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
}

.card-heading {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.85rem;
}

.settings-helper {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.55;
}

/* ---- ACCOUNT ---- */
.account-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.account-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), #7280ff);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
  text-transform: uppercase;
  letter-spacing: -0.5px;
}

.account-email {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
}

.account-label {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
}

/* ---- SUBSCRIPTION ---- */
.subscription-row {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 0.75rem;
}

.plan-badge {
  background: rgba(91, 106, 255, 0.12);
  color: var(--accent);
  border: 1px solid rgba(91, 106, 255, 0.25);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.82rem;
  font-weight: 700;
}

.plan-status {
  background: rgba(34, 197, 94, 0.1);
  color: var(--green);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 20px;
  padding: 0.25rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.plan-status.trial {
  background: rgba(251, 191, 36, 0.1);
  color: var(--gold, #f59e0b);
  border-color: rgba(251, 191, 36, 0.3);
}

.plan-status.expired {
  background: rgba(239, 68, 68, 0.1);
  color: var(--red);
  border-color: rgba(239, 68, 68, 0.3);
}

/* ── In-settings plan cards ── */
.sub-plans {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.sub-plan {
  border: 2px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  cursor: pointer;
  position: relative;
  transition: border-color 0.2s, box-shadow 0.2s;
  background: var(--bg-panel-alt);
}

.sub-plan:hover { border-color: var(--accent); }
.sub-plan.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.sub-plan-badge {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0.18rem 0.6rem;
  border-radius: 99px;
  white-space: nowrap;
}

.sub-plan-name {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}

.sub-plan-price {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--accent);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 0.6rem;
}

.sub-plan-price span {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0;
}

.sub-plan-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.sub-plan-features li {
  font-size: 0.78rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 0.4rem;
}

.sub-plan-features li::before {
  content: '✓';
  color: var(--accent);
  font-weight: 700;
  flex-shrink: 0;
}

.sub-plan-features li.pro-only { color: var(--text-primary); }
.sub-plan-features li.pro-only::before { color: #a78bfa; }

.sub-divider { height: 1px; background: var(--border); margin: 0.5rem 0; }
.sub-divider-label {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #a78bfa;
  margin-bottom: 0.4rem;
}

.sub-checkout-btn {
  width: 100%;
  margin-top: 1.1rem;
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
  justify-content: center;
  text-align: center;
}

.sub-manage-link {
  display: inline-block;
  margin-top: 0.85rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.15s;
}
.sub-manage-link:hover { color: var(--accent); }

.sub-trial-bar {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 0.85rem;
  background: rgba(251,191,36,0.07);
  border: 1px solid rgba(251,191,36,0.2);
  border-radius: var(--radius-sm);
  font-size: 0.82rem;
  color: var(--gold, #f59e0b);
  margin-bottom: 0.75rem;
}

@media (max-width: 520px) {
  .sub-plans { grid-template-columns: 1fr; }
}

/* ---- POST STYLES MANAGER ---- */
.style-manager {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.25rem;
  align-items: start;
}

.style-list-pane {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.style-list-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-panel-alt);
}

.style-list-title {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.style-list {
  display: flex;
  flex-direction: column;
  min-height: 120px;
}

.style-list-item {
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: background var(--transition);
  gap: 0.5rem;
}

.style-list-item:last-child {
  border-bottom: none;
}

.style-list-item:hover {
  background: var(--bg-input);
}

.style-list-item.active {
  background: rgba(91, 106, 255, 0.1);
  border-left: 3px solid var(--accent);
  padding-left: calc(1rem - 3px);
}

.style-list-item-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.style-list-item.active .style-list-item-name {
  color: var(--accent);
}

.style-list-empty {
  padding: 1.25rem 1rem;
  color: var(--text-muted);
  font-size: 0.875rem;
  text-align: center;
}

/* ---- STYLE EDITOR ---- */
.style-editor-pane {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  min-height: 360px;
  box-shadow: var(--shadow);
}

.style-editor-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.85rem;
  min-height: 360px;
  color: var(--text-muted);
  font-size: 0.9rem;
  text-align: center;
  padding: 2rem;
  line-height: 1.5;
}

.style-editor-empty strong {
  color: var(--text-primary);
}

.style-editor-form {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.label-optional {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--text-dim);
  text-transform: none;
  letter-spacing: 0;
}

.style-editor-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.25rem;
}

.style-save-confirm {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--green);
  animation: fadeIn 0.2s ease;
}

/* ---- POST STYLE PRESETS SECTION ---- */
.ps-presets-section {
  margin-bottom: 2rem;
}

.ps-presets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.ps-presets-empty {
  color: var(--text-muted);
  font-size: 0.875rem;
  padding: 0.25rem 0;
}

.ps-preset-card {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  cursor: pointer;
  min-width: 200px;
  max-width: 280px;
  flex: 1 1 200px;
  transition: border-color 0.15s, box-shadow 0.15s;
  overflow: hidden;
}

.ps-preset-card:hover,
.ps-preset-card.ps-card--open {
  border-color: var(--accent);
  box-shadow: 0 0 0 1px var(--accent);
}

.ps-card-collapsed {
  padding: 0.875rem 1rem;
  user-select: none;
}

.ps-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 0.2rem;
}

.ps-card-summary {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

.ps-card-expanded {
  border-top: 1px solid var(--border);
  padding: 0.875rem 1rem;
  background: var(--bg-alt);
}

.ps-card-attrs {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 0.875rem;
}

.ps-attr-row {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8rem;
  line-height: 1.4;
}

.ps-attr-label {
  color: var(--text-muted);
  min-width: 80px;
  flex-shrink: 0;
}

.ps-attr-val {
  color: var(--text-primary);
  font-weight: 500;
}

.ps-attr-on {
  color: var(--green);
}

.ps-card-expanded-actions {
  display: flex;
  gap: 0.5rem;
}

/* ---- POST STYLE BUILDER ---- */
.ps-builder-section {
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
}

.ps-builder-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.25rem;
}

.ps-builder-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-primary);
  margin: 0;
}

.ps-name-row {
  margin-bottom: 1.25rem;
}

.ps-name-row .sp-preset-input {
  width: 100%;
  box-sizing: border-box;
  font-size: 1rem;
  font-weight: 600;
}

.ps-builder-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  margin-top: 0.25rem;
}

/* ---- IMAGE TEXT TAG CHIPS ---- */
.tag-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.tag-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(91, 106, 255, 0.1);
  border: 1px solid rgba(91, 106, 255, 0.3);
  color: var(--accent);
  border-radius: 20px;
  padding: 0.3rem 0.5rem 0.3rem 0.8rem;
  font-size: 0.85rem;
  font-weight: 600;
  animation: fadeIn 0.15s ease;
}

.tag-chip-remove {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  color: var(--accent);
  opacity: 0.55;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  transition: opacity var(--transition);
}

.tag-chip-remove:hover {
  opacity: 1;
}

/* ---- APPEARANCE ---- */
.theme-options {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.theme-option {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
  min-width: 140px;
}

.theme-option input[type="radio"] {
  display: none;
}

.theme-preview {
  border-radius: 10px;
  border: 2px solid var(--border);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
}

.theme-option input:checked ~ .theme-preview,
.theme-option.selected .theme-preview {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.theme-option:hover .theme-preview {
  border-color: var(--accent);
}

/* Light preview */
.light-preview {
  background: #f0f2f8;
}

.light-preview .tp-bar {
  background: #e2e5f8;
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
  flex-shrink: 0;
}

.light-preview .tp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #9aa0bc;
}

.light-preview .tp-body {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.light-preview .tp-card {
  background: #ffffff;
  border-radius: 5px;
  flex: 1;
  border: 1px solid #d8dced;
}

.light-preview .tp-card-sm {
  flex: 0.6;
}

/* Dark preview */
.dark-preview {
  background: #0f1117;
}

.dark-preview .tp-bar {
  background: #141728;
  height: 24px;
  display: flex;
  align-items: center;
  padding: 0 8px;
  gap: 4px;
  flex-shrink: 0;
}

.dark-preview .tp-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4a5270;
}

.dark-preview .tp-body {
  flex: 1;
  padding: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.dark-preview .tp-card {
  background: #1a1d27;
  border-radius: 5px;
  flex: 1;
  border: 1px solid #2e3350;
}

.dark-preview .tp-card-sm {
  flex: 0.6;
}

/* System preview (split) */
.system-preview {
  display: flex;
  flex-direction: row;
}

.tp-half {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tp-half-light {
  background: #f0f2f8;
}

.tp-half-dark {
  background: #0f1117;
}

.tp-bar-sm {
  height: 20px;
  flex-shrink: 0;
}

.tp-half-light .tp-bar-sm { background: #e2e5f8; }
.tp-half-dark  .tp-bar-sm { background: #141728; }

.tp-card-mini {
  margin: 6px;
  flex: 1;
  border-radius: 4px;
}

.tp-half-light .tp-card-mini {
  background: #ffffff;
  border: 1px solid #d8dced;
}

.tp-half-dark .tp-card-mini {
  background: #1a1d27;
  border: 1px solid #2e3350;
}

/* Theme option label */
.theme-option-label {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0 0.25rem;
  transition: color var(--transition);
}

.theme-option input:checked ~ .theme-option-label,
.theme-option.selected .theme-option-label {
  color: var(--accent);
}

.theme-option:hover .theme-option-label {
  color: var(--text-primary);
}

/* ---- FORM OVERRIDES for settings context ---- */
.settings-panel .form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.4rem;
  display: block;
}

.settings-panel .form-group input[type="text"],
.settings-panel .form-group textarea {
  width: 100%;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  padding: 0.65rem 0.9rem;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
  line-height: 1.5;
}

.settings-panel .form-group input[type="text"]:focus,
.settings-panel .form-group textarea:focus {
  border-color: var(--border-focus);
  box-shadow: 0 0 0 3px var(--accent-glow);
}

.settings-panel .form-group input::placeholder,
.settings-panel .form-group textarea::placeholder {
  color: var(--text-dim);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 800px) {
  .settings-sidebar {
    width: 60px;
    padding: 1rem 0;
  }

  .settings-tab span,
  .settings-back-link span,
  .settings-tab svg ~ *,
  .settings-sidebar-footer .settings-back-link {
    display: none;
  }

  .settings-logo {
    justify-content: center;
    padding: 0 0 1rem;
  }

  .settings-tab {
    justify-content: center;
    padding: 0.75rem;
  }

  .settings-back-link {
    justify-content: center;
    padding: 0.5rem;
  }

  .settings-content {
    padding: 1.5rem 1rem 1.5rem;
  }

  .settings-bottombar {
    padding: 0.85rem 1rem;
  }

  .style-manager {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .theme-options {
    flex-direction: column;
  }

  .theme-option {
    flex-direction: row;
    align-items: center;
    min-width: unset;
  }

  .theme-preview {
    width: 80px;
    flex-shrink: 0;
    aspect-ratio: 4/3;
  }
}

/* ── Sales Team (Smart Inbox settings) ── */
.st-add {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.9rem;
}
.st-add input {
  flex: 1;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text-primary);
  font-size: 0.9rem;
  padding: 0.55rem 0.75rem;
  font-family: inherit;
}
.st-add input:focus { outline: none; border-color: var(--border-focus); }
.st-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  min-height: 2rem;
}
.st-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(91,106,255,0.12);
  border: 1px solid rgba(91,106,255,0.3);
  border-radius: 999px;
  padding: 0.3rem 0.4rem 0.3rem 0.85rem;
  font-size: 0.88rem;
  color: var(--text-primary);
}
.st-chip button {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  padding: 0.1rem 0.35rem;
  border-radius: 4px;
  font-size: 0.9rem;
  line-height: 1;
}
.st-chip button:hover { color: var(--red); background: rgba(239,68,68,0.12); }
.st-empty {
  font-size: 0.85rem;
  color: var(--text-dim);
  font-style: italic;
}

.si-pause-toggle-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  flex-wrap: wrap;
}
.si-pause-toggle {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 28px;
  flex-shrink: 0;
}
.si-pause-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}
.si-pause-slider {
  position: absolute;
  inset: 0;
  background: #2a2f3e;
  border-radius: 999px;
  transition: background 0.18s ease;
  cursor: pointer;
}
.si-pause-slider::before {
  content: "";
  position: absolute;
  height: 22px;
  width: 22px;
  left: 3px;
  top: 3px;
  background: #f1f5f9;
  border-radius: 50%;
  transition: transform 0.18s ease;
}
.si-pause-toggle input:checked + .si-pause-slider {
  background: #eab308;
}
.si-pause-toggle input:checked + .si-pause-slider::before {
  transform: translateX(24px);
}
.si-pause-label {
  font-size: 0.92rem;
  color: var(--text-primary);
  margin-bottom: 0.15rem;
}
.si-pause-label strong { color: var(--text-primary); }

.si-qh-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0.9rem;
  margin-top: 1rem;
}
.si-qh-field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.si-qh-field span { font-weight: 600; color: var(--text-primary); }
.si-qh-field select {
  background: var(--bg-panel, #1a1d27);
  color: var(--text-primary);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 6px;
  padding: 0.55rem 0.65rem;
  font-size: 0.9rem;
}

.si-privacy-list {
  list-style: none;
  padding: 0; margin: 0;
  display: flex; flex-direction: column;
  gap: 0.85rem;
}
.si-privacy-list li {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.55;
  padding-left: 0.9rem;
  border-left: 2px solid rgba(91,106,255,0.3);
}
.si-privacy-list li strong { color: var(--text-primary); display: inline; }
.si-privacy-list a { color: var(--accent); }
