/* ── Reset & Base ────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1a1a2e;
  background: #f5f6fa;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: #1a73e8; text-decoration: none; }
a:hover { text-decoration: underline; }
img { max-width: 100%; display: block; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: 960px; margin: 0 auto; padding: 0 24px; }
.container--narrow { max-width: 720px; margin: 0 auto; padding: 0 24px; }

/* ── Nav ────────────────────────────────────────────────────── */
nav {
  background: #fff;
  border-bottom: 1px solid #e8eaed;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}
nav .container { display: flex; justify-content: space-between; align-items: center; }
.nav-brand {
  font-size: 18px;
  font-weight: 800;
  color: #1a1a2e;
}
.nav-links { display: flex; gap: 24px; }
.nav-links a { font-size: 14px; font-weight: 500; color: #555; }
.nav-links a:hover { color: #1a73e8; text-decoration: none; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  padding: 80px 0 60px;
  text-align: center;
}
.hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: #1a73e8; }
.hero p {
  font-size: 18px;
  color: #555;
  max-width: 540px;
  margin: 0 auto 32px;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #1a73e8;
  color: #fff;
  padding: 14px 32px;
  border-radius: 14px;
  font-size: 16px;
  font-weight: 600;
  transition: background 0.2s;
}
.hero-cta:hover { background: #1558b0; text-decoration: none; }

/* ── Docs grid ──────────────────────────────────────────────── */
.docs {
  padding: 60px 0;
  background: #fff;
}
.section-title {
  text-align: center;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.section-subtitle {
  text-align: center;
  color: #555;
  font-size: 15px;
  margin-bottom: 40px;
}
.doc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 16px;
}
.doc-card {
  background: #f5f6fa;
  border-radius: 14px;
  padding: 20px 16px;
  text-align: center;
}
.doc-card .icon { font-size: 32px; margin-bottom: 8px; }
.doc-card .name { font-size: 14px; font-weight: 600; }
.doc-card .size { font-size: 12px; color: #888; margin-top: 4px; }

/* ── Steps ──────────────────────────────────────────────────── */
.steps {
  padding: 60px 0;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
.step {
  text-align: center;
}
.step-num {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: #1a73e8;
  color: #fff;
  font-size: 18px; font-weight: 700;
  display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 14px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.step p { font-size: 14px; color: #555; }

/* ── Features ───────────────────────────────────────────────── */
.features {
  padding: 60px 0;
  background: #fff;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.feature {
  padding: 24px;
  border: 1px solid #e8eaed;
  border-radius: 14px;
}
.feature h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.feature p { font-size: 14px; color: #555; }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing {
  padding: 60px 0;
  text-align: center;
}
.price-card {
  display: inline-block;
  background: #fff;
  border: 2px solid #1a73e8;
  border-radius: 20px;
  padding: 36px 48px;
  margin-top: 32px;
}
.price-card .amount { font-size: 48px; font-weight: 800; color: #1a73e8; }
.price-card .per { font-size: 16px; color: #555; }
.price-card ul {
  list-style: none;
  margin-top: 20px;
  text-align: left;
}
.price-card li {
  font-size: 14px;
  padding: 6px 0;
  color: #333;
}
.price-card li::before { content: "\2713  "; color: #4caf50; font-weight: 700; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  padding: 40px 0;
  border-top: 1px solid #e8eaed;
  text-align: center;
  font-size: 13px;
  color: #888;
}
footer .links { margin-top: 8px; }
footer .links a { margin: 0 12px; color: #888; }
footer .links a:hover { color: #1a73e8; }

/* ── Legal pages ────────────────────────────────────────────── */
.legal {
  padding: 60px 0 80px;
}
.legal h1 {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 8px;
}
.legal .updated {
  font-size: 13px;
  color: #888;
  margin-bottom: 32px;
}
.legal h2 {
  font-size: 20px;
  font-weight: 700;
  margin: 32px 0 12px;
}
.legal h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 24px 0 8px;
}
.legal p, .legal li {
  font-size: 15px;
  color: #444;
  margin-bottom: 12px;
}
.legal ul, .legal ol {
  padding-left: 24px;
  margin-bottom: 16px;
}
.legal li { margin-bottom: 6px; }
.legal table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 14px;
}
.legal th, .legal td {
  text-align: left;
  padding: 10px 12px;
  border: 1px solid #e8eaed;
}
.legal th { background: #f5f6fa; font-weight: 600; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 640px) {
  .hero h1 { font-size: 30px; }
  .hero p { font-size: 16px; }
  .price-card { padding: 28px 24px; }
  .doc-grid { grid-template-columns: repeat(3, 1fr); }
}
