/* =========================
   기본 세팅
========================= */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Noto Sans KR", sans-serif;
  background: #f4f6f9;
  color: #222;
  line-height: 1.6;
}

input,
textarea,
button,
select {
  font-family: inherit;
}


.inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* =========================
   헤더
========================= */
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e2e5ea;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
}


.logo a {
  font-size: 22px;
  font-weight: 800;
  color: #0a3d91;
  text-decoration: none;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 38px;
  width: auto;
  display: block;
}

.blind {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}


.top-call {
  display: flex;
  align-items: center;
  gap: 6px;

  background: #ff5a00;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
}

.top-call svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.3;
}


.header-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* 햄버거 메뉴 */
.pc-menu {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mobile-menu-btn {
  display: none;
  border: 0;
  background: none;
  font-size: 28px;
  cursor: pointer;
  padding: 0;
  margin-left: 10px;
}

@media(max-width:768px) {

  .pc-menu {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

}


.top-login,
.top-admin {
  padding: 9px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  border: 1px solid #0a3d91;
  color: #0a3d91;
  transition: 0.2s;
}

.top-login:hover {
  background: #0a3d91;
  color: #fff;
}

/* 🔥 관리자 전용 버튼 */
.top-admin {
  background: #111;
  color: #fff;
  font-weight: 600;
  border: 1px solid #111;
}

.top-admin:hover {
  background: #e10600;
  border-color: #e10600;
}

.partner-pending {
  display: inline-block;
  margin-right: 15px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  color: #ff9800;
  background: #fff3e0;
  border-radius: 20px;
  cursor: help;
  transition: 0.2s;
}

.partner-pending:hover {
  background: #ffe0b2;
}


/* =========================
   히어로
========================= */
.hero {
  background: linear-gradient(135deg, #0a3d91, #062a63);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 15px;
}

.hero p {
  font-size: 18px;
  margin-bottom: 30px;
  opacity: 0.95;
}

.btn-call {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  background: #ff5a00;
  color: #fff;
  padding: 15px 35px;
  border-radius: 8px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.btn-call:hover {
  background: #e65100;
  transform: translateY(-2px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

.btn-call svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.4;
  flex-shrink: 0;
}

/* 하단 전화 */
.footer-call {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  margin-top: 8px;
}

.footer-tel {
  display: inline-flex;
  align-items: center;
  gap: 5px;

  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.footer-tel svg {
  width: 16px;
  height: 16px;
  stroke-width: 2.3;
}


/* =========================
   신뢰 섹션
========================= */
.trust {
  background: #ffffff;
  padding: 70px 0;
  text-align: center;
}

.trust h2 {
  margin-bottom: 40px;
  font-size: 28px;
  font-weight: 800;
}

.trust ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0 auto;
  max-width: 800px;
}

.trust li {
  background: #f4f6f9;
  padding: 20px;
  border-radius: 10px;
  font-weight: 600;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
}

/* =========================
   상담 폼
========================= */
.lead-form {
  background: #eef2ff;
  padding: 80px 0;
  text-align: center;
}

.lead-form h2 {
  font-size: 28px;
  font-weight: 800;
}

.lead-form form {
  max-width: 520px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.lead-form input,
.lead-form textarea {
  padding: 14px;
  border-radius: 6px;
  border: 1px solid #dcdfe6;
  font-size: 15px;
}

.lead-form textarea {
  min-height: 120px;
  resize: none;
}

.btn-submit {
  background: #0a3d91;
  color: #fff;
  border: none;
  padding: 15px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.btn-submit:hover {
  opacity: 0.9;
}

/* =========================
   하단 CTA
========================= */
.cta-bottom {
  background: #0a3d91;
  color: #fff;
  text-align: center;
  padding: 60px 20px;
}

.cta-bottom h2 {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 800;
}

/* =========================
   푸터
========================= */
.site-footer {
  background: #111;
  color: #bbb;
  text-align: center;
  padding: 30px 20px;
  font-size: 14px;
}



/* =========================
   반응형
========================= */
@media (max-width: 768px) {

  /* 헤더 */
  .site-header .inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;

    height: 68px;
    padding: 0 16px;
    gap: 0;
  }

  .logo {
    margin: 0;
    flex-shrink: 0;
  }

  .logo img {
    height: 34px;
    width: auto;
  }

  .header-right {
    width: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    margin: 0;
  }

  /* PC 메뉴 숨김 */
  .pc-menu {
    display: none;
  }

  /* 전화 버튼 */
  .top-call {
    display: flex;
    align-items: center;
    gap: 5px;

    padding: 8px 10px;
    font-size: 12px;
    border-radius: 8px;
  }

  .top-call svg {
    width: 15px;
    height: 15px;
  }

  /* 햄버거 버튼 */
  .mobile-menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 38px;
    height: 38px;

    border: 1px solid #e5e7eb;
    border-radius: 8px;

    background: #fff;

    font-size: 22px;
    line-height: 1;

    cursor: pointer;

    padding: 0;
    margin-left: 0;
  }

  /* 히어로 */
  .hero {
    padding: 55px 20px;
  }

  .hero h1 {
    font-size: 24px;
    line-height: 1.3;
  }

  .hero p {
    font-size: 15px;
  }

  .btn-call {
    width: 100%;
    padding: 14px;
    font-size: 15px;
    max-width: 380px;
    margin: 0 auto;
  }

  /* 섹션 */
  .trust,
  .lead-form,
  .cta-bottom {
    padding: 50px 20px;
  }

  .trust ul {
    grid-template-columns: 1fr;
  }

  /* 폼 */
  .lead-form form {
    gap: 12px;
  }

  .lead-form input,
  .lead-form textarea {
    font-size: 14px;
  }

}



/* =========================
   Thanks Page
========================= */
.thanks {
  background: #f4f6f9;
  padding: 120px 20px;
  text-align: center;
}

.thanks .inner {
  max-width: 600px;
  margin: 0 auto;
  background: #ffffff;
  padding: 50px 30px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.thanks h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #0a3d91;
}

.thanks p {
  font-size: 16px;
  margin-bottom: 30px;
  color: #555;
}

.thanks a {
  display: inline-block;
  background: #ff5a00;
  color: #fff;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  text-decoration: none;
  transition: 0.2s;
}

.thanks a:hover {
  opacity: 0.9;
}

/* =========================
   Login Clean Version
========================= */

#mb_login {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #f4f6f9;
}

.login_box {
  width: 100%;
  max-width: 420px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.login_title {
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  margin-bottom: 30px;
}

.login_input input {
  width: 100%;
  height: 48px;
  border: 1px solid #dcdfe6;
  border-radius: 6px;
  padding: 0 15px;
  font-size: 14px;
  margin-bottom: 15px;
}

.login_input input:focus {
  outline: none;
  border-color: #0a3d91;
}

.login_btn {
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 6px;
  background: #0a3d91;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
}

.login_btn:hover {
  background: #062a63;
}

.login_extra {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  margin-top: 15px;
}

.login_extra a {
  color: #0a3d91;
  text-decoration: none;
}

.login_join {
  margin-top: 25px;
  text-align: center;
  font-size: 14px;
}

.login_join a {
  color: #ff5a00;
  font-weight: 700;
  text-decoration: none;
}


@media (max-width:768px) {

  #mb_login {
    padding: 12px;
  }

  .login_box {
    padding: 28px 18px;
  }

}


/* =========================
   Partner Register Step 1
========================= */

#mb_register {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #f4f6f9;
}

.register_box {
  width: 100%;
  max-width: 600px;
  background: #fff;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.register_title {
  text-align: center;
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 10px;
}

.register_desc {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 30px;
}

.register_section {
  margin-bottom: 30px;
}

.register_section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.register_text {
  width: 100%;
  height: 120px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 10px;
  font-size: 13px;
  margin-bottom: 10px;
}

.register_check {
  font-size: 14px;
}

.register_btn_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 30px;
}

.btn_cancel {
  padding: 12px 20px;
  border-radius: 6px;
  border: 1px solid #ccc;
  text-decoration: none;
  color: #333;
}

.btn_submit {
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  background: #0a3d91;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

@media (max-width:768px) {

  #mb_register {
    padding: 12px;
  }

  .register_box {
    padding: 28px 18px;
  }

}

/* ===============================
   FixNet24 Partner Register
=================================*/

#partner_register {
  padding: 60px 20px;
  background: #f6f8fb;
}

.partner_register_box {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  padding: 50px 40px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.partner_title {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 10px;
  text-align: center;
}

.partner_desc {
  text-align: center;
  font-size: 14px;
  color: #666;
  margin-bottom: 35px;
}

/* 입력 박스 */
.reg_input {
  margin-bottom: 18px;
}

.reg_input input {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  transition: 0.2s;
}

.reg_input input:focus {
  border-color: #111;
  outline: none;
}

/* 활동지역 */
.region_label {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

/* 지역 선택 */
.region_select {
  display: flex;
  gap: 10px;
}

.region_select select {
  width: 100%;
  height: 50px;
  padding: 0 15px;
  border-radius: 8px;
  border: 1px solid #ddd;
  font-size: 14px;
  background: #fff;
}

.region_select select:focus {
  outline: none;
  border-color: #111;
}




/* 캡차 */
.captcha_box {
  margin-top: 10px;
  margin-bottom: 20px;
}

/* 버튼 */
.reg_btn {
  width: 100%;
  height: 52px;
  border-radius: 10px;
  border: none;
  background: #111;
  color: #fff;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}

.reg_btn:hover {
  background: #333;
}

/* 모바일 대응 */
@media (max-width: 480px) {

  #partner_register {
    padding: 12px;
  }

  .partner_register_box {
    padding: 28px 18px;
  }

  .region_select {
    flex-direction: column;
  }


}


/* =========================
   캡차 박스 정리
========================= */

#captcha {
  border: 1px solid #eee !important;
  padding: 20px !important;
  border-radius: 10px !important;
  background: #fafafa !important;
}

#captcha legend {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

#captcha img {
  display: block;
  margin-bottom: 10px;
}

#captcha input[type=text] {
  width: 100%;
  height: 45px;
  padding: 0 12px;
  border-radius: 8px;
  border: 1px solid #ddd;
  margin-bottom: 10px;
}

