:root {
  --coral: #e85d75;
  --coral-dark: #d14461;
  --cream: #fff8f3;
  --ink: #2d2233;
  --soft: #6b5d73;
  --card: #ffffff;
  --accent: #ffb347;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.55;
  font-size: 17px;
}
.wrap { max-width: 680px; margin: 0 auto; padding: 0 20px; }
header.site {
  padding: 18px 0;
  text-align: center;
}
header.site a.logo {
  font-weight: 800;
  font-size: 20px;
  color: var(--ink);
  text-decoration: none;
}
header.site a.logo span { color: var(--coral); }
.hero { text-align: center; padding: 36px 0 20px; }
.hero h1 { font-size: 34px; line-height: 1.15; margin-bottom: 14px; }
.hero p.sub { color: var(--soft); font-size: 19px; margin-bottom: 8px; }
.badge {
  display: inline-block; background: #ffe9ee; color: var(--coral-dark);
  font-size: 13px; font-weight: 700; padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.cards { display: grid; gap: 16px; padding: 24px 0; }
@media (min-width: 640px) { .cards { grid-template-columns: 1fr 1fr; } }
.card {
  background: var(--card); border-radius: 16px; padding: 22px;
  box-shadow: 0 2px 12px rgba(45,34,51,.07);
  display: flex; flex-direction: column;
}
.card h3 { font-size: 20px; margin-bottom: 6px; }
.card .price { color: var(--coral); font-weight: 800; font-size: 26px; margin-bottom: 8px; }
.card p { color: var(--soft); font-size: 15px; flex: 1; }
.btn {
  display: inline-block; background: var(--coral); color: #fff; font-weight: 700;
  font-size: 17px; padding: 15px 26px; border-radius: 12px; text-decoration: none;
  border: none; cursor: pointer; text-align: center; width: 100%;
  transition: background .15s;
}
.btn:hover { background: var(--coral-dark); }
.btn.small { width: auto; font-size: 15px; padding: 11px 20px; margin-top: 14px; }
section.block { padding: 26px 0; }
section.block h2 { font-size: 24px; margin-bottom: 14px; text-align: center; }
.steps { display: grid; gap: 14px; }
@media (min-width: 640px) { .steps { grid-template-columns: 1fr 1fr 1fr; } }
.step { background: var(--card); border-radius: 14px; padding: 18px; text-align: center; }
.step .num {
  width: 34px; height: 34px; border-radius: 50%; background: var(--accent);
  color: #fff; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
  margin-bottom: 8px;
}
.step p { font-size: 15px; color: var(--soft); }
details.faq {
  background: var(--card); border-radius: 12px; padding: 14px 18px; margin-bottom: 10px;
}
details.faq summary { font-weight: 700; cursor: pointer; font-size: 16px; }
details.faq p { color: var(--soft); font-size: 15px; padding-top: 8px; }
form label { display: block; font-weight: 700; margin: 18px 0 6px; font-size: 15px; }
form label .opt { color: var(--soft); font-weight: 400; }
textarea, input[type=text], select {
  width: 100%; border: 2px solid #eadfe5; border-radius: 10px; padding: 12px;
  font-size: 16px; font-family: inherit; background: #fff; color: var(--ink);
}
textarea:focus, input:focus, select:focus { outline: none; border-color: var(--coral); }
textarea { min-height: 150px; resize: vertical; }
.counter { font-size: 13px; color: var(--soft); text-align: right; margin-top: 3px; }
.counter.ok { color: #2e9e5b; font-weight: 700; }
.error-box {
  display: none; background: #fff1f1; border: 2px solid #f3c1c1; color: #a33;
  border-radius: 10px; padding: 12px 14px; margin: 14px 0; font-size: 15px;
}
.sample {
  background: #f7f1fb; border-left: 4px solid var(--coral); border-radius: 8px;
  padding: 14px 16px; font-size: 14px; color: var(--soft); margin: 14px 0;
  white-space: pre-wrap; font-family: Georgia, serif;
}
.upload-row { margin-top: 6px; font-size: 14px; color: var(--soft); }
footer.site {
  margin-top: 44px; padding: 26px 0 34px; border-top: 1px solid #f0e4da;
  text-align: center; font-size: 13px; color: var(--soft);
}
footer.site a { color: var(--soft); }
footer.site .disclaimer { margin-top: 10px; font-style: italic; }
.status-card {
  background: var(--card); border-radius: 16px; padding: 28px; text-align: center;
  box-shadow: 0 2px 12px rgba(45,34,51,.07); margin-top: 24px;
}
.status-card h2 { margin-bottom: 10px; }
.status-card p { color: var(--soft); }
.spinner {
  width: 44px; height: 44px; border: 5px solid #ffe0e7; border-top-color: var(--coral);
  border-radius: 50%; margin: 18px auto; animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.dl-list { margin-top: 18px; display: grid; gap: 10px; }
.dl-list a.btn { background: var(--ink); }
.dl-list a.btn:hover { background: #000; }
.legal h1 { font-size: 28px; margin: 26px 0 6px; }
.legal h2 { font-size: 20px; margin: 22px 0 8px; }
.legal p, .legal li { color: var(--soft); font-size: 15.5px; margin-bottom: 10px; }
.legal ul { padding-left: 22px; }
