@charset "utf-8";

/* ===== 3PL 페이지 전용 스타일 (Modern Redesign) ===== */

/* 1. Base Setup */
.tpl-hero,
.tpl-section,
.inquiry-section {
  font-family: 'Noto Sans KR', sans-serif;
  word-break: keep-all;
}

/* 전역 box-sizing 적용 (레이아웃 깨짐 방지) */
.tpl-hero *,
.tpl-section *,
.inquiry-section *,
.tpl-hero ::after,
.tpl-hero ::before {
  box-sizing: border-box;
}

#content {
  max-width: 100%;
  margin: 0 auto;
  overflow-x: hidden;
}

/* 2. Hero Section - Premium Redesign */
.tpl-hero {
  position: relative;
  padding-top: 150px;
  padding-bottom: 120px;
  min-height: 100vh;
  height: auto;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* 고급스러운 다크 그라데이션 오버레이 */
.tpl-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.85) 100%);
  z-index: 1;
}

/* 히어로 컨텐츠 래퍼 */
.tpl-hero .hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1000px;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: heroFadeIn 1s ease-out;
}

@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-logo {
  height: 48px;
  margin-bottom: 40px;
  /* 간격 조정 */
  filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.tpl-hero h1 {
  font-size: 64px;
  font-weight: 800;
  line-height: 1.25;
  margin-bottom: 40px;
  letter-spacing: -2px;
  text-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  /* 더 밝은 화이트 그라데이션으로 변경 */
  background: linear-gradient(to bottom, #ffffff 0%, #f1f5f9 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* 소개 텍스트 그룹 */
.hero-intro {
  margin-bottom: 30px;
}

.hero-intro p {
  font-size: 22px;
  line-height: 1.6;
  color: #e2e8f0;
  /* 기존보다 밝게 변경 */
  font-weight: 400;
  margin-bottom: 15px;
}

.hero-intro .main-desc {
  font-size: 24px;
  color: #fff;
  margin-bottom: 0;
}

.text-highlight {
  color: #38bdf8;
  /* 더 밝고 쨍한 스카이 블루 */
  font-size: 1.15em;
  /* 폰트 크기 키움 */
  font-weight: 800;
  /* 배경 제거 (사각형 삭제) */
  background: none;
  padding: 0;
  display: inline;
  text-shadow: 0 0 15px rgba(56, 189, 248, 0.4);
}

/* 중간 메시지 (파트너) */
.hero-message {
  font-size: 20px;
  font-weight: 500;
  color: #fff;
  /* 완전한 흰색으로 변경 */
  margin-bottom: 40px;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.3);
  /* 라인도 조금 더 잘 보이게 */
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  width: 100%;
  max-width: 600px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  /* 가독성 위한 그림자 추가 */
}

/* 수정된 카드형 리스트 디자인 */
.hero-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  /* 2열 배치 */
  gap: 20px;
  padding: 0;
  margin: 0;
  /* 마진 제거 */
  list-style: none;
  width: 100%;
  max-width: 900px;
}

.hero-points li {
  background: rgba(255, 255, 255, 0.08);
  /* 유리 느낌 */
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 17px;
  color: #f1f5f9;
  text-align: left;
  backdrop-filter: blur(10px);
  transition: transform 0.3s ease;
}

.hero-points li:hover {
  transform: translateY(-5px);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.3);
}

.hero-points li strong {
  color: #fff;
  font-weight: 700;
}

.hero-points li::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #60a5fa;
  /* 포인트 컬러 */
  flex-shrink: 0;
  box-shadow: 0 0 10px #60a5fa;
}

/* 왼쪽 하단 텍스트 (다시 활성화 및 스타일링) */
.hero-left-text {
  display: flex !important;
  flex-direction: column;
  margin-top: 80px;
  z-index: 5;
  text-align: center;
  align-items: center;
  opacity: 1;
}

/* hover 효과 제거 */

