/* HANSCNC Inquiry Template (modern) */

.hanscnc-inquiry-page{
  /* 회색 느낌을 줄이고, 밝은 화이트 계열로(폼 카드와 구분되도록 아주 약한 그라데이션) */
  background: linear-gradient(180deg, #ffffff 0%, #fbfcff 55%, #f7f9fd 100%);
  --ink:#0f172a;
  --muted:rgba(15,23,42,.70);
  --brand:#1e3f86;
  --accent:#E53935;
  --card:#ffffff;
  --line:rgba(15,23,42,.10);
}

.hanscnc-inquiry-page .hans-inquiry-wrap{
  max-width:1180px;
  margin:0 auto;
  padding:0 22px;
}

.hanscnc-inquiry-page .hans-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:rgba(255,255,255,.85);
}

.hanscnc-inquiry-page .hans-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 14px;
  border-radius:12px;
  text-decoration:none;
  font-weight:900;
  border:1px solid rgba(0,0,0,.06);
  cursor:pointer;
}
.hanscnc-inquiry-page .hans-btn.primary{
  background:var(--brand);
  color:#fff;
  box-shadow:0 10px 18px rgba(30,63,134,.22);
}
.hanscnc-inquiry-page .hans-btn.ghost{
  background:rgba(255,255,255,.80);
  color:var(--brand);
  border-color:rgba(255,255,255,.55);
}
.hanscnc-inquiry-page .hans-btn.ghost.light{
  background:rgba(255,255,255,.16);
  color:#fff;
  border-color:rgba(255,255,255,.35);
}
.hanscnc-inquiry-page .hans-btn.full{ width:100%; }

.hanscnc-inquiry-page .hans-inquiry-hero{
  position:relative;
  padding:44px 0 28px;
  overflow:hidden;
}
.hanscnc-inquiry-page .hans-inquiry-hero__bg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 15% 15%, rgba(255,255,255,.26), rgba(255,255,255,0) 60%),
    var(--hero);
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
  /* 히어로 이미지: 원본 그대로(블러/필터 제거) */
  filter: none;
  transform: none;
}
.hanscnc-inquiry-page .hans-inquiry-hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 420px at 10% 15%, rgba(255,255,255,.18), rgba(255,255,255,0) 60%),
    linear-gradient(135deg, rgba(15,23,42,.58) 0%, rgba(15,23,42,.42) 55%, rgba(15,23,42,.22) 100%);
}

.hanscnc-inquiry-page .hans-inquiry-hero__grid{
  position:relative;
  z-index:1;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  align-items:start;
}

.hanscnc-inquiry-page .hans-inquiry-hero__copy h1{
  margin:10px 0 10px;
  font-size:44px;
  line-height:1.12;
  letter-spacing:-.5px;
  color:#fff;
  font-weight:900;
}
.hanscnc-inquiry-page .hans-lead{
  margin:0;
  color:rgba(255,255,255,.84);
  font-size:16px;
  line-height:1.65;
  font-weight:600;
}
.hanscnc-inquiry-page .hans-hero-ctas{ margin-top:16px; display:flex; flex-wrap:wrap; gap:12px; }
.hanscnc-inquiry-page .hans-mini-proof{ margin-top:16px; display:flex; flex-wrap:wrap; gap:10px 14px; }
.hanscnc-inquiry-page .hans-mini-proof span{
  display:inline-flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  font-size:13px;
  color:rgba(255,255,255,.85);
  background:rgba(255,255,255,.10);
  border:1px solid rgba(255,255,255,.14);
  padding:8px 10px;
  border-radius:999px;
}

.hanscnc-inquiry-page .hans-inquiry-hero__card{
  background:rgba(255,255,255,.92);
  border:1px solid rgba(255,255,255,.55);
  border-radius:22px;
  box-shadow:0 18px 46px rgba(0,0,0,.18);
  overflow:hidden;
}
.hanscnc-inquiry-page .hans-card-head{
  padding:22px 22px 14px;
  border-bottom:1px solid rgba(15,23,42,.08);
}
.hanscnc-inquiry-page .hans-card-head h2{
  margin:0;
  color:var(--ink);
  font-size:22px;
  font-weight:900;
  letter-spacing:-.3px;
}
.hanscnc-inquiry-page .hans-card-head p{
  margin:6px 0 0;
  color:var(--muted);
  font-weight:600;
}
.hanscnc-inquiry-page .hans-card-badges{ margin-top:12px; display:flex; flex-wrap:wrap; gap:8px; }
.hanscnc-inquiry-page .badge{
  background:rgba(30,63,134,.08);
  color:var(--brand);
  border:1px solid rgba(30,63,134,.14);
  font-weight:900;
  font-size:12px;
  padding:6px 10px;
  border-radius:999px;
}

.hanscnc-inquiry-page .hans-alert{
  margin:16px 22px 0;
  border-radius:14px;
  padding:12px 12px;
  font-weight:800;
  line-height:1.5;
}
.hanscnc-inquiry-page .hans-alert.success{ background:rgba(34,197,94,.10); border:1px solid rgba(34,197,94,.22); color:rgba(22,101,52,1); }
.hanscnc-inquiry-page .hans-alert.error{ background:rgba(239,68,68,.10); border:1px solid rgba(239,68,68,.22); color:rgba(153,27,27,1); }