#captcha button {
  height: 36px;
  border: none;
  background: #111;
  color: #fff;
  padding: 0 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 13px;
}

#captcha button:hover {
  background: #333;
}

#captcha p {
  font-size: 12px;
  color: #777;
  margin-top: 5px;
}

@media (max-width:480px) {

  #captcha {
    padding: 14px !important;
  }

  #captcha audio {
    width: 100%;
  }

  #captcha img {
    max-width: 100%;
    height: auto;
  }

  #captcha #captcha_key {
    width: 100% !important;
  }

}


/* =========================
   Partner Register Result
========================= */

#partner_reg_result {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  background: #f4f6f9;
}

.partner_reg_box {
  width: 100%;
  max-width: 480px;
  background: #ffffff;
  padding: 50px 40px;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.partner_reg_title {
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 25px;
  color: #0a3d91;
}

.partner_reg_desc {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 25px;
  color: #333;
}

.partner_reg_notice {
  background: #eef2ff;
  padding: 18px;
  border-radius: 10px;
  font-size: 14px;
  color: #555;
  margin-bottom: 30px;
}

.partner_reg_btn {
  display: inline-block;
  width: 100%;
  padding: 15px;
  background: #0a3d91;
  color: #fff;
  font-weight: 700;
  border-radius: 8px;
  text-decoration: none;
  transition: 0.2s;
}

.partner_reg_btn:hover {
  background: #062a63;
}

.partner_reg_status {
  margin-bottom: 30px;
  font-size: 15px;
  font-weight: 600;
}

.status_wait {
  color: #ff5a00;
}

@media (max-width:768px) {

  #partner_reg_result {
    padding: 12px;
  }

  .partner_reg_box {
    padding: 28px 18px;
  }

}



