 @charset "utf-8";
 
 /* =========================
   MAIN VISUAL (#mainVisual)
========================= */
#mainVisual.main-hero{
  position:relative;
  min-height:820px;
  padding-top:92px; /* 헤더 높이 */
  overflow:hidden;
  background:url('../img/main/bg_main.jpg') center center / cover no-repeat;
}

/* 오버레이(PC/모바일 공통) */
#mainVisual.main-hero::before{
  content:"";
  position:absolute; inset:0;
  background: radial-gradient(circle at 40% 35%,
    rgba(60,120,180,.22) 0%,
    rgba(0,0,0,.18) 45%,
    rgba(0,0,0,.35) 100%
  );
  pointer-events:none;
}

#mainVisual .hero-inner{
  position:relative;
  max-width:1600px;
  margin:0 auto;
  padding:100px 30px 0px;
  display:flex;
  align-items:stretch;
  gap:10px;
  z-index:1;
}

/* =========================
   LEFT
========================= */
#mainVisual .hero-left{
  position:relative;
  flex:0 0 54%;
  color:#fff;
  padding-top:70px;
  z-index:9;
}

#mainVisual .hero-mark{
  width:80px;
  height:66px;
  margin-bottom:18px;
  background:url('../img/main/logo_g.png') center center / contain no-repeat;
}

#mainVisual .hero-title{
  font-size:55px;
  line-height:1.10;
  letter-spacing:-0.04em;
  margin:0 0 35px;
  font-weight:700;
  text-shadow:0 6px 18px rgba(0,0,0,.35);
}

#mainVisual .hero-name{
  font-size:36px;
  font-weight:700;
}

#mainVisual .hero-sub{
  font-size:22px;
  opacity:.92;
  margin-bottom:28px;
}

#mainVisual .hero-bullets{
  margin:0;
  padding:18px 0 0;
  list-style:none;
}
#mainVisual .hero-bullets li{
  position:relative;
  padding-left:14px;
  margin:12px 0;
  font-size:18px;
  opacity:.95;
}

/* ✅ 상위 3개만 노랑 */
#mainVisual .hero-bullets li:nth-child(-n+3){
  color:#fff981;
}

#mainVisual .hero-bullets li::before{
  content:"";
  position:absolute;
  left:0; top:12px;
  width:6px; height:6px;
  border-radius:50%;
  background:#fff; /* ✅ 2번 느낌의 노랑 포인트 */
}

#mainVisual .hero-bullets li:nth-child(-n+3)::before{
  background:#fff981;
}

/* =========================
   RIGHT (PC 기본)
   - 인물은 absolute로 "섹션 중앙쪽"에 위치
   - 인용박스는 absolute로 인물 위에
========================= */
#mainVisual .hero-right{
  flex:0 0 46%;
  position:relative;
  min-height:850px; /* ✅ 인물 높이만큼 공간 확보 */
}

/* ✅ PC 인물: 섹션 중앙(가운데쪽)으로 끌어오기 */
#mainVisual .hero-person{
  position:absolute;
  left:-60%;          /* ✅ 핵심: 우측이 아니라 왼쪽으로 당김(중앙쪽) */
  bottom:0px;
  width:560px;
  height:850px;
  object-fit:contain;
  display:block;
  user-select:none;
  pointer-events:none;
}


/* ✅ PC 인용박스: 우측에 배치 */
#mainVisual .hero-quote{
  position:absolute;
  right:0;
  bottom:160px;

  width:580px;
  margin:0;
  padding:60px 85px;

  background: rgba(18, 40, 74, .68);
  border: 1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(2px);
  color:#fff;
}
#mainVisual .hero-quote p{
  margin:0;
  font-size:22px;
  line-height:1.7;
  letter-spacing:-0.02em;
  opacity:.96;
}
#mainVisual .hero-quote .q{
  position:absolute;
  font-size:54px;
  opacity:.9;
}
#mainVisual .hero-quote .q1{ left:18px; top:10px; }
#mainVisual .hero-quote .q2{ right:18px; bottom:10px; }