.hero-title-3pl {
  font-family: 'Roboto', sans-serif;
  /* 영문 폰트 추천 */
  font-weight: 900;
  font-size: 80px;
  line-height: 0.9;
  color: #ffffff;
  letter-spacing: -2px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-subtitle-floating {
  display: block;
  font-size: 16px;
  letter-spacing: 8px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  margin-left: 5px;
  margin-top: 5px;
}

/* 모바일 대응 */
@media (max-width: 1024px) {
  .tpl-hero h1 {
    font-size: 42px;
    margin-bottom: 30px;
  }

  .hero-intro p {
    font-size: 18px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .hero-left-text {
    display: none !important;
  }

  /* 모바일에서는 숨김 */
}

/* 하단 바 이미지 */
.hero-bottom-bar {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 60%;
  z-index: 4;
  pointer-events: none;
  display: flex;
  align-items: flex-end;
}

.hero-bottom-bar img {
  width: 100%;
  height: auto;
  object-fit: contain;
}


/* 3. Common Section Styles */
.tpl-section {
  padding: 100px 0;
  position: relative;
}

.tpl-section.bg-light {
  background-color: #f8fafc;
}

.tpl-section.bg-gradient {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  color: #fff;
}

.tpl-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-header h2 {
  font-size: 42px;
  font-weight: 800;
  color: #1e293b;
  margin-bottom: 20px;
  letter-spacing: -0.5px;
}

.section-header p {
  font-size: 18px;
  color: #64748b;
  font-weight: 400;
}

/* Dark theme headers */
.tpl-section.bg-gradient .section-header h2 {
  color: #fff;
}

.tpl-section.bg-gradient .section-header p {
  color: #94a3b8;
}


/* 4. Process Section - Professional Balance */
.process-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.process-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  /* 부드러운 깊이감 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
  transition: all 0.3s ease;
  border: 1px solid rgba(226, 232, 240, 0.8);
  height: 100%;
  position: relative;
  overflow: hidden;
}

/* 상단 포인트 라인 (너무 튀지 않게) */
.process-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #2563eb;
  /* 신뢰감 있는 블루 단색 */
  opacity: 0;
  transition: opacity 0.3s;
}

.process-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.process-card:hover::after {
  opacity: 1;
  /* 호버 시에만 라인 등장 */
}

/* 카드 헤더 (아이콘 + 텍스트) */
.process-card-header {
  display: flex;
  align-items: center;
  /* 다시 중앙 정렬 */
  gap: 20px;
  margin-bottom: 25px;
  border-bottom: 1px solid #f1f5f9;
  padding-bottom: 25px;
}

/* 아이콘 스타일 복구 및 개선 */
.process-card .icon {
  width: 64px;
  height: 64px;
  background: aliceblue;
  /* 아주 연한 블루 */
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #2563eb;
  transition: all 0.3s;
}

.process-card:hover .icon {
  background: #2563eb;
  color: #fff;
  box-shadow: 0 5px 15px rgba(37, 99, 235, 0.3);
}

.process-card .title-group {
  text-align: left;
  /* 다시 왼쪽 정렬 */
  flex: 1;
}

.process-card .title-group h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 5px;
  letter-spacing: -0.5px;
}

.process-card .title-group h3 span {
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 3px;
  display: block;
}

/* 설명 텍스트 */
.process-card .sub-desc {
  font-size: 16px;
  color: #2563eb;
  /* 블루 포인트 */
  font-weight: 600;
  margin-bottom: 20px;
  background: none;
  padding: 0;
  line-height: 1.5;
}

/* 리스트 스타일 */
.process-card ol {
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: process-counter;
}

.process-card ol li {
  font-size: 15px;
  color: #475569;
  line-height: 1.8;
  /* 줄간격 여유 */
  margin-bottom: 8px;
  padding-left: 24px;
  position: relative;
  counter-increment: process-counter;
}

/* 깔끔한 점 스타일 */
.process-card ol li::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 10px;
  width: 6px;
  height: 6px;
  background: #cbd5e1;
  border-radius: 50%;
  transition: background 0.3s;
}

.process-card:hover ol li::before {
  background: #2563eb;
  /* 호버 시 파란색 */
}


