
/* PICK FINAL HERO - isolated from legacy hero styles */
.pickHero{
  position:relative;
  background:#dce7ee;
  overflow:visible;
}
.pickHeroStage{
  position:relative;
  width:100%;
  overflow:visible;
}
.pickHeroImage{
  display:block;
  width:100%;
  height:auto;
  max-width:none;
  object-fit:contain;
}

/* 이미지 속 파란 관심고객등록 원형 위치 */
.pickHeroHotspot{
  position:absolute;
  right:4.3%;
  top:23.0%;
  width:5.9%;
  aspect-ratio:1/1;
  border:0;
  border-radius:50%;
  background:transparent;
  cursor:pointer;
  z-index:24;
}

/* 메인 폼 */
.pickLeadPanel{
  position:absolute;
  right:7.0%;
  top:12.5%;
  width:min(430px,25vw);
  min-width:365px;
  padding:24px 24px 22px;
  border:2px solid #d6a33b;
  border-radius:18px;
  background:linear-gradient(180deg,#0a3158 0%,#062443 100%);
  color:#fff;
  box-shadow:0 18px 48px rgba(0,28,54,.28);
  z-index:30;
  box-sizing:border-box;
}
.pickLeadPanel.is-closed{display:none !important}

.pickLeadClose{
  position:absolute;
  right:11px;
  top:9px;
  width:34px;
  height:34px;
  padding:0;
  border:0;
  background:transparent;
  color:#fff;
  font-size:31px;
  line-height:32px;
  cursor:pointer;
  opacity:.94;
}
.pickLeadBadge{
  display:table;
  margin:0 auto 6px;
  padding:5px 13px;
  border-radius:999px;
  background:#c98d27;
  font-size:11px;
  font-weight:900;
}
.pickLeadProject{
  text-align:center;
  font-size:12px;
  font-weight:800;
}
.pickLeadPanel h1{
  margin:7px 0 2px;
  text-align:center;
  color:#f0b63f;
  font-size:36px;
  line-height:1.08;
}
.pickLeadSub{
  margin:0 0 13px;
  text-align:center;
  color:#e5edf4;
  font-size:12px;
}
.pickLeadForm{
  display:grid;
  gap:8px;
}
.pickLeadForm>label:not(.pickAgree){
  position:relative;
  display:block;
}
.pickLeadForm>label:not(.pickAgree)>span{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  color:#76508b;
  font-size:11px;
  z-index:2;
}
.pickLeadForm input:not([type=checkbox]){
  display:block;
  width:100%;
  height:43px;
  box-sizing:border-box;
  padding:0 13px 0 38px;
  border:1px solid #d8e0e6;
  border-radius:7px;
  background:#fff;
  font-size:13px;
  outline:none;
}
.pickAgree{
  display:flex !important;
  align-items:center;
  gap:7px;
  min-height:22px;
  color:#fff;
  font-size:10.5px;
  line-height:1.35;
}
.pickAgree input[type=checkbox]{
  appearance:auto !important;
  -webkit-appearance:checkbox !important;
  display:block !important;
  width:15px !important;
  height:15px !important;
  min-width:15px !important;
  margin:0 !important;
  padding:0 !important;
  flex:0 0 15px !important;
}
.pickAgree a{color:#fff;text-decoration:underline}
.pickSubmit{
  width:100%;
  height:49px;
  border:0;
  border-radius:8px;
  background:linear-gradient(90deg,#d39b2d,#efbd4b);
  color:#fff;
  font-size:17px;
  font-weight:900;
  cursor:pointer;
}
.pickLeadForm .status{
  text-align:center;
  color:#fff;
  font-size:11px;
  min-height:0;
}

/* 1366~1600 desktop */
@media (min-width:901px) and (max-width:1600px){
  .pickLeadPanel{
    right:5.6%;
    top:9.8%;
    width:382px;
    min-width:382px;
    padding:18px 19px 17px;
  }
  .pickLeadPanel h1{font-size:31px;margin-top:4px}
  .pickLeadSub{margin-bottom:8px}
  .pickLeadForm{gap:7px}
  .pickLeadForm input:not([type=checkbox]){height:39px}
  .pickSubmit{height:44px}
  .pickLeadBadge{font-size:10px;padding:4px 11px}
  .pickLeadProject{font-size:11px}
  .pickHeroHotspot{
    right:4.25%;
    top:23.0%;
  }
}

/* Mobile: image stays uncropped, form becomes true modal */
@media (max-width:900px){
  .pickHeroImage{
    width:100%;
    height:auto;
    object-fit:contain;
  }
  .pickLeadPanel{
    position:fixed;
    left:50%;
    top:50%;
    right:auto;
    width:min(92vw,420px);
    min-width:0;
    max-height:86vh;
    overflow:auto;
    transform:translate(-50%,-50%);
    z-index:120;
    padding:20px 18px 18px;
  }
  .pickHeroHotspot{
    position:fixed;
    right:14px;
    bottom:84px;
    top:auto;
    width:66px;
    height:66px;
    border:1px solid #d5a03a;
    background:#20598c;
    z-index:110;
  }
  .pickHeroHotspot::after{
    content:"관심고객";
    display:block;
    color:white;
    font-size:10px;
    font-weight:900;
  }
  .pickLeadPanel:not(.is-closed)::before{
    content:"";
    position:fixed;
    inset:-100vh -100vw;
    background:rgba(1,25,48,.42);
    z-index:-1;
  }
}