@media (max-width:900px){
	#mainVisual .hero-title{
    font-size:40px;
  }
  
	#mainVisual .hero-name{
		font-size:32px;
	}
	#mainVisual .hero-bullets li{ font-size:16px; }
	#mainVisual .hero-quote{ width:380px; padding:40px 45px; }
	#mainVisual .hero-quote p{
	  font-size:18px;	  
	  width:auto;
	}
	
	#mainVisual .hero-quote .q{ font-size:40px; }
}

/* =========================
   MOBILE
========================= */
@media (max-width:680px){
  #mainVisual.main-hero{
    min-height:auto;
    padding-top:30px;
  }

  #mainVisual .hero-inner{
    flex-direction:column;
    gap:18px;
    padding:40px 18px 24px;
  }

  #mainVisual .hero-left{
    flex:1 1 auto;
    padding-top:20px;
  }
  
  #mainVisual .hero-mark{
	  width:40px;
	  height:33px;
	  margin-bottom:10px;
	}

  #mainVisual .hero-title{
    font-size:35px;
    line-height:1.12;
    margin-bottom:22px;
  }

  #mainVisual .hero-name{ font-size:25px; }
  #mainVisual .hero-sub{ font-size:14px; margin-bottom:5px; }

  #mainVisual .hero-bullets li{
    font-size:12px;
    margin:5px 0;
	padding-left:10px;
  }
  #mainVisual .hero-bullets li::before{ top:8px; width:5px; height:5px; }

  #mainVisual .hero-right{
    flex:1 1 auto;
    min-height:180px;
  }
  
  #mainVisual .hero-person{
    right:0;
    bottom:10px;
    left:auto; top:auto;
    width:220px;
	height:auto;
    object-fit:cover;     /* ✅ 작은 영역에 맞게 크롭 */
    border-radius:6px;
  }
  

  /* 모바일 인용박스: 하단 가로 100% */
  #mainVisual .hero-quote{
    left:0;
    right:0;
    bottom:0;
    width:auto;
    padding:35px 22px 25px;
    background: rgba(18, 33, 58, .65);
  }
  #mainVisual .hero-quote p{
    font-size:12px;
    line-height:1.7;
	letter-spacing:-0.03em;
  }
  #mainVisual .hero-quote .q{ font-size:30px; }
  #mainVisual .hero-quote .q1{ left:14px; top:6px; }
  #mainVisual .hero-quote .q2{ right:14px; bottom:6px; }
}


/* =========================
   성공사례 섹션 (반응형)
========================= */
#caseSection.case-sec{
  position:relative;
  padding:120px 0 80px;
  background: url('../img/main/bg_success.jpg') center/cover no-repeat;
}

#caseSection .case-wrap{
  position:relative;
  max-width:1600px;
  margin:0 auto;
  padding:0 30px;
}
#caseSection .case-title{
  margin:0 0 90px;
  font-size:44px;
  font-weight:900;
  letter-spacing:-0.03em;
  color:#111;
}

/* 2컬럼 -> 모바일 1컬럼 */
#caseSection .case-grid{
  display:grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap:32px;
  align-items:stretch;
}

/* 카드 공통 */
#caseSection .case-card{
  position:relative;
  border-radius:22px;
  overflow:visible;
  box-shadow:0 14px 40px rgba(0,0,0,.12);
}
#caseSection .case-card--light{
  background:#fff;
  padding:70px 36px 34px;
}
#caseSection .case-card--dark{
  background:#072e63;
  padding:88px 30px 34px;
}

/* 동그란 뱃지 */
#caseSection .case-badge{
  position:absolute;
  top:-65px;
  left:50%;
  transform:translateX(-50%);
  width:138px;
  height:138px;
  border-radius:50%;
  background:#fff;
  box-shadow:0 10px 22px rgba(0,0,0,.12);
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:8px;
  text-align:center;
  font-weight:700;
  color:#222;
}
#caseSection .case-badge img{
  width:44px;
  height:auto;
  display:block;
}
#caseSection .case-badge span{
  font-size:18px;
  letter-spacing:-0.02em;
}