/* 5. Strength Section */
.strength-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  /* 3열 그리드 복구 */
  gap: 30px;
  margin-top: 40px;
}

/* 5. Strength Section (Separated Circle Layout) */
.strength-card {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* 중앙 정렬 */
  position: relative;
}

.strength-card:hover {
  transform: translateY(-5px);
}

/* 이미지 영역 (원형) */
.strength-card .img-circle {
  width: 220px;
  /* 고정 크기 */
  height: 220px;
  border-radius: 50%;
  /* 완벽한 원형 */
  margin: 0 auto 30px;
  /* 하단 여백 추가하여 카드와 분리 */
  overflow: hidden;
  position: relative;
  z-index: 1;
  background: #fff;
  /* 이미지가 투명할 경우 대비 */
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  /* 원형 그림자 강조 */
  transform: none;
  /* 스케일 초기화 */
  border: 4px solid #fff;
  /* 흰색 테두리로 분리감 줌 */
}

/* 호버 시 이미지 확대 */
.strength-card .img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.strength-card:hover .img-circle img {
  transform: scale(1.1);
}

/* 텍스트 컨텐츠 (분리된 카드) */
.strength-card-content {
  background: #fff;
  width: 100%;
  flex: 1;
  padding: 50px 30px 40px;
  /* 상단 패딩 조정 */
  border-radius: 20px;
  margin-top: 0;
  /* 오버랩 제거 */
  position: relative;
  z-index: 0;
  /* 이미지 뒤로 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* 부드러운 그림자 */
  text-align: center;
  border: 1px solid #f1f5f9;
  display: flex;
  flex-direction: column;
}

/* 번호 배지 - 카드 상단에 걸치기 */
.strength-card .num {
  position: absolute;
  top: -15px;
  /* 카드 상단 모서리에 걸침 */
  left: 50%;
  transform: translateX(-50%);
  background: #2563eb;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
  box-shadow: 0 4px 10px rgba(37, 99, 235, 0.3);
  z-index: 3;
  width: auto;
}

.strength-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 10px;
  word-break: keep-all;
}

.strength-card .sub-title {
  font-size: 15px;
  color: #64748b;
  margin-bottom: 25px;
  font-weight: 500;
}

/* 리스트 스타일 */
.strength-card ul {
  text-align: left;
  padding: 24px;
  width: 100%;
  background: #f8fafc;
  border-radius: 12px;
  margin-top: 0;
  box-sizing: border-box;
}

.strength-card ul li {
  font-size: 14px;
  color: #475569;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
  line-height: 1.6;
}

.strength-card ul li:last-child {
  margin-bottom: 0;
}

.strength-card ul li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  color: #2563eb;
  font-weight: bold;
  font-size: 14px;
}

/* 반응형 */
@media (max-width: 1024px) {
  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .strength-grid {
    grid-template-columns: 1fr;
  }
}

/* 6. Feature List (Dark Section) - Reverted to Original Style with Images */
.dark-section {
  background: #0f172a;
  padding: 80px 0;
  margin-top: 80px;
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-list li {
  background: rgba(255, 255, 255, 0.05);
  /* Glassmorphism Base */
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px 30px;
  display: flex;
  align-items: flex-start;
  gap: 30px;
  /* 간격 증가: 20px -> 30px */
  position: relative;
  transition: all 0.3s ease;
  text-align: left;
}

.feature-list li:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-5px);
}

/* 이미지 아이콘 박스 (Original CSS + Image Support) */
.feature-list .img-box {
  width: 80px;
  /* 이미지 크기 확보 */
  height: 80px;
  background: transparent;
  /* 배경 제거 */
  border-radius: 0;
  /* 둥근 모서리 제거 */
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: visible;
  /* 잘림 방지 */
}

.feature-list .img-box img {
  width: 100%;
  height: auto;
  /* 비율 유지 */
  object-fit: contain;
}

/* 텍스트 컨텐츠 */
.feature-list .content {
  flex: 1;
}

.feature-list h3 {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  margin-top: 0;
  word-break: keep-all;
}

