/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Pretendard", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 1rem;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  font-family: inherit;
}

.btn-primary {
  background: #18a0fb;
  color: white;
  box-shadow: 0 4px 15px rgba(24, 160, 251, 0.3);
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(24, 160, 251, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #18a0fb;
  border: 2px solid #18a0fb;
}

.btn-secondary:hover {
  background: #18a0fb;
  color: white;
  transform: translateY(-2px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 68px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.navbar {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.logo-svg {
  height: 32px;
  width: auto;
  transition: all 0.3s ease;
}

.logo-svg:hover {
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  margin: 0;
  padding: 0;
}

.nav-item {
  margin: 0;
}

.nav-link {
  text-decoration: none;
  color: #222222;
  font-weight: 500;
  font-size: 14px;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem 0;
  font-family: "Pretendard", sans-serif;
}

.nav-link:hover {
  color: #126dff;
}

.header-cta {
  background: #ffffff;
  color: #126dff;
  border: 2px solid #126dff;
  padding: 0;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  width: 120px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard", sans-serif;
  transition: background-color 0.3s ease;
  text-decoration: none;
}

.header-cta:hover {
  background: #eeeeee;
  transform: translateY(-1px);
  box-shadow: none;
}

.header-cta:active {
  transform: translateY(0) !important;
  box-shadow: none !important;
}

/* Hero Section */
.hero {
  position: relative;
  width: 100%;
  height: 960px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  margin: 0 auto;
  margin-top: 68px;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
}

.hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: brightness(0.87) contrast(1);
}

/* New overlay styles with higher specificity */
.hero .hero-background .hero-overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: rgba(0, 0, 0, 0.5) !important;
  z-index: 1 !important;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: left;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero-title {
  margin-bottom: 1.5rem;
  color: white;
}

.title-english {
  display: block;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-family: "Pretendard", sans-serif;
}

.title-korean {
  display: block;
  font-size: 60px;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: #ffffff;
  font-family: "Pretendard", sans-serif;
}

.brand-name {
  display: block;
  font-size: 60px;
  font-weight: 700;
  color: #ffffff;
  font-family: "Pretendard", sans-serif;
}

.hero-description {
  font-size: 20px;
  color: #ffffff;
  margin-bottom: 2.5rem;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
  font-weight: 300;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
}

.hero-cta-primary {
  background: #ffffff;
  color: #126dff;
  border: 2px solid #126dff;
  padding: 0;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  font-family: "Pretendard", sans-serif;
  width: 120px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-cta-primary:hover {
  background: #eeeeee;
}

.hero-cta-secondary {
  background: #126dff;
  color: white;
  border: none;
  padding: 0;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  font-family: "Pretendard", sans-serif;
  width: 120px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.hero-cta-secondary:hover {
  background: #488fff;
}

/* Features Section */
.features {
  width: 100%;
  height: 820px;
  background: #ffffff;
  padding: 80px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.features .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

/* .features-container {
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 60px;
    gap: 60px;
} */

/* Left Side: Text Content */
.features-left {
  flex: 1;
  max-width: 406px;
}

.features-header {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.5rem;
}

.features-title {
  display: block;
}

.features-title .blue-dot {
  width: 16px;
  height: 16px;
  background: #126dff;
  border-radius: 50%;
  display: inline-block;
  margin-right: 8px;
  margin-top: -14px;
  vertical-align: top;
}

.title-line1 {
  font-size: 36px;
  font-weight: 600 !important;
  color: #222222;
  font-family: "Pretendard", sans-serif;
  line-height: 1.5 !important;
  width: 100% !important;
  text-align: left !important;
  display: flex;
  align-items: center;
}

.title-line2 {
  font-size: 36px;
  font-weight: 600 !important;
  color: #222222;
  font-family: "Pretendard", sans-serif;
  line-height: 1.5 !important;
  width: 100% !important;
  text-align: right !important;
}

.features-description {
  font-size: 16px;
  font-weight: 500;
  color: #222222;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
  max-width: 500px;
}

/* Right Side: Feature Cards */
.features-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.features-cards-container {
  overflow: hidden;
  width: 100%;
  max-width: 900px; /* 슬라이드 효과가 보이도록 조정 */
  position: relative;
  margin-bottom: 60px; /* 화살표 공간 확보 */
}

.features-cards {
  display: flex;
  gap: 24px;
  align-items: center;
  transition: transform 0.5s ease;
  width: fit-content;
  position: relative;
  transform: translateX(0);
  min-width: 100%; /* 최소 너비 설정 */
}

.feature-card {
  width: 400px; /* 400px로 변경 (Figma 정보에 맞춤) */
  height: 280px; /* 280px로 변경 (Figma 정보에 맞춤) */
  border-radius: 16px;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: white;
  font-family: "Pretendard", sans-serif;
  flex-shrink: 0; /* 카드가 줄어들지 않도록 */
  box-shadow: none;
  border: 1.5px solid #dddddd;
  position: relative;
  overflow: hidden;
}

.card-1 {
  background: #126dff;
}

.card-2 {
  background: #333333;
}

.card-3 {
  background: #333333;
}

.card-title {
  font-size: 32px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: #ffffff;
  font-family: "Pretendard", sans-serif;
}

.card-icon {
  text-align: right;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

/* Navigation Arrows */
.features-nav {
  position: absolute;
  bottom: 8px;
  right: 0;
  display: flex;
  gap: 12px;
  z-index: 100;
}

.nav-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: #666666;
  cursor: pointer;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-arrow:hover {
  background: #f8f9fa;
  border-color: #222222;
  color: #222222;
}

.nav-arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

/* Stats Section */
.stats {
  padding: 120px 0 60px 0;
  background: #f8f9fa;
  height: 540px;
}

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

.stats-title {
  text-align: left;
  font-size: 2.5rem;
  color: #1a1a1a;
  margin-bottom: 3rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.stat-item {
  text-align: left;
  padding: 2rem;
}

.stat-number {
  font-size: 40px;
  font-weight: 800;
  color: #126dff;
  margin-bottom: 1rem;
}

.stat-label {
  font-size: 16px;
  color: #222222;
  font-weight: 500;
}

/* Platform Section */
.platform {
  padding: 80px 0;
  background: white;
}

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

.platform-header {
  text-align: center;
  margin-bottom: 4rem;
}

.platform-title-group {
  margin-bottom: 2rem;
}

.platform-title {
  font-size: 36px;
  color: #202020;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 1200px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: left;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.platform-subtitle {
  font-size: 16px;
  color: #202020;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 1200px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: left;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

.platform-content {
  margin-bottom: 4rem;
  height: 520px;
}

.platform-grid {
  display: grid;
  grid-template-columns: 5fr 2fr;
  gap: 2rem;
  height: 100%;
}

.platform-left {
  background: #f5f5f5;
  min-height: 300px;
  border-radius: 15px;
  height: 100%;
  position: relative;
  overflow: visible;
}

.platform-right {
  background: #f5f5f5;
  min-height: 300px;
  border-radius: 15px;
  height: 100%;
  position: relative;
  overflow: visible;
}

.platform-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  border-radius: 12px;
  border: 1px solid #eeeeee;
}

.platform-image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 18px;
  font-weight: 600;
  z-index: 1;
}

.dashboard-screenshot {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dashboard-header {
  margin-bottom: 2rem;
}

.stat-boxes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.stat-box {
  background: #18a0fb;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
}

.dashboard-table table {
  width: 100%;
  border-collapse: collapse;
}

.dashboard-table th,
.dashboard-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.dashboard-table th {
  background: #f1f3f4;
  font-weight: 600;
  color: #1a1a1a;
}

.leave-status {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leave-status h4 {
  text-align: center;
  margin-bottom: 2rem;
  color: #1a1a1a;
  font-size: 1.3rem;
}

.leave-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.leave-card {
  background: #f8f9fa;
  padding: 1.5rem;
  border-radius: 10px;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.leave-card i {
  font-size: 1.5rem;
  color: #18a0fb;
  margin-bottom: 0.5rem;
  display: block;
}

.leave-number {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 0.5rem;
}

.leave-label {
  font-size: 0.9rem;
  color: #666;
}

.leave-progress {
  text-align: center;
}

.leave-progress span {
  display: block;
  margin-bottom: 1rem;
  color: #666;
  font-size: 0.9rem;
}

.progress-bar {
  width: 100%;
  height: 8px;
  background: #e0e0e0;
  border-radius: 4px;
  overflow: hidden;
}

.progress-fill {
  height: 100%;
  background: #18a0fb;
  border-radius: 4px;
  transition: width 0.3s ease;
}

/* Electronic Contract Section */
.electronic-contract {
  padding: 80px 0;
  background: #ffffff;
}

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

.electronic-contract .platform-header {
  text-align: center;
  margin-bottom: 4rem;
}

.electronic-contract .platform-title {
  font-size: 20px;
  color: #202020;
  margin-bottom: 1rem;
}

.electronic-contract .platform-subtitle {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 1rem;
}

.electronic-contract .platform-content {
  margin-bottom: 4rem;
  height: 520px;
}

.electronic-contract .platform-grid {
  display: block;
  height: 100%;
}

.electronic-contract .platform-left {
  background: #f5f5f5;
  min-height: 300px;
  border-radius: 15px;
  height: 100%;
  position: relative;
  overflow: visible;
  width: 100%;
}

.contract-management {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contract-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 2rem;
}

.contract-stat {
  background: #18a0fb;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  font-size: 1.2rem;
}

.contract-table table {
  width: 100%;
  border-collapse: collapse;
}

.contract-table th,
.contract-table td {
  padding: 0.75rem;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.contract-table th {
  background: #f1f3f4;
  font-weight: 600;
  color: #1a1a1a;
}

.document-editor {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.editor-toolbar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.tool-btn {
  width: 35px;
  height: 35px;
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.tool-btn:hover {
  background: #f8f9fa;
  border-color: #18a0fb;
}

.document-content h3 {
  color: #1a1a1a;
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.document-content p {
  color: #666;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Bottom CTA Section */
.bottom-cta {
  padding: 80px 0;
  background: #f3f8ff;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

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

.cta-content {
  margin: 0;
}

.cta-subtitle {
  font-size: 20px;
  color: #202020;
  margin-bottom: 1rem;
}

.cta-title {
  font-size: 60px;
  color: #202020;
  margin-bottom: 1rem;
  position: relative;
  font-weight: bold;
  line-height: 1.5;
}

.cta-title .blue-dot {
  width: 16px;
  height: 16px;
  background: #126dff;
  border-radius: 50%;
  display: inline-block;
  margin-left: 8px;
  vertical-align: top;
}

.cta-brand {
  font-size: 2rem;
  color: #333;
  margin-bottom: 2rem;
  font-weight: bold;
}

.bottom-cta .btn-primary {
  width: 240px;
  height: 48px;
  background: #126dff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: none;
}

/* Footer */
.footer {
  background: #1a1a1a;
  color: white;
  padding: 60px 0 20px;
}

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

.footer-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-left {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
}

.footer-logo-img {
  height: 40px;
  width: 160px;
}

.footer-cta {
  background: transparent;
  color: #aaaaaa;
  border: 1px solid #aaaaaa;
  width: 160px;
  height: 40px;
  border-radius: 6px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
  align-self: flex-start;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.footer-cta:hover {
  background: #666666;
  color: white;
}

.footer-divider {
  border: none;
  height: 1px;
  background: #333;
  margin: 2rem 0;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 1440px;
  height: 148px;
}

.company-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.info-group {
  display: flex;
  flex-direction: row;
  gap: 8px;
}

.company-info p {
  color: #aaaaaa;
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.copyright p {
  color: #999;
  font-size: 14px;
}

/* Responsive Design */
@media (max-width: 1920px) {
  .hero {
    width: 100%;
    height: auto;
    min-height: 80vh;
  }

  .hero-content {
    padding: 0 40px;
  }
}

@media (max-width: 1200px) {
  .hero {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 3rem;
  }

  .hero-content p {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .hero {
    min-height: 60vh;
    margin-top: 60px;
  }

  .hero-content {
    padding: 0 20px;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
  }

  .hero-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }

  .hero-buttons {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 50vh;
    margin-top: 50px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 0.9rem;
  }

  .hero-buttons {
    gap: 0.8rem;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.feature-card,
.stat-item,
.dashboard-screenshot,
.leave-status,
.contract-management,
.document-editor {
  animation: fadeInUp 0.6s ease-out;
}

/* Hover effects */
.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.nav-link:hover,
.btn:hover {
  transition: all 0.3s ease;
}

/* Focus states for accessibility */
.btn:focus,
.tool-btn:focus {
  outline: 2px solid #18a0fb;
  outline-offset: 2px;
}

/* Responsive Design for Header */
@media (max-width: 1920px) {
  .header {
    width: 100%;
    max-width: 1920px;
  }
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }

  .hero-content {
    margin-top: 68px;
    padding: 80px 15px 60px;
  }

  .title-english {
    font-size: 2.8rem;
  }

  .title-korean {
    font-size: 2rem;
  }

  .brand-name {
    font-size: 1.8rem;
  }

  .hero-description {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    min-width: 200px;
    padding: 14px 28px;
  }

  .nav-container {
    padding: 0 15px;
  }

  .logo-svg {
    height: 28px;
  }

  .header-cta {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .hero-content {
    margin-top: 68px;
    padding: 60px 10px 40px;
  }

  .title-english {
    font-size: 2.2rem;
  }

  .title-korean {
    font-size: 1.6rem;
  }

  .brand-name {
    font-size: 1.5rem;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    min-width: 180px;
    padding: 12px 24px;
    font-size: 1rem;
  }

  .navbar {
    height: 68px;
  }

  .logo-svg {
    height: 24px;
  }
}

/* Enhanced Header Animations */
.header {
  transition: transform 0.3s ease;
}

.navbar {
  transition: background 0.3s ease;
}

.hero-text > * {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.hero-text > *.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Header Background Image Optimization */
.header-bg-image {
  filter: brightness(0.8) contrast(1.1);
}

/* Enhanced Button Hover Effects */
/* Removed all hover effects */

/* Smooth Transitions for All Interactive Elements */
.nav-link,
.header-cta,
.hero-cta-primary,
.hero-cta-secondary {
  /* Removed transitions */
}

/* Enhanced Text Shadows for Better Readability */
.title-english,
.title-korean,
.brand-name,
.hero-description {
}

.logo-text {
}

/* Loading State Styles */
.header.loading .hero-text > * {
  opacity: 0;
  transform: translateY(30px);
}

.header.loaded .hero-text > * {
  opacity: 1;
  transform: translateY(0);
}

/* Section1 */
.section1 {
  width: 1920px;
  height: 820px;
  background: #ffffff;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #00ff00;
  overflow: visible;
}

.section1-container {
  width: 1440px;
  height: 280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
}

/* Left Side: Text Content */
.section1-left {
  flex: 1;
  max-width: 406px;
  height: 200px;
  position: relative;
  top: 40px;
}

.section1-header {
  display: flex;
  align-items: center;
  margin-bottom: 1.5rem;
}

.section1-description {
  font-size: 1.25rem;
  color: #666666;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
  max-width: 500px;
}

/* Right Side: Feature Cards */
.section1-right {
  flex: 1;
  position: relative;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

/* 중복된 feature-card 스타일 제거 - 위쪽에 이미 정의되어 있음 */

/* Navigation Arrows */
.section1-nav {
  position: absolute;
  bottom: -60px;
  right: 0;
  display: flex;
  gap: 16px;
}

.nav-arrow {
  width: 48px;
  height: 48px;
  border: 1px solid #e0e0e0;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #333333;
  cursor: pointer;
}

/* Section Container */
.section-container {
  position: absolute;
  left: 240px;
  top: 228px;
  width: 1200px;
  height: 280px;
  background: #126dff;
  border: 3px solid #ff0000;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
}

.section-container-content {
  text-align: center;
  max-width: 1000px;
  padding: 0 40px;
}

.section-container-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #222222;
  margin-bottom: 1rem;
  font-family: "Pretendard", sans-serif;
}

.section-container-description {
  font-size: 1.1rem;
  color: #666666;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
}

/* Additional Card Styles */
.card-4 {
  background: #333333;
}

.card-5 {
  background: #333333;
}

/* Card Content Front/Back */
.card-content-front,
.card-content-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 32px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-content-back {
  display: none;
  background: #ffffff;
  color: #202020;
}

/* Hover States */
.feature-card:hover {
  background: #ffffff !important;
  box-shadow: none !important;
}

.feature-card:hover .card-content-front {
  display: none;
}

.feature-card:hover .card-content-back {
  display: block;
}

.feature-card:hover .card-title {
  color: #202020;
}

.feature-card:hover .card-icon img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(0%)
    hue-rotate(0deg) brightness(0%) contrast(100%);
}

/* Back Content Styles */
.card-title-back {
  font-size: 20px;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
  color: #126dff;
  font-family: "Pretendard", sans-serif;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.card-list li {
  font-size: 16px;
  color: #505050;
  line-height: 1.5;
  font-family: "Pretendard", sans-serif;
  position: relative;
  padding-left: 20px;
}

.card-list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #505050;
  font-weight: bold;
}

.platform-feature-title {
  font-size: 20px;
  color: #202020;
  font-weight: 600;
  text-align: center;
  margin-bottom: 3rem;
  width: 1200px;
  height: 25px;
  display: flex;
  align-items: center;
  justify-content: left;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

/* New Pages Styles */

/* Business Inquiry Page */
.inquiry-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.inquiry-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.inquiry-info {
  padding-right: 40px;
}

.inquiry-title {
  font-size: 36px;
  font-weight: 700;
  color: #202020;
  margin-bottom: 24px;
  font-family: "Pretendard", sans-serif;
}

.inquiry-description {
  font-size: 18px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 48px;
  font-family: "Pretendard", sans-serif;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
}

.contact-icon {
  font-size: 24px;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
  border-radius: 50%;
}

.contact-details h3 {
  font-size: 16px;
  font-weight: 600;
  color: #202020;
  margin: 0 0 4px 0;
  font-family: "Pretendard", sans-serif;
}

.contact-details p {
  font-size: 14px;
  color: #666666;
  margin: 0;
  font-family: "Pretendard", sans-serif;
}

.inquiry-form {
  background: white;
  padding: 40px;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #202020;
  font-family: "Pretendard", sans-serif;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-size: 16px;
  font-family: "Pretendard", sans-serif;
  background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #126dff;
  box-shadow: 0 0 0 3px rgba(18, 109, 255, 0.1);
}

.checkbox-group {
  flex-direction: row;
  align-items: center;
  gap: 12px;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #666666;
  cursor: pointer;
  font-family: "Pretendard", sans-serif;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin: 0;
}

.submit-btn {
  background: #126dff;
  color: white;
  border: none;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  font-family: "Pretendard", sans-serif;
  transition: background-color 0.3s ease;
}

.submit-btn:hover {
  background: #0056cc;
}

/* Company Introduction Page */
.company-overview {
  padding: 80px 0;
  background: white;
}

.overview-content {
  text-align: center;
}

.overview-text {
  margin-bottom: 60px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #202020;
  margin-bottom: 24px;
  font-family: "Pretendard", sans-serif;
}

.section-description {
  font-size: 18px;
  color: #666666;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
}

.overview-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 800px;
  margin: 0 auto;
}

.stat-card {
  text-align: center;
  padding: 32px 24px;
  background: #f8f9fa;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
}

.stat-number {
  font-size: 48px;
  font-weight: 800;
  color: #126dff;
  margin-bottom: 12px;
  font-family: "Pretendard", sans-serif;
}

.stat-label {
  font-size: 18px;
  color: #666666;
  font-weight: 500;
  font-family: "Pretendard", sans-serif;
}

.mission-vision {
  padding: 80px 0;
  background: #f8f9fa;
}

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

.mission,
.vision,
.values {
  text-align: center;
  padding: 40px 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
}

.mission-icon,
.vision-icon,
.values-icon {
  font-size: 48px;
  margin-bottom: 24px;
}

.mission h3,
.vision h3,
.values h3 {
  font-size: 24px;
  font-weight: 700;
  color: #202020;
  margin-bottom: 16px;
  font-family: "Pretendard", sans-serif;
}

.mission p,
.vision p,
.values p {
  font-size: 16px;
  color: #666666;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
}

.company-history {
  padding: 80px 0;
  background: white;
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: #e0e0e0;
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-year {
  background: #126dff;
  color: white;
  padding: 12px 24px;
  border-radius: 20px;
  font-weight: 700;
  font-size: 18px;
  font-family: "Pretendard", sans-serif;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding: 24px;
  background: #f8f9fa;
  border-radius: 12px;
  margin: 0 24px;
  border: 1px solid #e0e0e0;
}

.timeline-content h4 {
  font-size: 20px;
  font-weight: 600;
  color: #202020;
  margin-bottom: 8px;
  font-family: "Pretendard", sans-serif;
}

.timeline-content p {
  font-size: 16px;
  color: #666666;
  margin: 0;
  font-family: "Pretendard", sans-serif;
}

.team-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  max-width: 1000px;
  margin: 0 auto;
}

.team-member {
  text-align: center;
  padding: 32px 24px;
  background: white;
  border-radius: 16px;
  border: 1px solid #e0e0e0;
}

.member-avatar {
  font-size: 64px;
  margin-bottom: 16px;
}

.team-member h4 {
  font-size: 20px;
  font-weight: 600;
  color: #202020;
  margin-bottom: 8px;
  font-family: "Pretendard", sans-serif;
}

.member-role {
  font-size: 16px;
  color: #126dff;
  font-weight: 600;
  margin-bottom: 16px;
  font-family: "Pretendard", sans-serif;
}

.member-desc {
  font-size: 14px;
  color: #666666;
  line-height: 1.6;
  font-family: "Pretendard", sans-serif;
}

.company-cta {
  padding: 80px 0;
  background: #126dff;
  color: white;
  text-align: center;
}

.cta-content h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 16px;
  font-family: "Pretendard", sans-serif;
}

.cta-content p {
  font-size: 18px;
  margin-bottom: 32px;
  opacity: 0.9;
  font-family: "Pretendard", sans-serif;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-button {
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  font-family: "Pretendard", sans-serif;
  transition: all 0.3s ease;
}

.cta-button.primary {
  background: white;
  color: #126dff;
}

.cta-button.primary:hover {
  background: #f0f0f0;
}

.cta-button.secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.cta-button.secondary:hover {
  background: white;
  color: #126dff;
}

/* Active Navigation Link */
.nav-link.active {
  color: #126dff;
  font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
  .inquiry-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .inquiry-info {
    padding-right: 0;
  }

  .overview-stats {
    grid-template-columns: 1fr;
  }

  .mission-vision-content {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-item {
    flex-direction: row !important;
  }

  .timeline-year {
    margin-right: 16px;
  }

  .timeline-content {
    margin: 0;
    margin-left: 16px;
  }

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

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
}