/* 리스트 */
#caseSection .case-list{
  display:flex;
  flex-direction:column;
}

/* 왼쪽 큰 박스는 “두 컬럼 느낌” */
#caseSection .case-list--two{
  display:grid;
  grid-template-columns: 1fr 1fr;
  column-gap:26px;
  row-gap:0;
}

/* 행(링크) */
#caseSection .case-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:14px 10px;
  border-bottom:1px solid rgba(0,0,0,.08);
  text-decoration:none;
  color:#222;
}
#caseSection .case-row:hover{
  background:rgba(0,0,0,.03);
}
#caseSection .case-row__txt{
  font-size:16px;
  line-height:1.35;
  letter-spacing:-0.05em;
  flex:1 1 auto;
  min-width:0;
}
#caseSection .case-row__tag{
  flex:0 0 auto;
  font-size:14px;
  font-weight:700;
  border-radius:4px;
  background:#025fa2;
  color:#fff;
  white-space:nowrap;
  width:140px;
  height:34px;
  padding:0 10px;
  box-sizing:border-box;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  letter-spacing:-0.02em;
}

/* 오른쪽 컬럼 태그(원하면) */
#caseSection .case-row__tag--r{
  background:#025fa2;
}

/* 다크 리스트 */
#caseSection .case-row--dark{
  border-bottom:1px solid rgba(255,255,255,.16);
  color:#fff;
}
#caseSection .case-row--dark:hover{
  background:rgba(255,255,255,.06);
}
#caseSection .case-row--dark .case-row__tag{
  background:#025fa2;
}


/* =========================
   반응형
========================= */
@media (max-width:1100px){
  #caseSection .case-grid{
    grid-template-columns:1fr;
	gap:80px;
  }
  #caseSection .case-list--two{
    grid-template-columns:1fr; /* 태블릿부터 한줄 */
  }
}

@media (max-width:680px){
  #caseSection.case-sec{
    padding:60px 0;
  }
  #caseSection .case-wrap{
    padding:0 16px;
  }
  #caseSection .case-title{
    font-size:34px;
    margin-bottom:50px;
  }
  #caseSection .case-card--light,
  #caseSection .case-card--dark{
    padding:64px 18px 24px;
    border-radius:18px;
  }
  #caseSection .case-badge{
    width:100px;
    height:100px;
    top:-50px;
	gap:5px;
  }
  
  #caseSection .case-badge img{
	  width:35px;
	}
  
  #caseSection .case-badge span{
	  font-size:14px;
	}

  #caseSection .case-row__txt{
    font-size:15px;
  }
  #caseSection .case-row__tag{
    font-size:13px;
    padding:6px 10px;
  }
}




/* 영상 섹션 래퍼(선택) */
/* =========================
   TALK SECTION
========================= */
#talkSection.talk-sec{
  position:relative;
  padding:150px 0 100px;
  background: url('../img/main/bg_youtube.jpg') center/cover no-repeat;
  overflow:hidden;
}

/* 배경 패턴(선택) */
#talkSection.talk-sec::before{
  content:"";
  position:absolute; inset:0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.05) 0 0) no-repeat;
  opacity:.08;
  pointer-events:none;
}

#talkSection .talk-inner{
  position:relative;
  max-width:1600px;
  margin:0 auto;
  padding:0 30px;
  display:grid;
  grid-template-columns: 1.02fr 1fr;
  gap:100px;
}

/* LEFT thumb */
#talkSection .talk-thumb{
  position:relative;
  display:block;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 18px 44px rgba(0,0,0,.30);
  text-decoration:none;
}
#talkSection .talk-thumb img{
  width:100%;
  height:auto;
  display:block;
}


/* RIGHT text */
#talkSection .talk-right{ color:#fff; padding-top:30px; }
#talkSection .talk-quote{
  margin:0 0 30px;
  font-size:36px;
  line-height:1.25;
  letter-spacing:-0.03em;
  font-weight:700;
}
#talkSection .talk-desc{
  margin:0 0 30px;
  font-size:16px;
  word-break:keep-all;
  line-height:1.5;
}