.feature-list p {
  font-size: 15px;
  color: #cbd5e1;
  line-height: 1.6;
  margin: 0;
}

/* 숫자 스타일 (원래 CSS 느낌 유지) */
.feature-list .num {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  line-height: 1;
}

.feature-list li:hover .num {
  color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
  .feature-list {
    grid-template-columns: 1fr;
  }
}


/* 7. Service Grid (Light Style) */
.service-section {
  border-bottom: 1px solid #e2e8f0;
  /* 하단 보더 추가 */
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 40px 30px;
  text-align: center;
  border: 1px solid #f1f5f9;
  /* 연한 테두리 */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  /* 부드러운 그림자 */
  transition: transform 0.3s;
  /* Flex Layout for Alignment */
  display: flex;
  flex-direction: column;
  height: 100%;
  /* 카드 높이 균일하게 */
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(37, 99, 235, 0.1);
  /* 호버 시 블루 틴트 그림자 */
  border-color: #bfdbfe;
}

.service-card h3 {
  font-size: 24px;
  font-weight: 700;
  color: #1e293b;
  /* 다크 컬러 */
  margin-bottom: 20px;
  word-break: keep-all;
}

.service-card p {
  font-size: 15px;
  color: #475569;
  /* 중간 톤 그레이 */
  line-height: 1.8;
  margin-bottom: 30px;
  /* min-height 제거: Flex로 자동 정렬 */
  word-break: keep-all;
  flex: 1;
  /* 텍스트 영역이 남은 공간 차지 (선택사항, 이미지를 아래로 밀기 위해) */
}

.service-card p strong {
  color: #2563eb;
  /* 블루 포인트 */
}

.service-card .img-circle {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  margin: auto auto 0;
  /* 상단 auto로 밀어서 바닥 고정 */
  border: 4px solid #f1f5f9;
  /* 밝은 회색 테두리 */
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex-shrink: 0;
  /* 이미지 찌그러짐 방지 */
}

.service-card .img-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


/* 8. Inquiry Section */
.inquiry-section {
  background: #fff;
  padding: 120px 0;
}

.inquiry-form-wrap {
  background: #fff;
  border-radius: 30px;
  padding: 60px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
  max-width: 800px;
  margin: 0 auto;
  border: 1px solid #f1f5f9;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 10px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 16px;
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  font-size: 15px;
  color: #1e293b;
  transition: all 0.2s ease;
  background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #2563eb;
  background: #fff;
  box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.form-group textarea {
  height: 120px;
}

.privacy-notice {
  background: #f1f5f9;
  padding: 25px;
  border-radius: 12px;
  font-size: 13px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 25px;
}

.privacy-check label {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
}

.privacy-check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  accent-color: #2563eb;
}

.submit-btn {
  width: 100%;
  padding: 20px;
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  margin-top: 30px;
  box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 30px rgba(37, 99, 235, 0.4);
}


/* 9. Modal */
.modal-overlay.show {
  display: flex;
  animation: fadeIn 0.2s;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.modal-content {
  border-radius: 24px;
  padding: 50px 40px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.25);
}


/* 10. Responsive */
@media (max-width: 1024px) {
  .tpl-hero {
    height: auto;
    padding: 120px 0 80px;
  }

  .hero-overlay-right,
  .bg-right,
  .hero-bottom-bar,
  .hero-left-text {
    display: none;
  }

  .tpl-hero .hero-content {
    margin-top: 0;
    padding: 0 30px;
    text-align: center;
  }

  .hero-logo {
    margin: 0 auto 30px;
  }

  .hero-footer {
    border-left: none;
    padding-left: 0;
    border-top: 4px solid #ffd700;
    padding-top: 30px;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .strength-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .service-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 768px) {
  .tpl-hero h1 {
    font-size: 32px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .strength-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .form-group.full-width {
    grid-column: span 1;
  }

  .inquiry-form-wrap {
    padding: 30px 20px;
  }

  .submit-btn {
    padding: 16px;
    font-size: 16px;
  }
}