.hanscnc-inquiry-page .hans-form{
  padding:18px 22px 22px;
}
.hanscnc-inquiry-page .hans-form label{ display:block; margin:0 0 12px; }
.hanscnc-inquiry-page .hans-form label span{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:8px;
  color:var(--ink);
  font-weight:900;
  font-size:13px;
  padding-bottom:6px;
}
.hanscnc-inquiry-page .hans-form label span i{
  font-style:normal;
  color:var(--accent);
  font-weight:900;
}
.hanscnc-inquiry-page .hans-form input[type="text"],
.hanscnc-inquiry-page .hans-form input[type="email"],
.hanscnc-inquiry-page .hans-form input[type="search"],
.hanscnc-inquiry-page .hans-form select,
.hanscnc-inquiry-page .hans-form textarea{
  width:100%;
  border:1px solid rgba(15,23,42,.14);
  border-radius:12px;
  padding:12px 12px;
  background:#fff;
  color:var(--ink);
  font-size:14px;
  box-shadow:0 1px 0 rgba(15,23,42,.04);
}
.hanscnc-inquiry-page .hans-form textarea{ resize: vertical; min-height:120px; }
.hanscnc-inquiry-page .hans-grid2{ display:grid; grid-template-columns:1fr 1fr; gap:12px; }

.hanscnc-inquiry-page .hans-fieldset{
  border:1px dashed rgba(15,23,42,.16);
  border-radius:14px;
  padding:12px 12px 6px;
  margin:8px 0 12px;
}
.hanscnc-inquiry-page .hans-fieldset legend{
  padding:0 6px;
  font-weight:900;
  color:var(--ink);
  font-size:13px;
}
.hanscnc-inquiry-page .hans-fieldset small{ color:rgba(15,23,42,.6); font-weight:800; }
.hanscnc-inquiry-page .hans-checks{ display:grid; grid-template-columns:1fr 1fr; gap:8px 10px; padding:8px 0 0; }
.hanscnc-inquiry-page .hans-checks label{ margin:0; font-weight:800; color:rgba(15,23,42,.78); }
.hanscnc-inquiry-page .hans-checks input{ margin-right:8px; }

.hanscnc-inquiry-page .hans-file input[type="file"]{ padding:10px; }
.hanscnc-inquiry-page .hans-file em{ display:block; margin-top:6px; color:rgba(15,23,42,.60); font-weight:700; font-size:12px; }

.hanscnc-inquiry-page .hans-consent{
  display:flex;
  align-items:center;
  gap:10px;
  margin:10px 0 14px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(15,23,42,.03);
  border:1px solid rgba(15,23,42,.08);
}
.hanscnc-inquiry-page .hans-consent span{ padding:0; font-size:13px; font-weight:900; color:rgba(15,23,42,.84); }
.hanscnc-inquiry-page .hans-consent small{ font-weight:900; color:var(--accent); }

.hanscnc-inquiry-page .hans-form-foot{
  margin-top:10px;
  text-align:center;
  color:rgba(15,23,42,.70);
  font-weight:800;
  font-size:13px;
}
.hanscnc-inquiry-page .hans-form-foot a{ color:var(--brand); font-weight:900; text-decoration:none; }

.hanscnc-inquiry-page .hans-inquiry-process{
  background:#fff;
  padding:44px 0 70px;
}
.hanscnc-inquiry-page .hans-section-head{
  margin-bottom:18px;
}
.hanscnc-inquiry-page .hans-section-head.centered{ text-align:center; }
.hanscnc-inquiry-page .hans-section-head h3{
  margin:0;
  font-size:26px;
  color:var(--ink);
  font-weight:900;
  letter-spacing:-.3px;
}
.hanscnc-inquiry-page .hans-section-head p{
  margin:6px 0 0;
  color:rgba(15,23,42,.70);
  font-weight:700;
}
.hanscnc-inquiry-page .hans-steps{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:12px;
}
.hanscnc-inquiry-page .hans-steps .step{
  background:#fff;
  border:1px solid rgba(15,23,42,.10);
  border-radius:18px;
  padding:14px 14px;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
}
.hanscnc-inquiry-page .hans-steps .n{
  width:40px;
  height:40px;
  border-radius:14px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(30,63,134,.10);
  color:var(--brand);
  font-weight:900;
}
.hanscnc-inquiry-page .hans-steps b{ display:block; margin-top:10px; color:var(--ink); font-weight:900; }
.hanscnc-inquiry-page .hans-steps p{ margin:6px 0 0; color:rgba(15,23,42,.70); font-weight:700; line-height:1.6; }

@media (max-width:980px){
  .hanscnc-inquiry-page .hans-inquiry-hero__grid{ grid-template-columns:1fr; }
  .hanscnc-inquiry-page .hans-inquiry-hero__copy h1{ font-size:36px; }
  .hanscnc-inquiry-page .hans-steps{ grid-template-columns:1fr 1fr; }
}
@media (max-width:560px){
  .hanscnc-inquiry-page .hans-grid2{ grid-template-columns:1fr; }
  .hanscnc-inquiry-page .hans-checks{ grid-template-columns:1fr; }
  .hanscnc-inquiry-page .hans-steps{ grid-template-columns:1fr; }
}

/* Spam protection (honeypot) */
.hanscnc-inquiry-page .hans-honeypot{position:absolute!important;left:-9999px!important;top:auto!important;width:1px!important;height:1px!important;overflow:hidden!important}