/* button */
#talkSection .talk-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:8px 22px;
  border-radius:0; /* 첨부처럼 각진 느낌 */
  background:#fff;
  color:#111;
  text-decoration:none;
  box-shadow:0 12px 30px rgba(0,0,0,.20);
  font-size:16px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
}
#talkSection .talk-btn i{
  font-size:18px;
  transition: transform .18s ease;
}

#talkSection .talk-btn:hover{
  transform: translateY(-2px);
  box-shadow:0 18px 44px rgba(0,0,0,.28);
  background:#f3f6ff;   /* 살짝 블루톤 */
}

#talkSection .talk-btn:hover i{
  transform: translateX(4px);
}


/* =========================
   MODAL
========================= */
#talkSection .yt-modal{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
}
#talkSection .yt-modal.open{ display:block; }

#talkSection .yt-dim{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.65);
}

#talkSection .yt-box{
  position:absolute;
  left:50%;
  top:50%;
  transform:translate(-50%,-50%);
  width:min(980px, calc(100% - 32px));
  background:#000;
  border-radius:12px;
  box-shadow:0 26px 80px rgba(0,0,0,.45);
}

/* 16:9 */
#talkSection .yt-frame{
  position:relative;
  padding-top:56.25%;
}
#talkSection .yt-frame iframe{
  position:absolute;
  left:0; top:0;
  width:100%;
  height:100%;
}

/* close */
#talkSection .yt-close{
  position:absolute;
  right:12px;
  top:-54px;
  z-index:2;
  width:44px;
  height:44px;
  border:0;
  border-radius:999px;
  background:rgba(0,0,0,.65);
  color:#fff;
  cursor:pointer;
}
#talkSection .yt-close i{ font-size:26px; }
#talkSection .yt-close:hover{ background:rgba(255,255,255,.18); }

/* =========================
   RESPONSIVE
========================= */
@media (max-width:980px){
  #talkSection .talk-inner{
    grid-template-columns:1fr;
    gap:26px;
  }
  #talkSection .talk-quote{
    font-size:34px;
	word-break:keep-all;
  }
}

@media (max-width:680px){
  #talkSection.talk-sec{ padding:60px 0; }
  #talkSection .talk-inner{ padding:0 16px; }
  #talkSection .talk-quote{ font-size:25px; }
  #talkSection .talk-desc { font-size:15px; }
  
	#talkSection .yt-close{
		top:-48px;
		right:4px;
	}
}




/* =========================
   PROCESS SECTION
========================= */
#processSection.proc-sec{
  position:relative;
  padding:100px 0 120px;
  background:url('../img/main/bg_process.jpg') center/cover no-repeat;
  overflow:hidden;
}


#processSection .proc-inner{
  position:relative;
  max-width:1600px;
  margin:0 auto;
  padding:0 30px;
  z-index:1;
}

#processSection .proc-title{
  margin:0 0 50px;
  font-size:48px;
  font-weight:700;
  letter-spacing:-0.04em;
  color:#111;
}

/* 3컬럼 레이아웃 */
#processSection .proc-grid{
  display:grid;
  grid-template-columns: 650px 160px 1fr; /* 좌 이미지 / 가운데 단계 / 우 내용 */
  gap:46px;
  align-items:center;
}

/* LEFT 이미지 */
#processSection .proc-left{
  border-radius:0;
  overflow:hidden;
  box-shadow:0 18px 44px rgba(0,0,0,.12);
  background:#fff;
  max-width:600px;
}
#processSection .proc-left img{
  width:100%;
  height:auto;
  display:block;
}

/* MID 단계 */
#processSection .proc-mid{
  position:relative;
  padding-top:6px;
}

