
/* =========================
   TOPBAR
========================= */

.topbar{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  background:#fff;
  border-bottom:1px solid #eee;
  z-index:1000;
}

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

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

/* =========================
   BRAND
========================= */

.brand{
  display:flex;
  align-items:center;
  font-size:20px;
  font-weight:700;
}

.brand .dot{
  width:10px;
  height:10px;
  background:#111;
  border-radius:50%;
  margin-right:8px;
}

/* =========================
   NAV
========================= */

.nav{
  display:flex;
  gap:32px;
}

.nav a{
  text-decoration:none;
  color:#333;
  font-size:15px;
  font-weight:500;
  transition:0.3s;
}

.nav a:hover{
  color:#000;
}

/* =========================
   BUTTON
========================= */

.btn{
  text-decoration:none;
  padding:10px 20px;
  border-radius:8px;
  font-size:14px;
  font-weight:600;
}

.btn.primary{
  background:#111;
  color:#fff;
  transition:0.3s;
}

.btn.primary:hover{
  background:#333;
}
/* =========================
   MOBILE
========================= */

@media (max-width:768px){

  .nav{
    display:none;
  }

  .btn.primary{
    padding:8px 14px;
    font-size:13px;
  }

  .brand{
    font-size:18px;
  }

}


body{
margin:0;
font-family:sans-serif;
color:#111;
}

/* HERO */
.package-hero{
text-align:center;
padding:120px 20px;
background:#f7f7f7;
}

.package-hero h1{
font-size:42px;
margin-bottom:20px;
}

.apply-btn{
display:inline-block;
margin-top:30px;
padding:14px 36px;
background:#000;
color:#fff;
text-decoration:none;
border-radius:8px;
}

/* 공감 */
/* 공감 섹션 전체 컨테이너 */
.package-empathy {
  padding: 100px 20px;
  text-align: left; /* 전체 섹션의 텍스트 정렬을 왼쪽으로 변경 */
}

/* 글과 이미지를 가로로 배치 */
.empathy-content {
  display: flex !important;      
  flex-direction: row !important; /* 글(왼쪽) 이미지(오른쪽) */
  align-items: center;           
  justify-content: center;       
  gap: 40px;                     
  max-width: 900px;
  margin: 40px auto 0;
}

/* 글 영역 */
.empathy-text {
  flex: 1;
  text-align: left; /* 리스트를 왼쪽으로 */
}

.empathy-text ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 2.5;
}

/* 이미지 영역 */
.empathy-image {
  flex: 1;
}

.empathy-image img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

/* 모바일에서는 위아래로 */
@media (max-width: 768px) {
  .empathy-content {
    flex-direction: column !important;
  }
  .empathy-image {
    order: -1; /* 모바일에서 이미지가 위로 */
    margin-bottom: 20px;
  }
}




/* 해결 섹션 가로 배치 */
.solution-content {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: center;
  gap: 60px;
  max-width: 900px;
  margin: 40px auto;
  padding: 0 20px;
}

.solution-image {
  flex: 1;
}

.solution-image img {
  width: 100%;
  border-radius: 15px;
  display: block;
}

.solution-text {
  flex: 1;
  text-align: left; /* 텍스트 왼쪽 정렬 */
}

/* 모바일 대응: 이미지가 위로 가도록 설정 */
@media (max-width: 768px) {
  .solution-content {
    flex-direction: column !important;
  }
  .solution-image {
    order: -1;
    margin-bottom: 20px;
  }
}

/* 시스템 */
.package-system{
padding:100px 20px;
background:#fafafa;
}

.system-wrapper{
display:flex;
justify-content:center;
gap:40px;
flex-wrap:wrap;
}

.system-card{
width:260px;
padding:30px;
border:1px solid #ddd;
border-radius:12px;
text-align:center;
}

/* CTA */
.package-cta{
text-align:center;
padding:120px 20px;
}

.big{
font-size:20px;
padding:18px 50px;
}
.package-solution{
  text-align:center;
  padding:100px 20px;
}

.package-solution p{
  text-align:center;
  max-width:700px;
  margin:20px auto 0;
  line-height:1.8;
}
.package-system h2{
    text-align:center;
}
/* =========================
   MOBILE FIX
========================= */
@media (max-width:768px){

  /* HERO */
  .package-hero{
    padding:80px 20px;
  }

  .package-hero h1{
    font-size:28px;
  }

  .package-hero p{
    font-size:16px;
    line-height:1.6;
  }

  /* 카드 세로 정렬 */
  .system-wrapper{
    flex-direction:column;
    align-items:center;
  }

  .system-card{
    width:100%;
    max-width:340px;
  }

  /* 공감 리스트 */
  /* .package-empathy ul{
    text-align:left;
    max-width:320px;
    margin:auto;
  } */

  /* CTA 버튼 */
  .big{
    font-size:16px;
    padding:16px 28px;
  }

}
/* HERO 섹션 텍스트 정렬 보완 */
.package-hero h1 {
  font-size: 42px;
  margin-bottom: 20px;
  line-height: 1.3;
  word-break: keep-all; /* 줄바꿈 자연스럽게 */
}

.package-hero p {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  margin-bottom: 30px;
}
/* HERO 레이아웃 */
.hero-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

/* 모바일 대응: 위아래로 쌓기 */
@media (max-width: 768px) {
  .hero-wrapper {
    flex-direction: column;
    text-align: center;
  }
  
  .hero-text {
    text-align: center;
  }
  
  .hero-image {
    order: -1; /* 모바일에서 이미지가 위로 */
  }
}

/* 강조 텍스트 */
.package-solution strong {
  color: #ff6b6b;
  font-size: 1.2em;
}

/* 버튼 호버 효과 추가 */
.apply-btn {
  transition: 0.3s;
}

.apply-btn:hover {
  background: #ff6b6b;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* 모바일 대응 추가 */
@media (max-width: 768px) {
  .package-hero h1 {
    font-size: 28px;
  }
  .package-hero p {
    font-size: 15px;
  }
}
.system-image-container {
  text-align: center;
  margin-bottom: 40px; /* 제목과 카드 사이의 여백 */
}

.system-banner {
  width: 100%;
  max-width: 600px; /* 이미지의 최대 크기 설정 */
  height: auto;
  border-radius: 12px;
  display: block;
  margin: 0 auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08); /* 부드러운 그림자 추가 */
}

/* 모바일 대응 */
@media (max-width: 768px) {
  .system-image-container {
    padding: 0 20px;
    margin-bottom: 30px;
  }
}