body {
  margin:0;
  font-family:'Noto Sans KR', sans-serif;
  background:#020617;
  color:#e5e7eb;
}

.container {
  max-width:1200px;
  margin:0 auto;
  padding:60px 20px;
}

/* HERO */
.hero {
  text-align:center;
  padding:120px 20px;
  background:linear-gradient(135deg,#020617,#0f172a);
  background:
    linear-gradient(rgba(2,6,23,0.6), rgba(2,6,23,0.8)),
    url('/inc/images/top_img.jpg');

  background-size: cover;
  background-position: center;
}
}
  
.hero h1 {
  font-size:48px;
  margin-bottom:10px;
}

.hero p {
  opacity:0.8;
}

.btn {
  display:inline-block;
  margin:20px 10px;
  padding:14px 28px;
  border-radius:50px;
  font-weight:600;
  cursor:pointer;
}

.btn-primary {
  background:#ff2d95;
  color:#fff;
}

.btn-outline {
  border:1px solid #fff;
  color:#fff;
}

.btn-primary:hover {
  background:#ff4db0;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,45,149,0.4);
}

/* 외곽 버튼 */
.btn-outline:hover {
  background:#fff;
  color:#020617;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255,255,255,0.2);
}

/* 카드 */
.grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card_img {
  background:rgba(255,255,255,0.05);
  padding:30px;
  border-radius:20px;
  text-align:center;
}

.card {
  background:rgba(255,255,255,0.05);
  padding:30px;
  border-radius:20px;
  text-align:center;
}

.card_banner {
  background:rgba(255,255,255,0.05);
  padding:30px;
  border-radius:20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.card_banner img {
  display: block;
  margin: 0 auto;
}

/* 이미지 */
img {

  height:auto;
  display:block;
}

/* HOW 전용 */
.how-grid {
  grid-template-columns: repeat(4, 1fr);
}

.step img {
  width:60px;
  height:auto;
  margin-bottom:10px;
}

/* 단계 숫자 */
.step {
  overflow: hidden;
  font-size: 28px;
  font-weight: bold;
  color: #ff2d95;
  margin-bottom: 10px;
}

.step img {
  width: 100%;
  height: 120px;
  object-fit: cover; /* 꽉 채우기 (일부 잘릴 수 있음) */
  display: block;
}

/* 카드 */
.how-card {
  text-align: center;
  padding: 30px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.05);
  transition: 0.3s;
}

/* hover 효과 */
.how-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* 모바일 */
@media(max-width:768px){
  .how-grid {
    grid-template-columns: 1fr;
  }
}

/* 영상 */
.video {
  position:relative;
  padding-top:56.25%;
}

.video iframe {
  position:absolute;
  width:100%;
  height: auto;
}

.video-box {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 비율 */
  margin-bottom: 40px; /* 아래 섹션과 간격 */
}

.video-box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* 이미지페이지 */

.why-banner {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.why-banner img {
  width: 100%;
  max-width: 700px;
  border-radius: 16px;
  object-fit: cover;
}

/* 이미지페이지 */

.roadmap-section {
  width: 100%;
  height: auto;
  min-height: unset;
  background: url('/inc/images/banner_bg2.gif') center / cover no-repeat;
}


.roadmap-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.roadmap-content img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: none;
}

.introduce-section {
   height: 892px; /* 이미지에 맞게 조절 */
  background: #ffffff;
}


.introduce-content {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.introduce-content img {
  display: block;
  margin: 0 auto;
  width: auto;
  height: auto;
  max-width: none;
}

/* 로드맵 */
.timeline {
  text-align:center;
}

/* SNS */
.sns a {
  margin:10px;
  display:inline-block;
}

/* CTA */
.cta {
  text-align:center;
  padding:80px 20px;
}

/* 애니메이션 */
.fade {
  opacity:0;
  transform:translateY(30px);
  transition:0.6s;
}

.fade.active {
  opacity:1;
  transform:translateY(0);
}

/* 전체 푸터 */
.footer {
  background:#0d1427;
  color:#fff;
}

/* 내부 */
.footer-inner {
  max-width:1200px;
  margin:0 auto;
  padding:60px 20px;
  text-align:center;
}

/* 버튼 */
.footer-btns {
  margin-bottom:20px;
}

.btn-footer {
  display:inline-block;
  margin:10px;
  padding:12px 24px;
  background:#ff2d95;
  color:#fff;
  border-radius:50px;
  text-decoration:none;
  transition:0.3s;
}

.btn-footer:hover {
  background:#ff4db0;
  transform:translateY(-2px);
}

/* 정보 */
.footer-info p {
  margin:5px 0;
  font-size:14px;
  opacity:0.8;
}

/* 하단 */
.footer-bottom {
  text-align:center;
  padding:20px;
  background:#010409;
  font-size:13px;
  opacity:0.7;
}






/* 모바일 */
@media(max-width:768px){

.container {
  padding:30px 0px;
}


  h2 {
    font-size: 20px;
  }

  .grid {
    grid-template-columns:1fr;
  }
  .hero h1 {
    font-size:28px;
  }

  .step {
    width:100%;
  }

  .step img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .card_img {
    background: none;
    border: none;
	padding:0;
    border-radius:0;
  }

    .card_img img {
    width: 100%;
    max-width: 100%; /* 원하는 크기로 조절 */
    height: auto;
    margin: 0 auto; /* 가운데 정렬 */
  }

  .card_banner {
    background: none;
    border: none;
	padding:0;
    border-radius:0;
  }

  .card_banner img {
   width: 100%;
    max-width: 100%; /* 원하는 크기로 조절 */
  display: block;
  margin: 0 auto;
}

.roadmap-content {
    padding: 5px 0px;
  }

  .roadmap-content img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

   .roadmap-section {
   height: auto !important;
    min-height: auto !important;

	background-image: none !important;
   }

   .introduce-content {
    padding: 5px 0px;
  }

  .introduce-section {
     height: auto !important;
    min-height: auto !important;

	background: none !important;
  }

  .introduce-section img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

     .introduce-section {
	background: none !important;
   }

  .footer-btns {
    flex-wrap:nowrap;        /* 줄바꿈 금지 */
  }

  .footer-btns .btn-footer {
    flex:1;                  /* 버튼 균등 분배 */
    text-align:center;
    padding:15px 15px;        /* 공간 줄이기 */
    font-size:14px;          /* 글자 살짝 축소 */
  }
}