@charset "utf-8";
/* CSS Document */



    .modooi_box {     
      /*background: linear-gradient(to bottom, #34d058, #b2f5bc);
      color: #fff;
	*/
    }

    .modooi_header {
      background: #0a9afe;
      color: #fff;
      padding: 20px 40px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      border-radius: 40px;
      /*margin: 50px auto;*/
      margin: 0 auto 50px auto;
      max-width: 1200px;
      position: relative;
    }

    .modooi_header .logo {
      font-weight: bold;
      font-size: 2.5em;
    }
.logo:after{ display:none;
    }
	
	.modooi_header .logo a {
		color:#fff;
	  font-weight: bold;
      font-size: 1em;
    }

    .modooi_header nav {
      display: flex;
      gap: 20px;
    }
	    @media (max-width: 768px) {
 .modooi_header {      margin: 20px auto;}
 main.main {padding:40px 20px 40px;}
			.modooi_header nav {display:none;}
			 .start-btn {position:absolute; right:15%;}
		}

    .modooi_header nav a {
      text-decoration: none;
      color: #fff;
      font-weight: bold;
      transition: color 0.3s;
	  font-size:1.5em;
    }

    .modooi_header nav a:hover {
      color: #333;
    }

    .start-btn {
      background-color: #fff;
      color: #0a9afe;
      padding: 10px 20px;
      border: none;
      border-radius: 20px;
      cursor: pointer;
      font-weight: bold;
      transition: background 0.3s;
    }

    .start-btn:hover {
      background-color: #333;
	  color: #fff;
    }

    .main {
      text-align: center;
      padding: 40px 20px 40px;
      animation: fadeIn 1s ease-in-out;
    }

    .main h1 {
      font-size: 2.5rem;
      font-weight: bold;
      margin-bottom: 20px;
    }

    .main p {
      font-size: 1.1rem;
      margin-bottom: 30px;
    }

    .cta-button {
      background-color: #001F5B;
      padding: 15px 30px;
      border-radius: 25px;
      font-size: 16px;
      font-weight: bold;
      color: white;
      text-decoration: none;
      display: inline-block;
      transition: background 0.3s;
    }

    .cta-button:hover {
      background-color: #003080;
    }

    .screenshot {
		position:relative;
      text-align: center;
      margin: 50px 0 100px 0;
      /*animation: slideUp 1.2s ease;*/
    }

    .screenshot img {
      max-width: 100%;
      border-radius: 20px;
      box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    }

    footer {
      text-align: center;
      padding: 30px;
      background-color: rgba(255,255,255,0.1);
      font-size: 14px;
      margin-top: 60px;
    }

    /* Animations */
    @keyframes fadeIn {
      from { opacity: 0; transform: translateY(-20px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes slideUp {
      from { opacity: 0; transform: translateY(50px); }
      to { opacity: 1; transform: translateY(0); }
    }

    /* Mobile Nav */
    .hamburger {
      display: none;
      flex-direction: column;
      gap: 5px;
      cursor: pointer;

    }

    .hamburger div {
      width: 25px;
      height: 3px;
      background: #fff;
      transition: all 0.3s;
    }

    .mobile-nav {
      display: none;
      flex-direction: column;
      gap: 10px;
      background: white;
      padding: 15px;
      position: absolute;
      top: 70px;
      left: 20px;
      border-radius: 15px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .mobile-nav a {
      color: #333;
      font-weight: bold;
      text-decoration: none;
    }

    @media (max-width: 768px) {
      nav {
        display: none;
      }

      .hamburger {
        display: flex;
			  color:#fff;
      }

      .mobile-nav.active {
        display: flex;
      }

      .main h1 {
        font-size: 1.8rem;
      }

      .main p {
        font-size: 1rem;
      }

      .cta-button {
        font-size: 14px;
        padding: 12px 20px;
      }
    }

    @media (max-width: 480px) {
      .screenshot img {
        max-width: 100%;
      }
    }




.feature-section {
/*  display: flex;
  flex-wrap: wrap;*/
  
  justify-content: space-between;
  align-items: center;
  text-align:center;
  background-color: #f0f4f5;
 padding: 60px 0;

  gap: 40px;
}

.feature-text {
  flex: 1 1 400px;
  color: #116b40;
}

.feature-text h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
}

.feature-text h3 span {
  color: #009456;
  margin-right: 5px;
  font-weight: bold;
}

.feature-text p {
  font-size: 1rem;
  margin-bottom: 20px;
  color: #444;
}

.feature-list {
  list-style: none;
  padding: 0;
  font-size: 1rem;
  color: #888;
}

.feature-list li {
  margin-bottom: 8px;
}

.feature-image {
  flex: 1 1 350px;
  text-align: center;
}

.feature-image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Responsive */
@media (max-width: 768px) {
  .feature-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .feature-text h3 {
    font-size: 1.5rem;
  }

  .feature-list li {
    font-size: 0.95rem;
  }
}



.partner-section {
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  margin:0 auto;
  max-width:1200px;
}

.partner-section h2 {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 10px;
}

.partner-section p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 40px;
}

.logo-slider {
	display:none;
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top:80px;
}

.logo-track {
  display: flex;
  width: calc(200%); /* 이미지 2배 */
  animation: scrollLogos 20s linear infinite;
}

.logo-track img {
  width: 100%;
  object-fit: contain;
}

/* 배너 애니메이션 */
@keyframes scrollLogos {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* 반응형 */
@media (max-width: 768px) {
  .partner-section h2 {
    font-size: 1.4rem;
  }
}




.info-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  color: white;
  gap: 40px;
}

.info-section.navy {
  background-color: #0f1b44;
}

.info-section.green {
  background-color: #005c48;
}

.info-text {
  /*flex: 1 1 400px;*/
      width: 60%;
    position: relative;
    left: 20%;
}

.info-text h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.info-text p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}

.store-buttons a {
  display: inline-block;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 10px 15px;
  margin-right: 10px;
  border-radius: 30px;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.3s;
}

.store-buttons a:hover {
  background: rgba(255, 255, 255, 0.1);
}

.info-image {
  flex: 1 1 300px;
  text-align: center;
}

.info-image img {
	width:30%;
 /* max-width: 100%;*/
  height: auto;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.info-guide {
  background-color: #0a9afe;
  text-align: center;
  padding: 60px 20px;
  color: white;
}

.info-guide h3 {
  font-size: 3em;
  margin-bottom: 10px;
}

.info-guide p {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.guide-buttons a {
  display: inline-block;
  background-color: white;
  color: #333;
  padding: 12px 20px;
  margin: 5px 10px;
  border-radius: 30px;
  font-weight: bold;
  text-decoration: none;
  transition: background 0.3s;
}

.guide-buttons a:hover {
  background-color: #f0f0f0;
}

/* 반응형 */
@media (max-width: 768px) {
  .info-section {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .store-buttons a {
    margin: 5px;
  }
}

@media (max-width: 768px) {
	.info-text {
	width:100%;
	position: inherit;
	}
	.info-image img {width:80%;}
}

/* 공통 애니메이션 클래스 */
.scroll-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.scroll-fade-up.active {
  opacity: 1;
  transform: translateY(0);
}


.slider-container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.slider-track img {
  width: 100%;
  flex-shrink: 0;
  object-fit: cover;
}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.5);
  border: none;
  color: white;
  font-size: 24px;
  padding: 10px;
  width:50px;
  height:50px;
  cursor: pointer;
  border-radius: 50%;
  z-index: 10;
}
.prev-btn {left:15%;}
.next-btn {right:15%;}


.slider-dots {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  background-color: #ddd;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.3s;
}

.slider-dots .dot.active {
  background-color: #1c88da;
}

/* 반응형 지원 */
@media (max-width: 768px) {
  .slider-track img {
    height: auto;
  }

  .prev-btn, .next-btn {
    font-size: 18px;
    padding: 6px;
  }

  .slider-dots .dot {
    width: 10px;
    height: 10px;
  }
}


<!--  선택 이유 섹션 -->
 
/* 공통 */
 h2 {      
 	text-align: center;
      margin: 2rem 0 0.5rem;
      font-size: 2rem;
	  }


    p.subtitle {
      text-align: center;
      margin-bottom: 2rem;
      color: #888;
    }
	
/* 선택 이유 */
.why-choose-section {

  text-align: center; 
}
.why-choose-section h2 {font-size:2em; padding:20px 0;}
.why-choose-section p.subtitle {font-size:1.3em;  }
 
.why-subtitle {
  font-size: 1rem;
  color: #999;
  margin-bottom: 10px;
}

.why-title {
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 40px;
  color: #333;
}

.why-card-container {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.why-card {
  background-color: #fff;
  border-radius: 16px;
  padding: 30px 20px;
  width: 220px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  transition: transform 0.3s;
}

.why-card:hover {
  transform: translateY(-5px);
}

.why-card img {
  width: 50px;
  margin-bottom: 16px;
}

.why-card h3 {
  font-size: 1.1rem;
  margin-bottom: 10px;
  color: #222;
}

.why-card p {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.4;
}

/* 반응형 */
@media (max-width: 768px) {
  .why-card {
    width: 38%;
  }

  .info-guide h3 {font-size:2em;}
  .info-guide p {font-size:1.2em;}
}

@media (max-width: 480px) {
  .why-card {
    width: 100%;
  }
}
/* //선택 이유 */
 /* 고객센터 배너 */
.customer-banner {
  background-color: #fff;
  padding: 60px 20px;
  text-align: center;
  color: #1a1a1a;
}

.customer-banner-container {
  max-width: 900px;
  margin: 0 auto;
}

.customer-banner h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  line-height: 1.4;
}

.customer-banner h2 span {
  font-weight: bold;
  color: #333;
}

.chat-btn {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 12px 50px;
  border-radius: 8px;
  text-decoration: none;
  font-size: 1.5em;
  font-weight: bold;
  transition: background 0.3s ease;
}

.chat-btn:hover {
  background-color: #0056b3;
}

/* 푸터 회사 정보 */
.customer-footer-info {
  background-color: #fafafa;
  color: #555;
  padding: 30px 20px;
  font-size: 0.95rem;
  text-align: center;
}

.footer-info-container strong {
  display: block;
  margin-bottom: 10px;
  color: #333;
}

/* 반응형 */
@media (max-width: 768px) {
  .customer-banner h2 {
    font-size: 1.6rem;
  }

  .chat-btn {
    font-size: 0.9rem;
    padding: 10px 20px;
  }

  .customer-footer-info {
    font-size: 0.85rem;
  }
}



 

.ad-type-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.ad-card {
  flex: 1 1 30%;
  background: #fff;
  border-radius: 12px;
  padding: 10px;
  /*box-shadow: 0 4px 10px rgba(0,0,0,0.05);*/
}

.ad-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
}

.ad-label {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 1rem;
}

.ad-buttons {
  display: flex;
  justify-content: center;
  gap: 150px;
  flex-wrap: wrap;
}

.ad-btn {
	
  padding: 12px 20px;
  border-radius: 8px;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  /*display: inline-block;*/
  display:none;
  min-width: 220px;
  text-align: center;
}

.ad-btn.blue {
  background-color: #1c88da;
}

.ad-btn.orange {
  background-color: #ea6044;
}

.ad-btn.green {
  background-color: #23b987;
}

@media (max-width: 768px) {
  .ad-type-container {
    flex-direction: column;
  }

  .ad-card {
    flex: 1 1 100%;
  }

  .section-title {
    font-size: 1.4rem;
  }
}