/* 리드게시판 */
#bo_list {
  padding: 30px;
  background: #f6f8fb;
}

.bo_admin_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.bo_admin_header h2 {
  font-size: 20px;
  font-weight: 700;
}

.bo_admin_total {
  font-size: 14px;
  color: #666;
}

.tbl_wrap table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

.tbl_wrap th,
.tbl_wrap td {
  padding: 14px;
  border-bottom: 1px solid #eee;
  font-size: 14px;
  text-align: left;
}

.tbl_wrap th {
  background: #f1f3f7;
  font-weight: 600;
}

.tbl_wrap tr:hover {
  background: #fafafa;
}

.empty_table {
  text-align: center;
  padding: 30px;
  color: #888;
}

.bo_paging {
  margin-top: 20px;
  text-align: center;
}

#bo_list a,
#bo_v a {
  text-decoration: none;
  color: #333;
}

#bo_list a:hover,
#bo_v a:hover {
  text-decoration: underline;
}

/* seo-content */

.seo-content {
  padding: 70px 0;
}

.seo-content .inner {
  max-width: 900px;
  margin: 0 auto;
}

.seo-content h2 {
  margin-top: 50px;
  font-size: 24px;
  font-weight: 700;
}

.seo-content p {
  line-height: 1.8;
  margin-top: 12px;
  color: #444;
  font-size: 16px;
}

