/* ── Privacy Policy Page ── */

/* Hero */
.pp-hero {
  text-align: center;
  margin-bottom: 48px;
}
.pp-tag {
  display: inline-block;
  font-size: 9px;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--border);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 18px;
}
.pp-hero h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(28px, 5vw, 50px);
  font-weight: 800;
  letter-spacing: -2px;
  line-height: 1.05;
  margin-bottom: 12px;
}
.pp-hero h1 em {
  font-style: normal;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.pp-meta {
  font-size: 11px;
  color: var(--muted);
  margin-top: 4px;
}
.pp-meta strong { color: var(--text); }

/* Data table */
.data-table {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
  margin: 24px 0;
  font-size: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.dt-row {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1fr;
  padding: 12px 18px;
  border-bottom: 1px solid var(--border);
  gap: 12px;
  align-items: center;
  transition: background 0.2s ease;
}
.dt-row:not(.dt-head):hover {
  background: rgba(99, 179, 237, 0.03);
}
.dt-row:last-child { border-bottom: none; }
.dt-head {
  background: var(--surface2);
  font-size: 9px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
}

.tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}
.tag.low  { background: rgba(104,211,145,.1); color: var(--success); border: 1px solid rgba(104,211,145,.25); }
.tag.med  { background: rgba(246,173,85,.1);  color: #f6ad55;        border: 1px solid rgba(246,173,85,.25); }
.tag.high { background: rgba(99,179,237,.1);  color: var(--accent);  border: 1px solid var(--border); }

/* Callouts */
.callout {
  display: flex;
  gap: 16px;
  border-radius: 16px;
  padding: 20px 24px;
  margin: 24px 0;
  font-size: 13px;
  line-height: 1.8;
  border: 1px solid var(--border);
  transition: all 0.25s cubic-bezier(0.165, 0.84, 0.44, 1);
  -webkit-font-smoothing: antialiased;
  backface-visibility: hidden;
}
.callout:hover {
  border-color: var(--accent);
  box-shadow: 0 8px 32px -8px var(--glow);
  transform: translateY(-4px);
}
.callout-icon { 
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.callout-icon svg { width: 16px; height: 16px; }

.callout-blue  { 
  background: linear-gradient(135deg, rgba(99, 179, 237, 0.1), rgba(99, 179, 237, 0.05));
  border-color: rgba(99, 179, 237, 0.3);
  color: var(--text);
}
.callout-blue .callout-icon {
  background: rgba(99, 179, 237, 0.15);
  color: var(--accent);
}

/* Lists */
.pp-list {
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-bottom: 14px;
}
.pp-list-no li::marker { color: #fc8181; }
.pp-list li::marker { color: var(--accent); }

/* Inline Links */
.inline-link {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid rgba(99, 179, 237, 0.3);
  transition: border-color 0.2s;
}
.inline-link:hover {
  border-color: var(--accent);
}

/* Contact block */
.contact-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  margin-top: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.contact-row {
  display: flex;
  gap: 20px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
  font-size: 13px;
}
.contact-row:last-child { border-bottom: none; }
.ck { color: var(--muted); min-width: 140px; font-size: 10px; text-transform: uppercase; letter-spacing: 1px; }
.cv { color: var(--accent); font-family: 'JetBrains Mono', monospace; font-weight: 500; }

@media (max-width: 600px) {
  .dt-row {
    grid-template-columns: 1fr 1.5fr 0.8fr;
    font-size: 11px;
  }
  .contact-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
}

/* ── Step Flow ── */
.step-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 32px 0;
}

.step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 16px 0;
}

.step-marker {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent2));
  color: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
}

.step-content h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 4px;
  color: var(--text);
}

.step-content p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.step-connector {
  width: 2px;
  height: 24px;
  background: var(--border);
  margin-left: 17px;
}

/* ── Flow Map ── */
.flow-map-container {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 24px;
  margin: 32px 0;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.flow-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--muted);
  margin-bottom: 16px;
  text-align: center;
}

.flow-map {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.flow-node {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 20px;
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.flow-node:hover {
border-color: var(--accent);
box-shadow: 0 4px 16px -4px var(--glow);
transform: translateY(-2px);
}

.flow-node.highlight {
background: linear-gradient(135deg, rgba(99, 179, 237, 0.1), rgba(79, 209, 197, 0.05));
border-color: rgba(99, 179, 237, 0.3);
}

.flow-node.highlight:hover {
border-color: var(--accent2);
box-shadow: 0 4px 16px -4px var(--glow);
}

.node-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.node-icon svg {
  width: 28px;
  height: 28px;
  color: var(--accent);
}

.flow-node.highlight .node-icon svg {
  color: var(--accent);
}

.node-text {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
}

.flow-arrow {
  font-size: 20px;
  color: var(--accent);
  font-weight: 600;
}

/* ── Reason List ── */
.reason-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 32px 0;
}

.reason {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.2s ease;
}

.reason:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px -4px var(--glow);
}

.reason-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(99, 179, 237, 0.1);
  color: var(--accent);
}

.reason-icon svg {
  width: 20px;
  height: 20px;
}

.reason h3 {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text);
}

.reason p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

/* ── Mobile Adjustments ── */
@media (max-width: 600px) {
  .flow-map {
    flex-direction: column;
  }
  
  .flow-arrow {
    transform: rotate(90deg);
  }
  
  .step {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .step-connector {
    margin-left: 0;
    width: 100%;
    height: 2px;
  }
  
  .reason {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
