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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #fff;
  color: #1a1a1a;
  line-height: 1.6;
}

a { color: #e60023; text-decoration: none; }
a:hover { text-decoration: underline; }

/* ── Nav ──────────────────────────────────────────────────────── */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 2rem;
  border-bottom: 1px solid #eee;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 10;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: #1a1a1a;
}

.nav-logo svg { color: #e60023; }

nav ul {
  list-style: none;
  display: flex;
  gap: 2rem;
}

nav ul a { color: #555; font-size: 0.9rem; }
nav ul a:hover { color: #e60023; text-decoration: none; }

/* ── Hero ─────────────────────────────────────────────────────── */
.hero {
  max-width: 780px;
  margin: 5rem auto;
  padding: 0 2rem;
  text-align: center;
}

.badge {
  display: inline-block;
  background: #fef0f0;
  color: #e60023;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.3rem 0.9rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: 2.8rem;
  font-weight: 800;
  line-height: 1.15;
  color: #111;
  margin-bottom: 1.2rem;
}

.hero p {
  font-size: 1.1rem;
  color: #555;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* ── Features ─────────────────────────────────────────────────── */
.features {
  max-width: 900px;
  margin: 0 auto 6rem;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.feature-card {
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 1.8rem;
}

.feature-icon {
  width: 44px;
  height: 44px;
  background: #fef0f0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: #e60023;
}

.feature-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.feature-card p  { font-size: 0.9rem; color: #666; }

/* ── Footer ───────────────────────────────────────────────────── */
footer {
  border-top: 1px solid #eee;
  padding: 2rem;
  text-align: center;
  color: #888;
  font-size: 0.85rem;
}

footer a { color: #888; }
footer a:hover { color: #e60023; }

/* ── Privacy / plain content ──────────────────────────────────── */
.content {
  max-width: 720px;
  margin: 4rem auto;
  padding: 0 2rem 6rem;
}

.content h1 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 0.4rem;
}

.content .meta {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 2.5rem;
}

.content h2 {
  font-size: 1.15rem;
  font-weight: 700;
  margin: 2rem 0 0.6rem;
}

.content p, .content li {
  font-size: 0.97rem;
  color: #444;
  margin-bottom: 0.6rem;
}

.content ul {
  padding-left: 1.4rem;
  margin-bottom: 0.6rem;
}

.content a { color: #e60023; }
