/* Index */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { 
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 100vh; 
}
.container { max-width: 1200px; margin: 0 auto; padding: 2rem; }
.hero {
    text-align: center; 
    padding: 4rem 2rem; 
    background: white;
    border-radius: 24px; 
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
}
.logo { font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, #3b82f6, #1d4ed8); -webkit-background-clip: text; -webkit-text-fill-color: transparent; margin-bottom: 1rem; }
.tagline { font-size: 1.25rem; color: #64748b; margin-bottom: 2rem; }
.cta { 
    display: inline-block; 
    background: linear-gradient(135deg, #3b82f6, #1d4ed8); 
    color: white; 
    padding: 1rem 2.5rem; 
    border-radius: 50px; 
    text-decoration: none; 
    font-weight: 600; 
    box-shadow: 0 10px 30px rgba(59,130,246,0.4);
    transition: transform 0.3s;
}
.cta:hover { transform: translateY(-2px); }

.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 2rem; margin: 4rem 0; }
.stat-card {
    background: white; 
    padding: 2.5rem; 
    border-radius: 20px; 
    text-align: center; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    border: 1px solid #e2e8f0;
}
.stat-number { font-size: 3rem; font-weight: 800; background: linear-gradient(135deg, #10b981, #059669); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.stat-label { color: #64748b; font-size: 1.1rem; margin-top: 0.5rem; }

.features { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; margin: 4rem 0; }
.feature-card {
    background: white; 
    padding: 2.5rem; 
    border-radius: 20px; 
    text-align: center; 
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}
.feature-card:hover { transform: translateY(-8px); box-shadow: 0 25px 60px rgba(0,0,0,0.15); }
.feature-icon { font-size: 3rem; margin-bottom: 1rem; }
.feature-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 1rem; color: #1e293b; }

footer { 
    background: #1e293b; 
    color: white; 
    text-align: center; 
    padding: 3rem 2rem; 
    margin-top: 6rem;
}

@media (max-width: 768px) {
    .container { padding: 1rem; }
    .hero { padding: 2rem 1rem; }
    .logo { font-size: 2rem; }
}

.muted {
  color: #94a3b8 !important;
  font-weight: 400;
  opacity: 0.8;
}

/* Privacy */

.content { background: white; padding: 3rem; border-radius: 20px; box-shadow: 0 10px 40px rgba(0,0,0,0.08); }
h1 { font-size: 2rem; margin-bottom: 1rem; color: #1e293b; }
h2 { font-size: 1.5rem; margin: 2.5rem 0 1rem 0; color: #1e293b; border-bottom: 2px solid #e2e8f0; padding-bottom: 0.5rem; }
h3 { font-size: 1.25rem; margin: 2rem 0 1rem 0; color: #334155; }

p, li { margin-bottom: 1rem; color: #475569; }
ul { padding-left: 2rem; }
strong { color: #1e293b; }

.last-update { background: #f1f5f9; padding: 1.5rem; border-radius: 12px; border-left: 4px solid #3b82f6; margin: 2rem 0; }

/* Delete account */

.warning { 
    background: #fef3c7; 
    border: 1px solid #f59e0b; 
    border-radius: 12px; 
    padding-left: 1.5rem; 
    padding-right: 1.5rem; 
    padding-bottom: 0.5rem; 
    margin: 2rem 0;
}

.steps {
  background: #f8fafc;
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
}

.step { 
  display: flex; 
  align-items: center;
  gap: 1rem; 
}

.step-number { 
  background: #3b82f6; 
  color: white; 
  width: 32px; height: 32px; 
  border-radius: 50%; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-weight: 600; 
  flex-shrink: 0;
  font-size: 0.9rem;
}


.email-box {
    background: #f1f5f9;
    border: 2px dashed #cbd5e1;
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    margin: 2rem 0;
}
.email { font-size: 1.3rem; font-weight: 600; color: #1e293b; background: white; padding: 0.5rem 1rem; border-radius: 8px; display: inline-block; }
    