:root {
  --navy: #14213d;
  --accent: #f28c28;
  --line: #dfe3ec;
  --mute: #6b7386;
  --bg: #f5f6fa;
}
* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Malgun Gothic", sans-serif;
  color: var(--navy);
  background: var(--bg);
  line-height: 1.6;
  word-break: keep-all;
}
.bar {
  display: flex; align-items: baseline; gap: 10px;
  padding: 16px 20px; background: var(--navy); color: #fff;
}
.logo { font-weight: 800; font-size: 20px; letter-spacing: -0.02em; }
.tag { font-size: 13px; opacity: 0.75; }
main { max-width: 560px; margin: 0 auto; padding: 0 20px 48px; }
.hero { padding: 36px 0 28px; }
.eyebrow {
  display: inline-block; margin: 0 0 12px;
  padding: 5px 12px; border-radius: 999px;
  background: #fde9d3; color: var(--accent);
  font-size: 13px; font-weight: 700;
}
h1 { margin: 0 0 12px; font-size: 34px; line-height: 1.3; letter-spacing: -0.03em; }
.sub { margin: 0 0 20px; color: var(--mute); }
.points { margin: 0; padding: 0; list-style: none; }
.points li {
  position: relative; padding-left: 26px; margin-bottom: 8px; font-weight: 600;
}
.points li::before {
  content: ""; position: absolute; left: 0; top: 9px;
  width: 14px; height: 8px; border-left: 3px solid var(--accent);
  border-bottom: 3px solid var(--accent); transform: rotate(-45deg);
}
.formcard {
  background: #fff; border: 1px solid var(--line); border-radius: 18px;
  padding: 26px 22px 22px;
}
.formcard h2 { margin: 0 0 6px; font-size: 22px; }
.formsub { margin: 0 0 20px; font-size: 14px; color: var(--mute); }
label { display: block; margin-bottom: 16px; font-size: 14px; font-weight: 700; }
input[type=text], input[type=tel], select {
  display: block; width: 100%; margin-top: 7px; padding: 13px 14px;
  font-size: 16px; font-family: inherit; color: var(--navy);
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
}
input:focus, select:focus { outline: 2px solid var(--accent); outline-offset: 1px; }
.agree {
  display: flex; align-items: center; gap: 9px;
  font-size: 14px; font-weight: 500; color: var(--mute);
}
.agree input { width: 18px; height: 18px; accent-color: var(--accent); }
button {
  width: 100%; padding: 16px; margin-top: 4px;
  font-size: 17px; font-weight: 800; font-family: inherit; color: #fff;
  background: var(--accent); border: 0; border-radius: 12px; cursor: pointer;
}
button:active { transform: translateY(1px); }
.note { margin: 12px 0 0; font-size: 12px; color: var(--mute); text-align: center; }
footer { padding: 22px 20px 34px; text-align: center; font-size: 12px; color: var(--mute); }
footer p { margin: 0; }

/* 감사 페이지 · 폼 자리 완료 문구 */
.done { padding: 60px 0; text-align: center; }
.done h1 { font-size: 28px; margin: 0 0 10px; }
.check {
  width: 74px; height: 74px; margin: 0 auto 22px; border-radius: 50%;
  background: #fde9d3; position: relative;
}
.check::after {
  content: ""; position: absolute; left: 24px; top: 26px;
  width: 24px; height: 13px; border-left: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent); transform: rotate(-45deg);
}
.back {
  display: inline-block; margin-top: 20px; padding: 12px 24px;
  border: 1px solid var(--line); border-radius: 10px; background: #fff;
  color: var(--navy); font-weight: 700; font-size: 15px; text-decoration: none;
}
.inline-done { display: none; padding: 30px 0 14px; text-align: center; }
.inline-done h3 { margin: 0 0 8px; font-size: 20px; }
.inline-done p { margin: 0; font-size: 14px; color: var(--mute); }