/* footer */

.footer-info {
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #bbb;
}

.footer-info strong {
  color: #fff;
  font-weight: 700;
}

.footer-copy {
  font-size: 13px;
  color: #888;
}


/* =========================
   Case Study Section
========================= */

.case-study {
  padding: 80px 20px;
  background: #f9fafb;
}

.case-study .inner {
  background: #fff;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.case-study h2 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 30px;
  line-height: 1.4;
  color: #111;
}

.case-study h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background: #1e73be;
  margin-top: 10px;
}


.case-study p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 18px;
  color: #444;
}

/* 사진 영역 */
.case-images {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
  margin: 30px 0;
}

.case-images img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
}

.price-highlight {
  color: #e53935;
  font-weight: 700;
  font-size: 18px;
}

/* 모바일 대응 */
@media (max-width: 768px) {

  .case-study {
    padding: 50px 12px;
  }

  .case-study .inner {
    padding: 28px 16px;
  }

  .case-study h2 {
    font-size: 20px;
    line-height: 1.5;
  }

  .case-study p {
    font-size: 15px;
  }

}

.case-step {
  margin-top: 50px;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
  color: #222;
  border-left: 4px solid #1e73be;
  padding-left: 10px;
}

.case-video {
  margin: 18px 0 40px;
}

.video-wrap {
  position: relative;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
}

.video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-caption {
  margin-top: 10px;
  font-size: 14px;
  opacity: .85;
}

@media (max-width:768px){

  .case-video .video-wrap{
    padding-top:75%;
  }

}

.faq details {
  border: 1px solid rgba(0, 0, 0, .08);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 10px 0;
  background: #fff;
}

.faq summary {
  cursor: pointer;
  font-weight: 700;
}

.faq p {
  margin: 10px 0 0;
  line-height: 1.6;
}


/* 모바일 메뉴 */
.mobile-menu-dim {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: 0.25s;
  backdrop-filter: blur(2px);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -320px;
  width: 290px;
  max-width: 85%;
  height: 100%;
  background: #fff;
  z-index: 999;
  transition: 0.35s ease;
  box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-dim.active {
  opacity: 1;
  visibility: visible;
}

/* 상단 헤더 */
.mobile-menu-header {
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  background: #fff;
  border-bottom: 1px solid #f1f1f1;
  color: #111;
}

.mobile-menu-header strong {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
}

.mobile-menu-close {
  border: 0;
  background: none;
  color: #111;
  font-size: 20px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
}

/* 메뉴 영역 */
.mobile-menu-inner {
  padding: 24px 20px;
}

.mobile-menu-inner a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  margin-bottom: 12px;
  border-radius: 14px;
  background: #f8fafc;
  color: #111827;
  text-decoration: none;
  font-size: 15px;
  font-weight: 700;
  transition: 0.2s;
}

.mobile-menu-inner a:hover {
  background: #eff6ff;
  transform: translateY(-1px);
}

/* 전화상담 강조 */
.mobile-menu-inner a:last-child {
  background: #ff6b00;
  color: #fff;
}

.mobile-menu-inner a:last-child:hover {
  background: #e55f00;
}

@media(min-width:769px) {

  .mobile-menu,
  .mobile-menu-dim {
    display: none;
  }

}