:root { font-family: Inter, system-ui, sans-serif; color:#172033; background:#f5f7fb; }
* { box-sizing:border-box; }
body { margin:0; }
header { display:flex; justify-content:space-between; align-items:center; padding:18px 5%; background:#111827; color:white; }
.brand { font-weight:800; }
main { max-width:1100px; margin:0 auto; padding:40px 20px 80px; }
.hero { padding:35px 0; }
.hero h1 { font-size:clamp(2rem,5vw,4rem); margin:0 0 12px; }
.card { background:white; border-radius:16px; padding:26px; margin:22px 0; box-shadow:0 8px 30px rgba(0,0,0,.06); }
.grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(190px,1fr)); gap:12px; margin:15px 0; }
input, select { width:100%; padding:12px; border:1px solid #d5d9e2; border-radius:8px; font:inherit; }
button { padding:12px 18px; border:0; border-radius:8px; background:#2563eb; color:white; font-weight:700; cursor:pointer; }
button.secondary { background:#e5e7eb; color:#111827; }
.actions { display:flex; gap:10px; }
.hidden { display:none; }
.message { margin-top:12px; }
.search-header { display:flex; justify-content:space-between; gap:20px; align-items:center; }
.property { border-top:1px solid #e5e7eb; padding:16px 0; }
.badge { display:inline-block; padding:4px 8px; border-radius:999px; background:#eef2ff; font-size:.8rem; }
.field-group { display:flex; flex-direction:column; gap:6px; }
.field-group label { font-size:.78rem; font-weight:800; color:#475569; letter-spacing:.01em; }

.preview-result { border:1px dashed #94a3b8; background:#f8fafc; }
.preview-result ul { margin:8px 0 0 18px; }

.site-footer {
  margin-top: 36px;
  padding: 18px 16px 24px;
  text-align: center;
  color: #94a3b8;
  font-size: 0.75rem;
}
.site-footer small {
  font-size: inherit;
}

.site-footer a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.pricing-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.pricing-options button {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  min-height: 76px;
}
.pricing-options button strong { font-size: 1.05rem; }
.pricing-options button span { font-size: 0.82rem; opacity: 0.82; }
@media (max-width: 640px) {
  .pricing-options { grid-template-columns: 1fr; }
}
