*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #6C3BF5;
  --primary-dark: #5228d4;
  --accent: #F5A623;
  --text: #1a1a2e;
  --muted: #6b7280;
  --bg: #ffffff;
  --bg-alt: #f8f7ff;
  --border: #e5e7eb;
  --radius: 12px;
}

body {
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* NAV */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 64px;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-logo {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  letter-spacing: -0.5px;
}

.nav-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

/* HERO */
.hero {
  text-align: center;
  padding: 6rem 2rem 4rem;
  background: linear-gradient(135deg, #f8f7ff 0%, #ede9fe 100%);
}

.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 900;
  color: var(--text);
  line-height: 1.15;
  letter-spacing: -1px;
  margin-bottom: 1.2rem;
}

.hero h1 span { color: var(--primary); }

.hero p {
  font-size: 1.15rem;
  color: var(--muted);
  max-width: 540px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: transform 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,59,245,0.25); }

.btn-primary { background: var(--primary); color: #fff; }
.btn-outline { border: 2px solid var(--primary); color: var(--primary); margin-left: 0.75rem; }

/* FEATURES */
.features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  padding: 4rem 2rem;
  max-width: 1000px;
  margin: 0 auto;
}

.feature-card {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
}

.feature-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.feature-card p { font-size: 0.9rem; color: var(--muted); }

/* PAGE CONTENT */
.page-header {
  background: linear-gradient(135deg, #f8f7ff 0%, #ede9fe 100%);
  padding: 4rem 2rem 3rem;
  text-align: center;
}

.page-header h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--text);
  letter-spacing: -0.5px;
}

.page-header p {
  color: var(--muted);
  margin-top: 0.5rem;
  font-size: 1rem;
}

.content {
  max-width: 780px;
  margin: 0 auto;
  padding: 3rem 2rem 5rem;
}

.content h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 2.5rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

.content p { color: #374151; margin-bottom: 1rem; }
.content ul { padding-left: 1.4rem; margin-bottom: 1rem; }
.content ul li { color: #374151; margin-bottom: 0.4rem; }

/* DELETE ACCOUNT */
.delete-steps {
  counter-reset: step;
  list-style: none;
  padding: 0;
  margin-bottom: 1rem;
}

.delete-steps li {
  counter-increment: step;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.2rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  color: var(--text);
}

.delete-steps li::before {
  content: counter(step);
  min-width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}

.warning-box {
  background: #fff3cd;
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1rem 1.2rem;
  margin: 1.5rem 0;
  font-size: 0.95rem;
  color: #7c5c00;
}

/* CONTACT FORM */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

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

.contact-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 1rem; }

.contact-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.contact-item .icon {
  width: 36px;
  height: 36px;
  background: var(--bg-alt);
  border-radius: 8px;
  display: grid;
  place-items: center;
  font-size: 1rem;
  flex-shrink: 0;
}

form .field {
  margin-bottom: 1.25rem;
}

form label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--text);
}

form input,
form textarea,
form select {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 8px;
  font-size: 0.95rem;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
  background: var(--bg);
  color: var(--text);
}

form input:focus,
form textarea:focus,
form select:focus {
  border-color: var(--primary);
}

form textarea { resize: vertical; min-height: 120px; }

/* FOOTER */
footer {
  background: var(--text);
  color: #9ca3af;
  text-align: center;
  padding: 2rem;
  font-size: 0.875rem;
}

footer a { color: #c4b5fd; text-decoration: none; }
footer a:hover { color: #fff; }
footer .footer-links { display: flex; justify-content: center; gap: 1.5rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
