:root {
  --bg: #f5f2fb;
  --text: #2c2418;
  --muted: #7a6c58;
  --accent: #8b5fd6;
  --accent-dark: #6a3fb5;
  --card-bg: #ffffff;
  --border: #e3d9f2;
  --max-width: 1000px;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.site-header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 10;
}
.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; font-size: 20px; color: var(--accent-dark); }
.logo-mark {
  width: 34px; height: 34px; border-radius: 10px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 900;
}
.nav-login { text-decoration: none; color: var(--accent-dark); font-weight: 600; font-size: 14px; border: 2px solid var(--accent); border-radius: 20px; padding: 8px 18px; }

.hero {
  background: linear-gradient(160deg, #ece3f7 0%, var(--bg) 100%);
  text-align: center;
  padding: 64px 24px 56px;
}
.hero-inner { max-width: 720px; margin: 0 auto; }
.hero h1 { font-size: 40px; line-height: 1.2; margin: 0 0 16px; color: var(--text); }
.hero-sub { color: var(--muted); font-size: 18px; margin-bottom: 32px; }
.cta {
  display: inline-block; background: var(--accent); color: #fff; text-decoration: none;
  font-weight: 700; padding: 16px 36px; border-radius: 30px; font-size: 15px;
}
.cta:hover { background: var(--accent-dark); }

main { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

section { padding: 56px 0; border-bottom: 1px solid var(--border); }
section:last-of-type { border-bottom: none; }
main h2 { font-size: 28px; text-align: center; margin: 0 0 10px; }
.section-sub { text-align: center; color: var(--muted); margin: 0 0 36px; }
.intro p { max-width: 720px; margin: 0 auto 16px; }

.feature-grid, .steps {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px;
}
.feature-card, .step {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 24px; text-align: center;
}
.feature-icon, .step-num {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%; margin-bottom: 12px;
  background: #e6d9f5; font-size: 20px; font-weight: 800; color: var(--accent-dark);
}
.feature-card h3, .step h3 { font-size: 16px; margin: 6px 0; }
.feature-card p, .step p { font-size: 14px; color: var(--muted); margin: 0; }

.why p { max-width: 720px; margin: 0 auto 20px; }
.why-list {
  max-width: 600px; margin: 0 auto; padding: 0; list-style: none;
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 24px;
}
.why-list li { padding-left: 24px; position: relative; font-size: 14px; }
.why-list li::before { content: "✓"; position: absolute; left: 0; color: var(--accent-dark); font-weight: 800; }

.city-grid {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; max-width: 760px; margin: 0 auto;
}
.city-grid span {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 20px;
  padding: 8px 18px; font-size: 14px; color: var(--muted);
}

.cta-final { text-align: center; }
.cta-final p { color: var(--muted); margin-bottom: 24px; }

.faq { max-width: 700px; margin: 0 auto; }
.faq details {
  border-bottom: 1px solid var(--border); padding: 16px 0;
}
.faq summary { cursor: pointer; font-weight: 700; font-size: 15px; }
.faq p { margin: 12px 0 0; color: var(--muted); font-size: 14px; }

.site-footer { border-top: 1px solid var(--border); padding: 30px 24px; }
.footer-inner {
  max-width: var(--max-width); margin: 0 auto;
  display: flex; gap: 24px; justify-content: center; flex-wrap: wrap;
  font-size: 12px; color: var(--muted);
}
.footer-inner a { color: var(--muted); }

.breadcrumb { font-size: 13px; color: var(--muted); margin: 24px 0 8px; }
.breadcrumb a { color: var(--muted); }
.updated { font-size: 13px; color: var(--muted); margin-bottom: 20px; }
