@charset "utf-8";

/* 기본 레이아웃 설정 */
.wrap {
  width: 100%;
  min-height: 100vh;
}

.inner {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}
.btn-primary-hover {
  position: relative;
  overflow: hidden !important;
  border-radius: inherit;
  clip-path: inset(0);
}

.btn-primary-hover::before {
  content: '';
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  background: radial-gradient(circle closest-side, #003fd2, transparent);
  transform: translate(-50%, -50%);
  transition: width 0.2s ease, height 0.2s ease;
  pointer-events: none;
  z-index: 1;
  border-radius: 50%;
  max-width: 100%;
  max-height: 100%;
  clip-path: inset(0);
}

.btn-second-hover:hover {
  border: 1px solid linear-gradient(90deg, #001292 0%, #aaacff 100%);
  background: linear-gradient(90deg, #001292 0%, #aaacff 100%);
  color: white !important;
}

.top_wrap {
  position: fixed;
  top: 0;
  width: 100%;
  transition: top 0.3s ease;
  z-index: 100;
}

/* 상단바 스타일 */
.top-bar {
  background: transparent;
  padding: 8px 0;
  font-size: 14px;
  position: relative;
  width: 100%;
  height: 40px;
  z-index: 100;
}

.top-bar .inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  height: 100%;
}

.top-bar .top-bar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-info {
  color: #6c757d;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.top-buttons {
  display: flex;
  gap: 12px;
  color: #5f71ff;
  text-decoration: underline;
}

/* 다크모드 버튼 스타일 */
.dark-mode_btn_wrap {
  display: flex;
  align-items: center;
}

.dark-mode_btn {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 14px;
  color: #6c757d;
}

/* 토글 스위치 컨테이너 */
.dark-mode_btn::before {
  content: '';
  position: relative;
  width: 44px;
  height: 24px;
  background: #e9ecef;
  border-radius: 12px;
  transition: all 0.3s ease;
  border: 1px solid #dee2e6;
}

/* 토글 스위치 슬라이더 */
.dark-mode_btn span:first-child {
  position: absolute;
  left: 2px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background: white;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 2;
}

/* 다크모드 아이콘 제거 */
.dark-mode_btn span:first-child::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
  line-height: 1;
}

/* 다크모드 활성화 상태 */
.dark-mode_btn.active::before {
  background: #3C3C3C;
  border-color: #707070;
}

.dark-mode_btn.active span:first-child {
  left: 26px;
  background: #BABABA;
}

/* 활성화 상태 아이콘 제거 */
.dark-mode_btn.active span:first-child::before {
  content: '';
}

/* 버튼 텍스트 */
.dark-mode_btn span:last-child {
  font-weight: 500;
  margin-left: 8px;
}


/* 부드러운 애니메이션 */
.dark-mode_btn::before,
.dark-mode_btn span:first-child {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* 슬라이더 애니메이션 */
.dark-mode_btn span:first-child::before {
  transition: all 0.3s ease;
}





/* 헤더 스타일 */
.header {
  background: transparent;
  position: relative;
  width: 100%;
  z-index: 100;
  height: 75px;
}

.header .inner {
  display: flex;
  align-items: center;
  gap: 60px;
  height: 100%;
}

.logo h1 {
  color: #5f71ff;
  font-size: 28px;
  font-weight: bold;
  margin: 0;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  color: #495057;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* 네비게이션 화살표 회전 애니메이션 */
.nav-list li {
  position: relative;
}

.nav-list li span {
  transition: transform 0.3s ease;
}

.nav-list li:hover span {
  transform: rotate(-180deg);
}

.header .inner .btn_wrap {
  margin-left: auto;
}


.header .inner .btn_wrap a {
  font-weight: 700;
  font-size: 1rem;
  border-radius: 6px;
  padding: 10px 20px;
  text-decoration: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  position: relative;
  line-height: 1.5;
  white-space: normal;

  border: 1px solid #5f71ff;
}
.header .inner .btn_wrap a.btn-inquire {
  background-color: #5f71ff;
  color: white;
}
.header .inner .btn_wrap a.btn-download {
  background-color: transparent;
  color: #5f71ff;
}



/* 히어로 섹션 */
.hero {
  background-image: url('../img/onedesk-arrow-bg.png');
  background-repeat: no-repeat;
  background-position: left center;
  background-size: auto 100%;
  padding: 195px 0 80px;
}

.hero .inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.hero-content {
  flex: 1;
}

.hero-title {
  font-size: 60px;
  display: flex;
  flex-direction: column;
  color: #212529;
  margin-bottom: 20px;
  line-height: 1.2;
}
.hero-title-main {
  background: -webkit-linear-gradient(45deg, #001292, #aaacff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  position: relative;
  z-index: 8;
}
.hero-title-main strong {
  position: absolute;
  top: 0;
  left: 100px;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
  display: block;
  z-index: 9;
  background: -webkit-linear-gradient(45deg, #001292, #aaacff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 20px;
  color: #6c757d;
  margin-bottom: 40px;
  line-height: 1.5;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-download-primary {
  background-color: #5f71ff;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}


.btn-trial {
  background-color: transparent;
  color: #5f71ff;
  padding: 16px 32px;
  border: 2px solid #5f71ff;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  position: relative;
}
.hero-image img {
  width: 300px;
  height: auto;
  z-index: 2;
}
.hero-image .any-glow-red {
  position: absolute;
  top: 160px;
  left: 320px;
  background-color: transparent;
  animation: glow-red 4s infinite alternate;
  z-index: 1;
  opacity: .5;
  display: block;
  right: auto;
}

@keyframes glow-red {
  0% {
    box-shadow: 0 0 80px 80px #5f71ff;
}100% {
  box-shadow: 0 0 130px 130px #5f71ff;
}
}

.laptop-mockup {
  width: 500px;
  height: 300px;
  background: linear-gradient(45deg, #667eea 0%, #764ba2 100%);
  border-radius: 20px;
  position: relative;
  box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.laptop-mockup::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: linear-gradient(135deg, #5f71ff, #f7931e, #5f71ff);
  border-radius: 10px;
  opacity: 0.8;
}

/* 통합 섹션 */
.integrations {
  padding: 80px 0;
  background: white;
}

.integration-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.integration-card {
  width: auto;
  height: 400px;
  background-color: white;
  text-align: left;
  transition: transform 0.5s ease;
  word-break: keep-all;
  position: relative;
  overflow: hidden;
}
.intergration-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease;
}

.intergration-card-text {
  position: relative;
  z-index: 1;
}

.intergration-card-inner {
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.integration-card:nth-child(1) .intergration-card-inner {
  background-image: url("../img/freshworks-integration.jpg");
}
.integration-card:nth-child(2) .intergration-card-inner {
  background-image: url("../img/salesforce-integration.jpg");
}
.integration-card:nth-child(3) .intergration-card-inner {
  background-image: url("../img/anydesk-assist-integration.jpg");
}

.integration-card:nth-child(1) .intergration-card-overlay {
  background: linear-gradient(221deg, rgba(239,68,59,0.65) 0%, rgba(0,0,0,0.65) 100%);
}
.integration-card:nth-child(2) .intergration-card-overlay {
  background: linear-gradient(221deg, rgba(97, 82, 160, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.integration-card:nth-child(3) .intergration-card-overlay {
  background: linear-gradient(221deg, rgba(172, 47, 128, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.integration-card:hover .intergration-card-inner{
  transform: scale(1.02);
  background-size: 102%;
}
.integration-card:hover .intergration-card-overlay{
  background: linear-gradient(0deg, rgba(26,0,13,0.8) 0%, rgba(0,5,25,0.8) 100%);
}

.integration-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.4;
}

.integration-card p {
  color: #e9e9e9;
  margin-bottom: 24px;
  line-height: 1.6;
}

.integration-card .btn-read-more {
  color: #5f71ff;
  text-decoration: underline;
}


/* 고객 신뢰 섹션 */
.customer-trust {
  padding: 60px 0 120px;
  background: #fff;
  text-align: center;
}

.customer-trust h3 {
  font-size: 48px;
  color: #212529;
  margin-bottom: 0px;
}
.customer-trust h3 b {
  
  background: -webkit-linear-gradient(45deg, #001292, #aaacff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.trust-logos-slider {
  width: 100%;
  overflow: hidden;
  padding: 30px 0;
}

.trust-logos-slider .slick-track {
  display: flex;
  align-items: center;
}

.trust-logos-slider .slick-slide {
  width: 280px !important;
  padding: 30px 20px;
}

.logo-item {
  padding: 20px 30px;
  background: white;
  border-radius: 8px;
  color: #6c757d;
  text-align: center;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;

}

.logo-item-inner {
  width: 100%;
  height: auto;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}



/* 플랜 파인더 섹션 */
.plan-finder {
  background: linear-gradient(90deg, #001292 0%, #aaacff 100%);
  color: white;
  padding: 80px 0;
}

.plan-finder .inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.plan-finder-content {
  flex: 1;
  position: relative;
}

.plan-finder-img-box {
  position: absolute;
  bottom: 40px;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}


.plan-finder-image {
  width: 400px;
  height: 250px;
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: rgba(255,255,255,0.8);
}

.plan-finder-question {
  flex: 1;
  
}
.plan-finder-question h3 {
  font-size: 36px;
  margin-bottom: 10px;
  font-weight: bold;
}

.plan-finder-question h4 {
  font-size: 24px;
  margin-bottom: 30px;
}


.use-case-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.use-case-item {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  width: 100%;
  gap: 8px;

}

.question_icon {
  width: 65px;
  height: 65px;
  background: transparent linear-gradient(314deg, rgba(36,32,113,0.701961) 0%, rgba(97,71,163,0.701961) 100%) 0% 0% no-repeat padding-box;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-license {
  background: white;
  color: #5f71ff;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
  margin-top: 16px;
  transition: all 0.2s ease;
}
.btn-license:hover {
  background: #000;
  color: white;
}

/* 혜택 섹션 */
.benefits {
  padding: 80px 0;
  background: white;
}

.benefits h3 {
  font-size: 48px;
  color: #212529;
  text-align: center;
  margin-bottom: 80px;
}
.benefits h3 b {
  background: -webkit-linear-gradient(45deg, #001292, #aaacff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.benefit-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.benefit-card {
  width: auto;
  height: 400px;
  background-color: white;
  text-align: left;
  transition: transform 0.5s ease;
  word-break: keep-all;
  position: relative;
  overflow: hidden;
}

.benefit-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  transition: all 0.5s ease;
}

.benefit-card-text {
  position: relative;
  z-index: 1;
}

.benefit-card-inner {
  width: 100%;
  height: 100%;
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  position: relative;
  z-index: 1;
  transition: transform 0.2s ease;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  cursor: pointer;
}

.benefit-card h4 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  line-height: 1.4;
}

.benefit-card p {
  color: #e9e9e9;
  margin-bottom: 24px;
  line-height: 1.6;
}

.benefit-card .btn-read-more {
  color: #5f71ff;
  text-decoration: underline;
}

/* 각 카드별 배경 이미지 설정 */
.benefit-card:nth-child(1) .benefit-card-inner {
  background-image: url("../img/jump01.png");
}
.benefit-card:nth-child(2) .benefit-card-inner {
  background-image: url("../img/jump02.png");
}
.benefit-card:nth-child(3) .benefit-card-inner {
  background-image: url("../img/jump03.png");
}

/* 각 카드별 오버레이 색상 설정 */
.benefit-card:nth-child(1) .benefit-card-overlay {
  background: linear-gradient(221deg, rgba(239,68,59,0.65) 0%, rgba(0,0,0,0.65) 100%);
}
.benefit-card:nth-child(2) .benefit-card-overlay {
  background: linear-gradient(221deg, rgba(97, 82, 160, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%);
}
.benefit-card:nth-child(3) .benefit-card-overlay {
  background: linear-gradient(221deg, rgba(172, 47, 128, 0.65) 0%, rgba(0, 0, 0, 0.65) 100%);
}

/* 호버 효과 */
.benefit-card:hover .benefit-card-inner{
  transform: scale(1.02);
  background-size: 102%;
}
.benefit-card:hover .benefit-card-overlay{
  background: linear-gradient(0deg, rgba(26,0,13,0.8) 0%, rgba(0,5,25,0.8) 100%);
}

/* 기능 섹션 */
.features {
  padding: 100px 0 140px;
  background: #f8f9fa;
}

.features h3 {
  text-align: center;
  font-size: 48px;
  color: #212529;
  margin-bottom: 80px;
}
.features b {
  background: -webkit-linear-gradient(45deg, #001292, #aaacff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.feature-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.feature-card {
  padding: 40px 30px;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.2s ease;
  word-break: keep-all;

  display: flex;
  flex-direction: column;
}


.feature-icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.feature-card h4 {
  font-size: 22px;
  font-weight: 500;
  color: #212529;
  margin-bottom: 16px;
}

.feature-card p {
  color: #6c757d;
  margin-bottom: 24px;
  line-height: 1.6;
}

.btn-learn-more {
  font-size: 18px;
  color: #5f71ff;
  text-decoration: underline;
  margin-top: auto;
  display: inline-block;
  width: auto;
}
.btn-learn-more:hover {
  text-decoration: none;
}

/* 어워드 섹션 */
.awards {
  padding: 60px 0 0;
  background: white;
  text-align: center;
}



.awards h3 {
  font-size: 48px;
  color: #212529;
  text-align: center;
  margin-bottom: 40px;
}
.awards h3 b {
  background: -webkit-linear-gradient(45deg, #001292, #aaacff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}



.award-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
}

.award-badge {
  width: 165px;
  height: auto;
  aspect-ratio: 1 / 1.1;
  background: #f8f9fa;
  border-radius: 8px;
  font-weight: 600;
  color: #495057;
}

/* 가격 섹션 */
.pricing {
  padding: 40px 0 120px;
}

.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 0;

  background-color: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 900px;
  margin: 0 auto 20px;
  padding: 8px;
  border-radius: 8px;
}

.tab-btn {
  width: 25%;
  padding: 16px 24px;
  color: #6c757d;
  cursor: pointer;
  transition: all 0.2s ease;
  border-radius: 8px;
}
.tab-btn:hover {
  color: #5f71ff;
}

.tab-btn.active {
  background: linear-gradient(90deg, #001292 0%, #aaacff 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(95, 113, 255, 0.4);
  transform: translateY(-2px);
  font-weight: 500;
}

.pricing-content {
  display: flex;
  justify-content: center;
  width: 100%;
  position: relative;
}

/* 탭 컨텐츠 기본 스타일 */
.tab-content {
  display: none !important;
  width: 100%;
  max-width: 900px;
}

/* 활성화된 탭 컨텐츠만 표시 */
.tab-content.active {
  display: flex !important;
}

.pricing-card {
  background: white;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  width: 100%;
  max-width: 900px;

  display: flex;
}
.pricing-card .pricing-card-text {
  width: 50%;
}

.pricing-card h4 {
  font-size: 24px;
  font-weight: bold;
  color: #212529;
  margin-bottom: 8px;
}

.pricing-subtitle {
  color: #5f71ff;
  font-weight: 600;
  margin-bottom: 8px;
}

.pricing-description {
  color: #6c757d;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
}

.pricing-features li {
  padding: 8px 0;
  padding-left: 16px;
  color: #495057;
  position: relative;
}
.pricing-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 6px;
  height: 6px;
  background-color: #5f71ff;
  border-radius: 50%;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-price {
  width: 50%;
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.original-price_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 8px;
}

.original-price {
  text-decoration: line-through;
  color: #6c757d;
  font-size: 18px;
  margin-right: 10px;
}
.original-price_wrap .original-price-discount {
  background-color: #242071;
  color: #fff;
  padding: 2px 4px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 500;
}



.current-price {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.current-price-value {
  font-size: 32px;
  font-weight: bold;
  color: #5f71ff;
}

.current-price-period {
  font-size: 13px;
  margin-top: -5px;
  color: #a9a9a9;
}
.btn-buy-now {
  width: 100%;
  max-width: 280px;
  background: #5f71ff;
  color: white;
  padding: 10px 20px;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  margin-top: 20px;
}
.pricing-price_description {
  width: 100%;
  max-width: 260px;
  word-break: keep-all;
  font-size: 13px;
  line-height: 1.3;
  margin-top: 10px;
  color: #a9a9a9;
  font-weight: 100;
}


/* 커뮤니티 섹션 */
.community {
  padding: 60px 0 120px;
  background: #f7f8f9;
  text-align: center;
}

.community h3 {
  font-size: 48px;
  color: #212529;
  text-align: center;
  margin-bottom: 80px;
}
.community h3 b {
  background: -webkit-linear-gradient(45deg, #001292, #aaacff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.social-link {
  width: calc((100% - 120px) / 7);
  padding: 16px 0;
  color: #495057;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.2s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-width: 0;
  border-radius: 8px;
  border: 2px solid transparent;
}
.social-link:hover {
  border: 2px solid #5f71ff;
}

.social_logo {
  width: 48px;
  height: 48px;
}
.social_logo svg {
  width: 100%;
  height: 100%;
}


/* 뉴스레터 섹션 */
.newsletter {
  padding: 80px 0;
  background-color: #1a1a1a;
  color: #fff;
  background-image: url("../img/newsletter-bg-img.png");
  background-size: 100%;
  background-position: bottom right;
  background-repeat: no-repeat;
}

.newsletter .inner {
  display: flex;
  align-items: center;
  gap: 60px;
}

.newsletter-content {
  flex: 1;
}

.newsletter-content h3 {
  font-size: 32px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.3;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.email-input {
  flex: 1;
  padding: 16px;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  font-size: 16px;
}

.btn-subscribe {
  background-color: #5f71ff;
  color: white;
  padding: 16px 32px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}


.captcha {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #fff;
}

.newsletter-image {
  flex: 1;
  height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
}

/* 푸터 */
.footer {
  background: #363c41;
  color: white;
  padding: 60px 0 20px;
}

.footer-content {
  display: flex;
  gap: 60px;
  margin-bottom: 40px;
}
.footer-logo {
  width: 250px;
}
.footer-logo h4 {
  font-size: 24px;
  font-weight: bold;
  color: #5f71ff;
  margin-bottom: 8px;
}

.footer-logo p {
  color: #e8e8e8;
  font-size: 14px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  flex: 1;
}

.footer-column h5 {
  font-size: 17px;
  font-weight: bold;
  margin-bottom: 16px;
  color: #5f71ff;
  border-bottom: 1px solid #5f71ff;
  padding-bottom: 20px;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #e8e8e8;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}


.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #495057;
  font-size: 14px;
  color: #e8e8e8;
}

.footer-legal {
  display: flex;
  gap: 20px;
}

.footer-legal a {
  color: #e8e8e8;
  text-decoration: none;
  transition: color 0.2s ease;
}

/* 반응형 디자인 */
@media (max-width: 1200px) {
  .inner {
    padding: 0 15px;
  }
  
  .hero .inner {
    flex-direction: column;
    text-align: center;
  }
  
  .plan-finder .inner {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter .inner {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .nav-list {
    flex-direction: column;
    gap: 16px;
  }
  
  .hero-title {
    font-size: 36px;
  }
  
  .integration-cards,
  .benefit-cards,
  .feature-cards {
    grid-template-columns: 1fr;
  }
  
  .use-case-icons {
    grid-template-columns: 1fr;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  /* 다크모드 버튼 반응형 */
  .dark-mode_btn {
    padding: 4px 8px;
    font-size: 12px;
  }
  
  .dark-mode_btn::before {
    width: 36px;
    height: 20px;
  }
  
  .dark-mode_btn span:first-child {
    width: 16px;
    height: 16px;
    left: 6px;
  }
  
  .dark-mode_btn.active span:first-child {
    left: 20px;
  }
  
  .dark-mode_btn span:first-child::before {
    font-size: 10px;
  }
  
  .dark-mode_btn span:last-child {
    display: none; /* 모바일에서는 텍스트 숨김 */
  }
}