/* ===== 히어로 — payhere 상담폼형 히어로 (payhere-exact 사이즈/간격/정렬, Pretendard, 파랑→오렌지) =====
   출처: payhere.in/table-order 히어로 computed. 좌: 배지+제목(529px, 좌측정렬) / 우: 폼(420px).
   컬러만 오렌지, 폰트 패밀리는 Pretendard(통일), 크기·간격은 payhere 그대로. */
.ph-hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#101a2e;
  padding:clamp(96px,10vw,120px) clamp(20px,5vw,40px) clamp(48px,6vw,80px);
  isolation:isolate;
}
.ph-hero *{box-sizing:border-box;}
.ph-hero-inner{
  width:100%;
  max-width:1200px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
}

/* 좌: 배지 + 제목 (529px, 좌측 정렬) */
.ph-hero-left{
  flex:0 1 529px;
  min-width:0;
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  text-align:left;
}
.ph-hero-badge{
  display:inline-block;
  margin-bottom:16px;
  padding:8px 20px;
  border-radius:50px;
  background:var(--orange,#f97316);
  color:#fff;
  font-size:18px; font-weight:700; line-height:28px; letter-spacing:-.5px;
}
.ph-hero-title{
  margin:0;
  color:#fff;
  font-size:44px; font-weight:700; line-height:62px; letter-spacing:-1px;
}
.ph-hero-title b{color:var(--orange,#f97316); font-weight:700;}

/* 우: 폼 (420px, 간격은 payhere margin 그대로) */
.ph-hero-form{
  flex:0 1 420px;
  max-width:420px;
  width:100%;
  display:flex;
  flex-direction:column;
}
.ph-benefit{display:flex; flex-direction:column; gap:10px;}
.ph-benefit-title{font-size:16px; line-height:24px; letter-spacing:-1px; color:#fff;}
.ph-benefit-title b{font-weight:700;}
.ph-benefit-title i{font-style:normal; color:var(--orange,#f97316);}
.ph-benefit-opts{display:flex; flex-direction:column; gap:8px;}
.ph-option{
  display:flex; align-items:center; justify-content:space-between; gap:8px;
  width:100%; height:48px; padding:12px;
  border:1px solid #e2e8ee; border-radius:8px; background:#fff; cursor:pointer;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.ph-option:hover{border-color:var(--orange,#f97316);}
.ph-option.selected{border-color:var(--orange,#f97316); box-shadow:0 0 0 3px rgba(249,115,22,.12);}
.ph-opt-name{font-size:16px; font-weight:700; line-height:24px; letter-spacing:-1px; color:#1c2638;}
.ph-opt-benefit{display:flex; align-items:center; gap:2px;}
.ph-opt-benefit span{font-size:16px; font-weight:700; line-height:24px; letter-spacing:-1px; color:#919ba5;}
.ph-opt-benefit svg{width:22px; height:22px; color:#c8d0da; transition:color .15s ease;}
.ph-option.selected .ph-opt-benefit span{color:var(--orange,#f97316);}
.ph-option.selected .ph-opt-benefit svg{color:var(--orange,#f97316);}

/* 말풍선 (옵션→말풍선 36px) */
.ph-hero-bubble{
  align-self:flex-start;
  margin-top:36px;
  height:24px; display:inline-flex; align-items:center;
  padding:0 10px;
  border-radius:50px;
  background:#fff1e8; color:var(--orange-deep,#e8590c);
  font-size:14px; font-weight:600; line-height:1; letter-spacing:-.5px;
}

/* 필드 (말풍선→인풋 16px, 인풋→드롭다운 24px), 라벨→인풋 10px */
.ph-hero-field{display:flex; flex-direction:column; gap:10px; margin-top:16px;}
.ph-hero-field + .ph-hero-field{margin-top:24px;}
.ph-hero-flabel{font-size:16px; line-height:24px; letter-spacing:-1px; color:#fff;}
.ph-hero-flabel b{font-weight:700;}
.ph-hero-flabel i{font-style:normal; color:var(--orange,#f97316);}
.ph-hero-form input{
  width:100%; height:48px; padding:12px;
  border:1px solid #e2e8ee; border-radius:8px; background:#fff;
  font-family:inherit; font-size:16px; line-height:24px; color:#101a2e;
  transition:border-color .15s ease, box-shadow .15s ease;
}
.ph-hero-form input::placeholder{color:#919ba5;}
.ph-hero-form input:focus{outline:none; border-color:var(--orange,#f97316); box-shadow:0 0 0 3px rgba(249,115,22,.12);}

/* 동의 (→동의 24px) */
.ph-hero-agree{
  margin-top:24px;
  display:flex; align-items:center; gap:8px;
  font-size:14px; color:#fff;
}
.ph-hero-agree input[type=checkbox]{
  width:22px; height:22px; min-width:22px; margin:0; appearance:none;
  border:1px solid rgba(255,255,255,.4); border-radius:4px; background:transparent; cursor:pointer; position:relative;
}
.ph-hero-agree input[type=checkbox]:checked{background:var(--orange,#f97316); border-color:var(--orange,#f97316);}
.ph-hero-agree input[type=checkbox]:checked::after{content:""; position:absolute; left:7px; top:3px; width:5px; height:10px; border:solid #fff; border-width:0 2px 2px 0; transform:rotate(45deg);}
.ph-hero-agree i{font-style:normal; color:var(--orange,#f97316);}
.ph-hero-agree a{margin-left:auto; font-size:13px; color:rgba(255,255,255,.6); text-decoration:underline; white-space:nowrap;}

/* CTA (→CTA 48px, h58) */
.ph-hero-cta{
  margin-top:48px;
  display:flex; align-items:center; justify-content:center;
  width:100%; height:58px;
  border:none; border-radius:10px;
  background:var(--orange,#f97316); color:#fff;
  font-family:inherit; font-size:17px; font-weight:700; cursor:pointer; text-decoration:none;
  box-shadow:0 12px 30px rgba(249,115,22,.3);
  transition:background .16s ease, transform .16s ease, box-shadow .16s ease;
}
.ph-hero-cta:hover{background:var(--orange-deep,#e8590c); transform:translateY(-2px); box-shadow:0 16px 36px rgba(249,115,22,.4);}

/* 커스텀 드롭다운(업종)도 인풋과 동일 높이 */
.ph-hero-form .ph-dd-field{height:48px;}

/* ≤1024: payhere처럼 세로 스택 + 전체 중앙정렬 (제목 44px 유지) */
@media (max-width:1024px){
  .ph-hero-inner{
    flex-direction:column;
    align-items:center;
    justify-content:center;
    gap:clamp(40px,7vw,72px);
  }
  .ph-hero-left{
    flex:0 1 auto;
    align-items:center;
    text-align:center;
    max-width:529px;
  }
  .ph-hero-badge{align-self:center;}
  .ph-hero-title{text-align:center;}
  .ph-hero-form{flex:0 1 auto; width:100%; max-width:420px;}
}
/* 작은 폰: 제목 축소(overflow 방지) */
@media (max-width:560px){
  .ph-hero-title{font-size:clamp(28px,8vw,40px); line-height:1.35;}
}

/* 히어로 서비스 설명(소개서 정렬) — 다크 배경 위 muted 흰색 */
.ph-hero-desc{
  margin:18px 0 0;
  color:rgba(255,255,255,.72);
  font-size:16px; line-height:1.65; letter-spacing:-.2px;
}
@media (max-width:1024px){ .ph-hero-desc{text-align:center;} }
@media (max-width:560px){ .ph-hero-desc{font-size:14.5px; margin-top:14px;} }
