* { box-sizing: border-box; }
:root {
  --bg: #ffffff;
  --bg-card: #ffffff;
  --line: #e8e4d8;
  --text: #1f1b1a;
  --text-soft: #3d3631;
  --text-muted: #6b6660;
  --c-red: #006241;
  --c-red-glow: #1e3932;
  --c-amber: #cba258;
  --c-cyan: #006241;
  --c-green: #14946a;
  --r: 12px;
  --r-sm: 8px;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
  font-size: 15px;
  line-height: 1.6;
  min-height: 100vh;
  position: relative;
  overflow-x: hidden;
}
.bg-grid { display: none; }
.bg-glow {
  position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background: radial-gradient(circle at 20% 30%, rgba(0,98,65,0.05), transparent 50%),
              radial-gradient(circle at 80% 70%, rgba(203,162,88,0.05), transparent 50%);
}

.page {
  position: relative; z-index: 1;
  max-width: 640px;
  margin: 0 auto;
  padding: 24px 20px 60px;
}

.hd {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 28px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-dot {
  width: 12px; height: 12px;
  background: var(--c-red);
  border-radius: 50%;
  box-shadow: 0 0 12px var(--c-red);
  animation: pulse 1.8s infinite;
}
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.5; } }
.brand-text {
  font-size: 18px; font-weight: 900;
  letter-spacing: 0.05em;
  color: var(--c-red-glow);
  text-shadow: 0 0 10px rgba(0,98,65,0.5);
}
.hd-sub { font-size: 11px; color: var(--text-muted); letter-spacing: 0.04em; }

.hero { text-align: center; margin-bottom: 28px; }
.hero h1 {
  font-size: 36px; font-weight: 900;
  color: var(--c-red-glow);
  letter-spacing: -0.02em;
  margin-bottom: 12px;
}
.hero-desc {
  color: var(--text-soft);
  font-size: 14px;
  margin-bottom: 18px;
}
.hero-desc b { color: var(--c-amber); }
.trust-row { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.trust-pill {
  padding: 4px 12px;
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.3);
  border-radius: 999px;
  font-size: 11px; font-weight: 700;
  color: var(--c-green);
}

.qform {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 28px;
  display: flex; flex-direction: column; gap: 16px;
  box-shadow: 0 4px 16px rgba(30,57,50,0.06);
}
.row label {
  display: flex; flex-direction: column;
  gap: 6px;
  font-size: 12px; font-weight: 700;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}
.row.two { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.req { color: var(--c-red); margin-left: 2px; }
.hint { color: var(--text-muted); font-weight: 500; font-size: 11px; }
.qform input, .qform select, .qform textarea {
  padding: 12px 14px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--text);
  font-family: inherit;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.15s;
}
.qform input::placeholder, .qform textarea::placeholder { color: #9b9690; }
.qform input:focus, .qform select:focus, .qform textarea:focus {
  outline: none;
  border-color: var(--c-red);
  background: #ffffff;
  box-shadow: 0 0 0 3px rgba(0,98,65,0.12);
}
.qform textarea { resize: vertical; min-height: 100px; }

.agree { padding: 8px 0; }
.cb { display: flex; align-items: flex-start; gap: 8px; cursor: pointer; }
.cb input { width: 16px; height: 16px; accent-color: var(--c-red); margin-top: 2px; }
.cb span { font-size: 12px; color: var(--text-muted); }

.submit-btn {
  position: relative;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--c-red), #1e3932);
  border: 0;
  border-radius: var(--r-sm);
  color: #fff;
  font-size: 15px; font-weight: 800;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(0,98,65,0.35);
}
.submit-btn:hover { transform: translateY(-1px); box-shadow: 0 6px 24px rgba(0,98,65,0.5); }
.submit-btn:active { transform: translateY(0); }
.btn-loading { display: none; }
.submit-btn.loading .btn-text { display: none; }
.submit-btn.loading .btn-loading { display: inline; }
.submit-btn.loading { opacity: 0.7; cursor: wait; }

.contact-direct {
  margin-top: 32px;
  padding: 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--r);
}
.contact-direct h3 {
  font-size: 13px; font-weight: 800;
  color: var(--c-cyan);
  margin-bottom: 12px;
  letter-spacing: 0.05em;
}
.cd-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
@media (max-width: 480px) { .cd-grid, .row.two { grid-template-columns: 1fr; } }
.cd-card {
  display: flex; align-items: center; gap: 12px;
  padding: 12px 14px;
  background: #fbfaf6;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  color: var(--text);
  text-decoration: none;
  transition: all 0.15s;
}
.cd-card:hover {
  background: #f1f8f6;
  border-color: var(--c-red);
  transform: translateY(-1px);
}
.cd-icon { font-size: 20px; }
.cd-label { font-size: 10px; color: var(--text-muted); letter-spacing: 0.05em; }
.cd-value { font-size: 13px; font-weight: 700; color: var(--text); }

.ft {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  text-align: center;
  font-size: 11px;
  color: var(--text-muted);
}
.ft-sub { margin-top: 4px; opacity: 0.7; }

dialog {
  border: 0;
  border-radius: var(--r);
  background: var(--bg-card);
  backdrop-filter: blur(30px);
  color: var(--text);
  padding: 0;
  max-width: 420px;
  width: 90vw;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}
dialog::backdrop { background: rgba(10, 14, 26, 0.85); backdrop-filter: blur(8px); }
.dlg-body { padding: 32px 28px; text-align: center; }
.dlg-icon {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: rgba(52, 211, 153, 0.18);
  border: 2px solid var(--c-green);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; font-weight: 900;
  color: var(--c-green);
  text-shadow: 0 0 10px var(--c-green);
}
.dlg-body h2 {
  font-size: 18px; font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}
.dlg-body p {
  font-size: 13px;
  color: var(--text-soft);
  margin-bottom: 20px;
  line-height: 1.7;
}
.dlg-body p b { color: var(--c-amber); }
.dlg-btn {
  padding: 10px 32px;
  background: linear-gradient(135deg, var(--c-red), #1e3932);
  border: 0;
  border-radius: var(--r-sm);
  color: #fff;
  font-size: 13px; font-weight: 700;
  cursor: pointer;
}
.dlg-btn:hover { background: linear-gradient(135deg, #1e3932, #0c2620); }