/* 세로 라인 */
#processSection .proc-steps{
  list-style:none;
  margin:0;
  padding:0 0 0 22px;
  position:relative;
}
#processSection .proc-steps::before{
  content:"";
  position:absolute;
  left:10px;
 /* ✅ 핵심: 첫번째/마지막 노드 중심에 맞춤 */
  top: calc(18px + 32px/2);       /* 버튼 상단패딩(18) + 노드(14)의 반 */
  bottom: calc(18px + 32px/2);    /* 마지막도 동일 */
  width:2px;

  background:#0b57a3; /* 라인 색 */
  opacity:.9;
  border-radius:2px;
}

/* 단계 버튼 */
#processSection .proc-step{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  width:100%;
  padding:18px 10px;
  background:transparent;
  border:0;
  cursor:pointer;
  text-align:left;
  font-weight:700;
  font-size:28px;
  letter-spacing:-0.03em;
  color:rgba(0,0,0,.35);
}

/* 점(노드) */
#processSection .proc-step::before{
  content:"";
  position:absolute;
  left:-18px;
  top:50%;
  transform:translateY(-50%);
  width:14px;
  height:14px;
  border-radius:50%;
  background:#0b57a3;
  box-shadow:0 0 0 6px rgba(11,87,163,.12);
  opacity:.55;
}

/* 활성 */
#processSection .proc-step.is-active{
  color:#0b57a3;
}
#processSection .proc-step.is-active::before{
  opacity:1;
  box-shadow:0 0 0 7px rgba(11,87,163,.18);
}

/* hover */
#processSection .proc-step:hover{
  color:#0b57a3;
}
#processSection .proc-step:hover::before{
  opacity:.9;
}

/* RIGHT 내용 */
#processSection .proc-right{
  padding-top:6px;
}

#processSection .proc-items{
  display:flex;
  flex-direction:column;
  gap:18px;
}

#processSection .proc-item{
  display:block;           /* grid 해제 */
}

#processSection .proc-item__title{
  display:block;
  font-size:26px;
  font-weight:900;
  letter-spacing:-0.03em;
  color:#111;
  margin:0 0 8px;
}

#processSection .proc-item__desc{
  margin:0;
  font-size:16px;
  line-height:1.5;
  color:#333;
  opacity:.92;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1200px){
  #processSection .proc-grid{
    grid-template-columns: 520px 200px 1fr;
    gap:30px;
  }
  #processSection .proc-title{ font-size:46px; }
  #processSection .proc-step{ font-size:24px; }
  #processSection .proc-item__title{ font-size:22px; }
}

@media (max-width:980px){
  #processSection .proc-grid{
    grid-template-columns: 1fr; /* 1열 스택 */
    gap:22px;
  }

  /* 단계는 가로 탭 형태 */
  #processSection .proc-mid{ order:2; }
  #processSection .proc-left{ order:1; }
  #processSection .proc-right{ order:3; }

  #processSection .proc-steps{
    display:flex;
    gap:10px;
    padding:0;
    overflow:auto;
    -webkit-overflow-scrolling:touch;
  }
  #processSection .proc-steps::before{ display:none; }

  #processSection .proc-steps li{ flex:0 0 auto; }

  #processSection .proc-step{
    font-size:14px;
    padding:12px 14px;
    border-radius:10px;
    background:rgba(255,255,255,.65);
    color:rgba(0,0,0,.45);
  }
  #processSection .proc-step::before{ display:none; }

  #processSection .proc-step.is-active{
    background:#0b57a3;
    color:#fff;
  }

  #processSection .proc-item{
    grid-template-columns: 1fr;
    gap:6px;
  }
}

@media (max-width:680px){
  #processSection.proc-sec{ padding:60px 0 70px; }
  #processSection .proc-inner{ padding:0 16px; }
  #processSection .proc-title{ font-size:28px; margin-bottom:18px; }
}

/* ✅ 전환(부드럽게 바뀜) */
#processSection .proc-left img{
  transition: opacity .45s ease, transform .45s ease;
  will-change: opacity, transform;
}

#processSection .proc-right{
  transition: opacity .45s ease, transform .45s ease;
  will-change: opacity, transform;
}

/* 페이드 아웃 상태 */
#processSection .is-fade{
  opacity: 0;
  transform: translateY(8px);
}