<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/* 1. ê¸°ë³¸ ì„¤ì&nbsp;• ë° ë³€ìˆ˜ */
:root {
  /* ìƒ‰ìƒ ë³€ìˆ˜ */
  --main-pink: #FF6B9A;
  --dark-pink: #E84C88;
  --light-pink: #FFA5C3;
  --bg-dark: #1A1A1A;
  --bg-light: #FFFFFF;
  --mid-gray: #2A2A2A;
  --dark-gray: #222222;
  --light-gray: #AAAAAA;
  --text-white: #FFFFFF;
  --text-dark: #333333;
  
  /* ê°„ê²© ë³€ìˆ˜ */
  --section-padding: 80px;
  --container-padding: 20px;
  --card-padding: 25px;
  
  /* ê¸°íƒ€ ë³€ìˆ˜ */
  --border-radius: 10px;
  --box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 2. ê³µí†µ ìš”ì†Œ ìŠ¤íƒ€ì¼ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans KR', sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-white);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-padding);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* 3. í—¤ë” ë° ë„¤ë¹„ê²Œì´ì…˜ ìŠ¤íƒ€ì¼ */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  background-color: rgba(26, 26, 26, 0.9);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border-bottom: none; /* ê¸°ì¡´ border-bottom ì&nbsp;œê±° */
  position: relative; /* ê°€ìƒ ìš”ì†Œë¥¼ ìœ„í•œ position ì„¤ì&nbsp;• */
}

header:after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--main-pink), var(--dark-pink), var(--main-pink));
  background-size: 200% 100%;
  animation: gradientFlow 3s linear infinite;
}

@keyframes gradientFlow {
  0% { background-position: 0% 50%; }
  100% { background-position: 200% 50%; }
}


header.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px var(--container-padding);
  max-width: 1200px;
  margin: 0 auto;
}

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

.logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  position: relative;
}

.logo img {
  height: 40px;
  margin-right: 10px;
  transition: all 0.5s ease;
}

.logo:hover img {
  transform: rotate(10deg);
}

.logo h1 {
  font-size: 1.8rem;
  font-weight: 700;
  color: white;
  letter-spacing: 1px;
  position: relative;
  text-shadow: 0 0 15px rgba(255, 107, 154, 0.5);
}

.logo h1:after {
  content: 'Women';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  color: transparent;
  background: linear-gradient(90deg, #ff6b9a, #e84c88);
  -webkit-background-clip: text;
  background-clip: text;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.logo:hover h1:after {
  opacity: 1;
}

/* LIVE ë°°ì§€ ìŠ¤íƒ€ì¼ - ì´ë¯¸ì§€ì— ë§žê²Œ ìˆ˜ì&nbsp;• */
.live-badge {
  position: absolute;
  top: -10px;
  right: -40px;
  background: linear-gradient(90deg, #ff2d75, #ff5151);
  color: white;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  box-shadow: 0 0 10px rgba(255, 45, 117, 0.7);
  animation: pulseLive 1.5s infinite;
  transform-origin: center;
  z-index: 3;
}


@keyframes pulseLive {
  0% { transform: scale(1); }
  50% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.live-badge:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 10px;
  width: 6px;
  height: 6px;
  background-color: white;
  border-radius: 50%;
  transform: translateY(-50%);
  animation: blink 1s infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}

/* ë©”ë‰´ ê°„ê²© í™•ëŒ€ ë° í˜¸ë²„ íš¨ê³¼ ê°œì„&nbsp; */
.nav-links {
  display: flex;
  justify-content: center;
  gap: 30px; /* ê¸°ì¡´ 20pxì—ì„œ 30pxë¡œ ì¦ê°€ */
}

.nav-links a {
  font-size: 1rem;
  font-weight: 500;
  position: relative;
  padding: 5px 0;
  letter-spacing: 0.5px; /* ìžê°„ ì¶”ê°€ */
  transition: color 0.3s ease;
}

/* ë©”ë‰´ í•­ëª© ë°‘ì¤„ íš¨ê³¼ - í˜¸ë²„ ì‹œ ê°€ìš´ë°ì—ì„œ í™•ìž¥ë˜ëŠ” íš¨ê³¼ */

/* active ìƒíƒœì—ì„œë„ ë°‘ì¤„ í‘œì‹œ */
.nav-links a.active::after {
  width: 100%;
}

/* ì…€ë&nbsp;‰íŠ¸ë°•ìŠ¤ ì˜µì…˜ ìŠ¤íƒ€ì¼ */
.language-selector select option {
  background-color: var(--mid-gray);
  color: var(--text-white);
  padding: 10px;
}

/* í˜„ìž¬ í™œì„±í™”ëœ ë©”ë‰´ ì•„ì´í…œ ìŠ¤íƒ€ì¼ ìˆ˜ì&nbsp;• - ë°‘ì¤„ ì&nbsp;œê±° */
.nav-links a.active {
  color: var(--main-pink);
}

/* .nav-links a.active::after ì„&nbsp;íƒìž ì&nbsp;œê±° */

/* í—¤ë” ì˜¤ë¥¸ìª½ ìš”ì†Œë“¤ ê·¸ë£¹í™” */
.header-right {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* ì–¸ì–´ ì„&nbsp;íƒê¸° ìŠ¤íƒ€ì¼ */
.language-selector {
  position: relative;
  display: flex;
  align-items: center;
}

.language-selector::after {
  content: 'â–¼';
  font-size: 0.7rem;
  color: var(--light-gray);
  position: absolute;
  right: 10px;
  pointer-events: none;
}

/* í™”ë©´ ëª¨ë“œ ì&nbsp;„í™˜ ë²„íŠ¼ */
.view-mode-toggle {
  display: flex;
  align-items: center;
  background-color: transparent; /* rgba(255, 255, 255, 0.1)ì—ì„œ transparentë¡œ ë³€ê²½ */
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 5px 8px; /* ì¢Œìš° íŒ¨ë”© ì¤„ìž„ */
}

.view-mode-toggle i {
  color: var(--text-white);
  font-size: 1.2rem;
  transition: all 0.3s ease;
}

.view-mode-toggle:hover i {
  color: var(--main-pink);
}

/* ëª¨ë°”ì¼ì—ì„œ PC ëª¨ë“œ ë²„íŠ¼ */
.pc-mode-btn {
  display: none;
}

/* PCì—ì„œ ëª¨ë°”ì¼ ëª¨ë“œ ë²„íŠ¼ */
.mobile-mode-btn {
  display: flex;
}

@media (max-width: 768px) {
  .pc-mode-btn {
    display: flex;
  }
  
  .mobile-mode-btn {
    display: none;
  }
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
}

.mobile-menu-btn span {
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: all 0.3s ease;
}

/* 4. ë²„íŠ¼ ìŠ¤íƒ€ì¼ */
.btn {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary {
  background: linear-gradient(to right, var(--main-pink), var(--dark-pink));
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(232, 76, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(232, 76, 136, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--main-pink);
}

.btn-secondary:hover {
  background-color: var(--main-pink);
  color: var(--text-white);
  transform: translateY(-3px);
}

.detail-btn {
  background: none;
  border: none;
  color: var(--main-pink);
  font-weight: 600;
  cursor: pointer;
  padding: 5px 0;
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.detail-btn::after {
  content: 'â†’';
  margin-left: 5px;
  transition: transform 0.3s ease;
}

.detail-btn:hover::after {
  transform: translateX(5px);
}

/* 5. ì„¹ì…˜ë³„ ê³µí†µ ìŠ¤íƒ€ì¼ */
section {
  padding: var(--section-padding) 0;
  text-align: center;
}

.section-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-align: center;
  color: var(--text-white);
}

.section-subtitle {
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 50px;
  color: var(--light-gray);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* 6. ížˆì–´ë¡œ ì„¹ì…˜ ìŠ¤íƒ€ì¼ */
.ad-copy-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(rgba(26, 26, 26, 0.8), rgba(26, 26, 26, 0.9)), url('https://images.unsplash.com/photo-1611162617213-7d7a39e9b1d7?ixlib=rb-1.2.1&amp;auto=format&amp;fit=crop&amp;w=1950&amp;q=80') no-repeat center center/cover;
  padding-top: 80px;
}

.ad-copy-section .container {
  text-align: center;
  z-index: 2;
}

.ad-copy-section .section-title {
  font-size: 3rem;
  margin-bottom: 20px;
  color: var(--text-white);
}

.ad-copy-section .section-subtitle {
  font-size: 1.5rem;
  margin-bottom: 40px;
  position: relative;
  display: inline-block;
}

.ad-copy-section .section-subtitle::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(to right, var(--main-pink), var(--dark-pink));
  border-radius: 3px;
}

.ad-circles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-top: 60px;
}

.circle {
  width: 220px;
  height: 220px;
  perspective: 1000px;
}

.circle-inner {
  position: relative;
  width: 100%;
  height: 100%;
  text-align: center;
  transition: transform 0.8s;
  transform-style: preserve-3d;
}

.circle:hover .circle-inner {
  transform: rotateY(180deg);
}

.circle-front, .circle-back {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  backface-visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.circle-front {
  background: linear-gradient(135deg, var(--main-pink), var(--dark-pink));
  color: white;
}

.circle-back {
  background: linear-gradient(135deg, var(--dark-pink), var(--main-pink));
  color: white;
  transform: rotateY(180deg);
}

.circle-headline {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.circle-subtext {
  font-size: 0.9rem;
  line-height: 1.4;
}

/* 7. ì„œë¹„ìŠ¤ ì»´í¬ë„ŒíŠ¸ ìŠ¤íƒ€ì¼ */
.service-components {
  background-color: var(--dark-gray);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.service-components::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to bottom, transparent, var(--dark-gray));
}

.service-buttons {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
  justify-content: center;
}

.service-btn {
  background-color: var(--mid-gray);
  border-radius: var(--border-radius);
  padding: var(--card-padding);
  transition: all 0.3s ease;
  box-shadow: var(--box-shadow);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-btn:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.icon-wrapper {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main-pink), var(--dark-pink));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.icon-wrapper svg {
  width: 30px;
  height: 30px;
  fill: white;
}

.service-btn h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--text-white);
}

.service-btn p {
  color: var(--light-gray);
  margin-bottom: 20px;
  flex-grow: 1;
}

/* 8. íŠ¹ì§• ì¹´ë“œ ìŠ¤íƒ€ì¼ */
.features {
  background-color: var(--bg-dark);
  position: relative;
  text-align: center;
}

.market-research-box {
  background-color: var(--mid-gray);
  border-radius: var(--border-radius);
  padding: 30px;
  margin-bottom: 50px;
  box-shadow: var(--box-shadow);
  border-left: 4px solid var(--main-pink);
  text-align: left;
}

.market-research-box h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--main-pink);
}

.market-research-box p {
  margin-bottom: 20px;
}

.info-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 15px;
}

.info-list li {
  position: relative;
  padding-left: 25px;
  font-weight: 500;
}

.info-list li::before {
  content: 'âœ“';
  position: absolute;
  left: 0;
  color: var(--main-pink);
}

.feature-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 30px;
  justify-content: center;
}

.feature-card {
  height: 280px;
  perspective: 1000px;
  cursor: pointer;
}

.feature-card:hover .card-front {
  transform: rotateY(180deg);
}

.feature-card:hover .card-back {
  transform: rotateY(0);
}

.card-front, .card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  transition: transform 0.6s cubic-bezier(0.4, 0.0, 0.2, 1);
  border-radius: var(--border-radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 30px;
  text-align: center;
}

.card-front {
  background: linear-gradient(135deg, rgba(255, 107, 154, 0.1), rgba(232, 76, 136, 0.1));
  border: 1px solid rgba(255, 107, 154, 0.2);
}

.card-back {
  background: linear-gradient(135deg, var(--main-pink), var(--dark-pink));
  transform: rotateY(-180deg);
}

.card-front h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--main-pink);
}

.card-front p {
  font-size: 1.1rem;
  color: var(--light-gray);
}

.card-back h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: white;
}

.card-back p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
}

/* 9. ìœ&nbsp;íŠœë¸Œ ì„¹ì…˜ ìŠ¤íƒ€ì¼ */
.youtube-showcase {
  background-color: var(--dark-gray);
  text-align: center;
}

.youtube-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: center;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%; /* 16:9 ë¹„ìœ¨ */
  height: 0;
  overflow: hidden;
  border-radius: var(--border-radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.video-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-details {
  padding: 20px;
  text-align: left;
}

.video-content h3 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: var(--main-pink);
}

.video-content p {
  margin-bottom: 20px;
  color: var(--light-gray);
}

.video-actions {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
}

/* 10. ê°¤ëŸ¬ë¦¬ ì„¹ì…˜ ìŠ¤íƒ€ì¼ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.gallery-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  height: 0;
  padding-bottom: 100%; /* ì&nbsp;•ì‚¬ê°í˜• ë¹„ìœ¨ ìœ&nbsp;ì§€ */
}

.gallery-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.3s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
  transform: translateY(0);
}

.gallery-overlay h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.gallery-overlay p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* ëª¨ë°”ì¼ ë°˜ì‘í˜• ê°œì„&nbsp; */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr); /* íƒœë¸”ë¦¿ì—ì„œëŠ” 2ì—´ë¡œ */
    gap: 15px;
    margin-top: 30px;
  }
  
  .gallery-overlay {
    padding: 15px;
  }
  
  .gallery-overlay h3 {
    font-size: 1rem;
    margin-bottom: 3px;
  }
  
  .gallery-overlay p {
    font-size: 0.8rem;
  }
  
  /* ëª¨ë°”ì¼ í‘¸í„° ê°œì„&nbsp; */
  .footer-desktop {
    display: none;
  }
  
  .footer-mobile {
    display: block;
    padding: 30px 0;
  }
  
  .footer-mobile .footer-about {
    max-width: 100%;
    margin-bottom: 20px;
  }
  
  .footer-mobile .footer-logo {
    margin-bottom: 15px;
  }
  
  .footer-mobile p {
    margin-bottom: 15px;
  }
  
  .footer-mobile .social-links {
    margin-bottom: 20px;
  }
  
  /* ëª¨ë°”ì¼ì—ì„œ ì•„ì½”ë””ì–¸ ë©”ë‰´ ìˆ¨ê¸°ê¸° */
  .accordion-wrapper {
    display: none;
  }
  
  /* ëª¨ë°”ì¼ í‘¸í„° ì&nbsp;€ìž‘ê¶Œ ì&nbsp;•ë³´ */
  .copyright {
    padding-top: 20px;
    margin-top: 20px;
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: repeat(1, 1fr); /* ëª¨ë°”ì¼ì—ì„œëŠ” 1ì—´ë¡œ */
    gap: 15px;
    margin-top: 20px;
  }
  
  .gallery-item {
    max-width: 100%; /* ë„ˆë¹„ë¥¼ 100%ë¡œ ì„¤ì&nbsp;•í•˜ì—¬ í™”ë©´ ê½‰ ì°¨ê²Œ í‘œì‹œ */
    margin: 0 auto;
    height: auto; /* ë†’ì´ë¥¼ ìžë™ìœ¼ë¡œ ì¡°ì&nbsp;• */
  }
}
  
  /* ìž‘ì€ ëª¨ë°”ì¼ í™”ë©´ì—ì„œ í‘¸í„° ì¶”ê°€ ì¡°ì&nbsp;• */
  .footer-mobile .footer-logo img {
    height: 35px;
  }
  
  .footer-mobile .footer-logo h3 {
    font-size: 1.3rem;
  }
  
  .footer-mobile p {
    font-size: 0.9rem;
  }
  
  .social-links a {
    width: 35px;
    height: 35px;
  }
}

/* 11. ë¹„êµ í…Œì´ë¸” ìŠ¤íƒ€ì¼ */
.value-comparison {
  background-color: var(--dark-gray);
  text-align: center;
}

.table-responsive {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 20px;
  display: flex;
  justify-content: center;
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--box-shadow);
  max-width: 800px;
  margin: 0 auto;
}

.comparison-table th, .comparison-table td {
  padding: 15px 20px;
  text-align: left;
}

.comparison-table th {
  background-color: var(--main-pink);
  color: white;
  font-weight: 600;
}

.comparison-table tr {
  background-color: var(--mid-gray);
}

.comparison-table tr:nth-child(even) {
  background-color: rgba(42, 42, 42, 0.7);
}

.comparison-table tr.highlight {
  background-color: rgba(255, 107, 154, 0.1);
}

.check-icon {
  color: var(--main-pink);
  font-weight: bold;
}

.cross-icon {
  color: var(--light-gray);
}

/* 12. í‘¸í„° ìŠ¤íƒ€ì¼ */
footer {
  background-color: var(--bg-dark);
  padding: 60px 0 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

/* PC ë²„ì&nbsp;„ í‘¸í„° */
.footer-desktop {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
  justify-content: center;
}

.footer-about {
  max-width: 400px;
  margin: 0 auto;
}

.footer-logo {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  justify-content: center;
}

.footer-logo img {
  height: 40px;
  margin-right: 10px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  color: var(--main-pink);
}

.footer-about p {
  color: var(--light-gray);
  margin-bottom: 20px;
  text-align: center;
}

.social-links {
  display: flex;
  gap: 15px;
  justify-content: center;
}

.social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: var(--mid-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.social-links a:hover {
  background-color: var(--main-pink);
  transform: translateY(-3px);
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  color: var(--text-white);
  text-align: center;
}

.footer-links ul li {
  margin-bottom: 10px;
  text-align: center;
}

.footer-links ul li a {
  color: var(--light-gray);
}

.footer-links ul li a:hover {
  color: var(--main-pink);
}

.map-container {
  height: 180px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 15px;
}

/* ëª¨ë°”ì¼ ë²„ì&nbsp;„ í‘¸í„° */
.footer-mobile {
  display: none;
}

.accordion-wrapper {
  margin-top: 30px;
}

.accordion-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 10px;
}

.accordion-header {
  padding: 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-header h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-white);
}

.accordion-icon i {
  transition: transform 0.3s ease;
}

.accordion-header.active .accordion-icon i {
  transform: rotate(180deg);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
  padding-bottom: 15px;
}

.mobile-map-container {
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  margin-top: 10px;
  margin-bottom: 15px;
}

.map-item {
  width: 100%;
}

/* 13. ë°˜ì‘í˜• ë¯¸ë””ì–´ ì¿¼ë¦¬ */
@media (max-width: 1024px) {
  .section-title {
    font-size: 2.2rem;
  }
  
  .ad-copy-section .section-title {
    font-size: 3rem;
  }
  
  .youtube-grid {
    grid-template-columns: 1fr;
  }
  
  .footer-container {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }
  
  .section-subtitle {
    font-size: 1.1rem;
    margin-bottom: 30px;
  }
  
  .ad-copy-section .section-title {
    font-size: 2.5rem;
  }
  
  .ad-copy-section .section-subtitle {
    font-size: 1.2rem;
  }
  
  .nav-links, .language-selector {
    display: none;
  }
  
  .mobile-menu-btn {
    display: flex;
  }
  
  .service-buttons, .feature-container {
    grid-template-columns: 1fr;
  }
  
  .ad-circles {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
  
  .circle {
    width: 200px;
    height: 200px;
  }
  
  .circle-headline {
    font-size: 1.1rem;
  }
  
  .circle-subtext {
    font-size: 0.85rem;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .footer-about {
    max-width: 100%;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 15px;
  }
  
  .gallery-item {
    height: 200px;
    margin-bottom: 0;
  }
  
  .strategy-container {
    grid-template-columns: 1fr;
  }
  
  .knowhow-container {
    grid-template-columns: 1fr;
  }
  
  .contact-circles {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact-circle {
    width: 120px;
    height: 120px;
  }
  
  .contact-title {
    font-size: 18px;
  }
  
  .contact-id {
    font-size: 14px;
  }
  
  .hashtags {
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .hashtag {
    font-size: 0.8rem;
    padding: 6px 12px;
    margin: 3px;
  }
}

@media (max-width: 576px) {
  section {
    padding: 50px 0;
  }
  
  .ad-copy-section {
    padding-top: 70px;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .hero-title {
    font-size: 1.8rem;
  }
  
  .hero-subtitle {
    font-size: 1rem;
  }
  
  .language-selector {
    display: none;
  }
  
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  
  .comparison-table {
    font-size: 0.9rem;
  }
  
  .comparison-table th, .comparison-table td {
    padding: 8px 10px;
  }
  
  .cta-box {
    padding: 25px;
  }
  
  .cta-box h3 {
    font-size: 1.5rem;
  }
  
  .footer-links h4 {
    margin-bottom: 10px;
  }
  
  .footer-links ul li {
    margin-bottom: 8px;
  }
  
  .social-links {
    justify-content: center;
  }
  
  .footer-logo {
    justify-content: center;
  }
  
  .footer-about p {
    text-align: center;
  }
  
  .footer-links {
    text-align: center;
  }
  
  .footer-links ul {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .chat-icons {
    bottom: 20px;
    left: 20px;
  }
  
  .chat-icon {
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
  }
  
  .back-to-top {
    bottom: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
  }
}

/* 14. ë¼ì´íŠ¸ë°•ìŠ¤ ìŠ¤íƒ€ì¼ */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;
  max-width: 80%;
  max-height: 80%;
}

.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  font-size: 30px;
  color: white;
  cursor: pointer;
}

.lightbox-caption {
  position: absolute;
  bottom: -60px;
  left: 0;
  width: 100%;
  text-align: center;
}

.lightbox-caption h3 {
  font-size: 1.2rem;
  margin-bottom: 5px;
}

.lightbox-caption p {
  font-size: 0.9rem;
  color: var(--light-gray);
}

/* 15. ëª¨ë‹¬ ìŠ¤íƒ€ì¼ */
.service-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.service-modal.active {
  opacity: 1;
  visibility: visible;
}

.modal-content {
  background-color: var(--mid-gray);
  border-radius: var(--border-radius);
  padding: 30px;
  max-width: 500px;
  width: 90%;
  position: relative;
  transform: translateY(30px);
  transition: all 0.3s ease;
}

.service-modal.active .modal-content {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
  color: var(--light-gray);
}

.modal-content h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: var(--main-pink);
}

.modal-body {
  margin-bottom: 20px;
}

/* 16. í¼ ìŠ¤íƒ€ì¼ */
.form-group {
  margin-bottom: 20px;
  position: relative;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--border-radius);
  background-color: rgba(255, 255, 255, 0.05);
  color: var(--text-white);
  font-family: inherit;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--main-pink);
  background-color: rgba(255, 255, 255, 0.1);
}

.error-message {
  color: #ff4d4d;
  font-size: 0.85rem;
  margin-top: 5px;
}

.error-input {
  border-color: #ff4d4d !important;
}

.submit-btn {
  background: linear-gradient(to right, var(--main-pink), var(--dark-pink));
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 50px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-block;
  margin: 0 auto;
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(232, 76, 136, 0.3);
}

.form-success-message {
  background-color: rgba(39, 174, 96, 0.1);
  border-left: 4px solid #27ae60;
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  margin-bottom: 20px;
}

.success-icon {
  font-size: 3rem;
  color: #27ae60;
  margin-bottom: 15px;
}

/* 17. ë§¨ ìœ„ë¡œ ë²„íŠ¼ ìŠ¤íƒ€ì¼ */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--main-pink);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 99;
  box-shadow: 0 5px 15px rgba(232, 76, 136, 0.3);
}

.back-to-top.active {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(232, 76, 136, 0.4);
}

/* 18. ì±„íŒ… ì•„ì´ì½˜ ìŠ¤íƒ€ì¼ */
.chat-icons {
  position: fixed;
  bottom: 30px;
  left: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 99;
}

.chat-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
}

.chat-icon.wechat {
  background-color: #07C160;
  color: white;
}

.chat-icon.kakaotalk {
  background-color: #FFEB00;
  color: #3C1E1E;
}

.chat-icon:hover {
  transform: translateY(-5px) scale(1.05);
}

/* ë…¸í•˜ìš° ì„¹ì…˜ ìŠ¤íƒ€ì¼ */
.knowhow-section {
  background-color: var(--dark-gray);
  padding: var(--section-padding) 0;
  position: relative;
  text-align: center;
}

.knowhow-section .container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background: linear-gradient(to bottom, var(--main-pink), var(--dark-pink));
  border-radius: 2px;
}

.knowhow-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-top: 30px;
  justify-content: center;
}

.knowhow-box {
  background-color: var(--mid-gray);
  border-radius: 12px;
  padding: 25px;
  border-left: 3px solid var(--main-pink);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: left;
}

.knowhow-box h3 {
  color: var(--main-pink);
  font-size: 1.3rem;
  margin-bottom: 15px;
  border-bottom: 1px solid rgba(255, 107, 154, 0.2);
  padding-bottom: 8px;
  text-align: center;
}

.knowhow-box p {
  margin-bottom: 15px;
  line-height: 1.6;
}

.stats-highlight {
  background: rgba(255, 107, 154, 0.05);
  padding: 15px;
  border-radius: 8px;
  margin: 15px 0;
  border-left: 3px solid var(--main-pink);
  text-align: left;
}

/* ì—°ë½ì²˜ ìŠ¤íƒ€ì¼ ê°œì„&nbsp; */
.contact-section {
  background-color: var(--bg-dark);
  padding: var(--section-padding) 0;
  text-align: center;
}

.contact-circles {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  margin: 30px 0;
}

.contact-circle {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  font-weight: bold;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
}

.contact-circle:nth-child(1) {
  background: linear-gradient(135deg, #FF6B9A, #E84C88);
}

.contact-circle:nth-child(2) {
  background: linear-gradient(135deg, #E84C88, #FF4181);
}

.contact-circle:nth-child(3) {
  background: linear-gradient(135deg, #FF4181, #FF6B9A);
}

.contact-circle:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(232, 76, 136, 0.3);
}

.contact-title {
  font-size: 22px;
  margin-bottom: 5px;
}

.contact-id {
  font-size: 16px;
}

.contact-box {
  background-color: #FFF0F5;
  border-radius: 12px;
  padding: 25px;
  text-align: center;
  margin: 30px auto;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  border-left: 3px solid var(--main-pink);
  color: #333;
  max-width: 800px;
}

.contact-box h3 {
  color: var(--dark-pink);
  font-size: 1.4rem;
  margin-bottom: 15px;
}

.contact-box p {
  font-size: 1.1rem;
  margin-bottom: 10px;
  font-weight: 600;
}

/* í•´ì‹œíƒœê·¸ ìŠ¤íƒ€ì¼ */
.hashtags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 30px 0;
}

.hashtag {
  background: rgba(255, 107, 154, 0.1);
  padding: 8px 15px;
  border-radius: 50px;
  font-size: 0.9rem;
  color: var(--main-pink);
  transition: all 0.3s ease;
}

.hashtag:hover {
  background: rgba(255, 107, 154, 0.2);
  transform: translateY(-2px);
}

/* CTA ë²„íŠ¼ */
.cta-button {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(to right, var(--main-pink), var(--dark-pink));
  color: white;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 5px 15px rgba(232, 76, 136, 0.3);
  transition: all 0.3s ease;
  margin: 0 auto;
}

.cta-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(232, 76, 136, 0.4);
}

/* ë¼ì´ë¸Œì»¤ë¨¸ìŠ¤ ê°€ì´ë“œ ì„¹ì…˜ ìŠ¤íƒ€ì¼ */
.liveshopping-guide {
  padding: var(--section-padding) 0;
  background-color: var(--dark-gray);
  position: relative;
  text-align: center;
}

.liveshopping-guide .container::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  bottom: 10px;
  width: 4px;
  background: linear-gradient(to bottom, var(--main-pink), var(--dark-pink));
  border-radius: 2px;
}

.guide-title {
  color: var(--main-pink);
  font-size: 1.8rem;
  margin-bottom: 15px;
  border-bottom: 2px solid rgba(255, 107, 154, 0.2);
  padding-bottom: 10px;
  text-align: center;
  display: inline-block;
}

.guide-subtitle {
  color: var(--text-white);
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
}

.guide-text {
  margin-bottom: 15px;
  line-height: 1.7;
  text-align: center;
}

.guide-section {
  background-color: var(--mid-gray);
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 30px;
  border-left: 3px solid var(--main-pink);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  text-align: center;
}

.strategy-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.strategy-box {
  background: rgba(255, 107, 154, 0.05);
  border-radius: 10px;
  padding: 20px;
  border-left: 3px solid var(--main-pink);
  text-align: left;
}

.strategy-box h3 {
  color: var(--main-pink);
  font-size: 1.2rem;
  margin-bottom: 15px;
  position: relative;
  padding-bottom: 10px;
  text-align: center;
}

.strategy-box h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 2px;
  background: var(--main-pink);
}

.strategy-list {
  list-style-type: none;
}

.strategy-list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  line-height: 1.5;
}

.strategy-list li:before {
  content: 'âœ”';
  color: var(--main-pink);
  position: absolute;
  left: 0;
}

.country-services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.country-box {
  background: rgba(255, 107, 154, 0.05);
  border-radius: 10px;
  padding: 20px;
  border-left: 3px solid var(--main-pink);
  text-align: center;
}

.country-box h3 {
  color: var(--main-pink);
  font-size: 1.2rem;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.country-box h3 i {
  margin-right: 10px;
  font-size: 1.4rem;
}

.logistics-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  margin-top: 20px;
  justify-content: center;
}

.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 20px;
  justify-content: center;
}

.service-item {
  background: rgba(255, 107, 154, 0.1);
  border-radius: 50px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.service-item i {
  color: var(--main-pink);
  margin-right: 8px;
}

.highlight-box {
  background: rgba(255, 107, 154 , 0.05);
  border-radius: 10px;
  padding: 20px;
  margin: 20px auto;
  border-left: 3px solid var(--main-pink);
  max-width: 600px;
  text-align: left;
}

.highlight-box h3 {
  color: var(--main-pink);
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-align: center;
}

/* 19. ì•&nbsp;ë‹ˆë©”ì´ì…˜ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade-in {
  animation: fadeIn 1s ease forwards;
}

.fade-in-up {
  animation: fadeInUp 1s ease forwards;
}

.slide-in-left {
  animation: slideInLeft 1s ease forwards;
}

.slide-in-right {
  animation: slideInRight 1s ease forwards;
}

.zoom-in {
  animation: zoomIn 1s ease forwards;
}

.delay-100 {
  animation-delay: 0.1s;
}

.delay-200 {
  animation-delay: 0.2s;
}

.delay-300 {
  animation-delay: 0.3s;
}

.delay-400 {
  animation-delay: 0.4s;
}

.delay-500 {
  animation-delay: 0.5s;
}

/* 20. ëª¨ë°”ì¼ ë©”ë‰´ ìŠ¤íƒ€ì¼ */
.mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-dark);
  z-index: 9999; /* z-index ê°’ ì¦ê°€ */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-100%); /* ì™¼ìª½ì—ì„œ ìŠ¬ë¼ì´ë“œ íš¨ê³¼ ì¶”ê°€ */
  transition: all 0.3s ease;
}

.mobile-menu.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0); /* í™œì„±í™” ì‹œ ì›ëž˜ ìœ„ì¹˜ë¡œ */
}

/* ëª¨ë°”ì¼ ë©”ë‰´ ë²„íŠ¼ ìŠ¤íƒ€ì¼ ëª…í™•ížˆ ì&nbsp;•ì˜ */
.mobile-menu-btn {
  display: none; /* ê¸°ë³¸ì&nbsp;ìœ¼ë¡œ ìˆ¨ê¹€ */
  flex-direction: column;
  justify-content: space-between;
  width: 30px;
  height: 20px;
  cursor: pointer;
  z-index: 10000; /* ë©”ë‰´ë³´ë‹¤ ë†’ì€ z-index */
}

.mobile-menu-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text-white);
  transition: all 0.3s ease;
}

/* 768px ì´í•˜ì—ì„œ ëª¨ë°”ì¼ ë©”ë‰´ ë²„íŠ¼ í‘œì‹œ */
@media (max-width: 768px) {
  .mobile-menu-btn {
    display: flex;
  }
}

/* no-scroll í´ëž˜ìŠ¤ ì¶”ê°€ */
.no-scroll {
  overflow: hidden;
}

/* 21. ë¼ì´ë¸Œì»¤ë¨¸ìŠ¤ ê°€ì´ë“œ íŽ˜ì´ì§€ ì¶”ê°€ ìŠ¤íƒ€ì¼ */
.guide-header-nav {
  position: absolute;
  bottom: 20px;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  z-index: 2;
}

.guide-header-nav a {
  color: var(--text-white);
  margin: 0 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.guide-header-nav a:hover {
  color: var(--main-pink);
}

.guide-section-nav {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.guide-section-nav a {
  display: flex;
  align-items: center;
  color: var(--light-gray);
  transition: all 0.3s ease;
}

.guide-section-nav a:hover {
  color: var(--main-pink);
}

.guide-section-nav a.prev i {
  margin-right: 10px;
}

.guide-section-nav a.next i {
  margin-left: 10px;
}

.guide-section-nav a.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* 22. ì¶”ê°€ ì•&nbsp;ë‹ˆë©”ì´ì…˜ íš¨ê³¼ */
.rotate-animation {
  animation: rotate 10s linear infinite;
}

@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.pulse-animation {
  animation: pulse 2s ease infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.float-animation {
  animation: float 3s ease-in-out infinite;
}

@keyframes float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}

/* 23. ë‹¤êµ­ì–´ ì§€ì› ìŠ¤íƒ€ì¼ */
[lang="zh"] {
  font-family: 'Noto Sans SC', sans-serif;
}

[lang="ja"] {
  font-family: 'Noto Sans JP', sans-serif;
}

[lang="en"] {
  font-family: 'Poppins', sans-serif;
}

/* í™”ë©´ ëª¨ë“œ ì&nbsp;„í™˜ ë²„íŠ¼ ìŠ¤íƒ€ì¼ */
.view-mode-toggle {
  display: flex;
  align-items: center;
  padding: 5px 8px; /* íŒ¨ë”© ì¤„ìž„ */
  margin-left: 0; /* 3pxì—ì„œ 0ìœ¼ë¡œ ë³€ê²½ */
  background-color: transparent; /* ë°°ê²½ìƒ‰ íˆ¬ëª…ìœ¼ë¡œ ë³€ê²½ */
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.view-mode-toggle i {
  margin-right: 3px; /* 5pxì—ì„œ 3pxë¡œ ì¤„ìž„ */
  font-size: 14px;
}

.view-mode-toggle span {
  font-size: 12px;
  font-weight: 500;
}

.view-mode-toggle:hover {
  background-color: transparent; /* í˜¸ë²„ ì‹œì—ë„ ë°°ê²½ìƒ‰ íˆ¬ëª… ìœ&nbsp;ì§€ */
}

.view-mode-toggle:hover i {
  color: var(--main-pink); /* í˜¸ë²„ ì‹œ ì•„ì´ì½˜ ìƒ‰ìƒë§Œ ë³€ê²½ */
}

.mobile-mode-btn {
  color: var(--text-white);
}

.pc-mode-btn {
  color: var(--text-white);
}

/* ìŠ¤í¬ë¡¤ëœ í—¤ë”ì—ì„œì˜ í™”ë©´ ëª¨ë“œ ë²„íŠ¼ ìŠ¤íƒ€ì¼ */
#header.scrolled .view-mode-toggle {
  background-color: rgba(0, 0, 0, 0.05);
}

#header.scrolled .view-mode-toggle:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

#header.scrolled .mobile-mode-btn,
#header.scrolled .pc-mode-btn {
  color: var(--text-dark);
}

/* ëª¨ë°”ì¼ í™”ë©´ì—ì„œ í™”ë©´ ëª¨ë“œ ë²„íŠ¼ ìˆ¨ê¸°ê¸° */
@media (max-width: 768px) {
  .view-mode-toggle {
    display: none;
  }
}

/* 24. ì&nbsp;‘ê·¼ì„± í–¥ìƒ ìŠ¤íƒ€ì¼ */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

:focus {
  outline: 2px solid var(--main-pink);
  outline-offset: 2px;
}

/* 25. í”„ë¦°íŠ¸ ìŠ¤íƒ€ì¼ */
@media print {
  body {
    background-color: white;
    color: black;
  }
  
  .header, .footer, .chat-icons, .back-to-top {
    display: none;
  }
  
  .container {
    width: 100%;
    max-width: none;
  }
  
  .section-title, .section-subtitle, p, h1, h2, h3, h4, h5, h6 {
    color: black;
  }
  
  a {
    color: black;
    text-decoration: underline;
  }
  
  .guide-section {
    page-break-inside: avoid;
  }
}
/* ëª¨ë°”ì¼ ìµœì&nbsp;í™” ì¶”ê°€ ìŠ¤íƒ€ì¼ */
@media (max-width: 480px) {
  :root {
    --section-padding: 40px;
    --container-padding: 12px;
  }
  
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-size: 1rem;
    margin-bottom: 25px;
  }
  
  .ad-copy-section {
    padding-top: 60px;
  }
  
  .ad-copy-section .section-title {
    font-size: 2rem;
  }
  
  .ad-copy-section .section-subtitle {
    font-size: 1rem;
  }
  
  .circle {
    width: 180px;
    height: 180px;
    margin-bottom: 15px;
  }
  
  .circle-headline {
    font-size: 1rem;
  }
  
  .circle-subtext {
    font-size: 0.8rem;
  }
  
  .service-btn {
    padding: 20px;
  }
  
  .service-btn h3 {
    font-size: 1.3rem;
  }
  
  .service-btn p {
    font-size: 0.9rem;
  }
  
  .market-research-box {
    padding: 20px;
  }
  
  .market-research-box h3 {
    font-size: 1.3rem;
  }
  
  .feature-card {
    height: 250px;
  }
  
  .card-front h3, .card-back h3 {
    font-size: 1.5rem;
  }
  
  .card-front p, .card-back p {
    font-size: 0.9rem;
  }
  
  .video-content h3 {
    font-size: 1.5rem;
  }
  
  .video-content p {
    font-size: 0.9rem;
  }
  
  .gallery-item {
    height: 180px;
  }
  
  .gallery-overlay h3 {
    font-size: 1.1rem;
  }
  
  .gallery-overlay p {
    font-size: 0.8rem;
  }
  
  .comparison-table {
    font-size: 0.8rem;
  }
  
  .comparison-table th, .comparison-table td {
    padding: 6px 8px;
  }
  
  .guide-title {
    font-size: 1.5rem;
  }
  
  .guide-text {
    font-size: 0.9rem;
  }
  
  .strategy-box h3 {
    font-size: 1.1rem;
  }
  
  .strategy-list li {
    font-size: 0.9rem;
  }
  
  .knowhow-box h3 {
    font-size: 1.2rem;
  }
  
  .knowhow-box p {
    font-size: 0.9rem;
  }
  
  .contact-box h3 {
    font-size: 1.3rem;
  }
  
  .contact-box p {
    font-size: 0.9rem;
  }
  
  .contact-circle {
    width: 110px;
    height: 110px;
  }
  
  .contact-title {
    font-size: 16px;
  }
  
  .contact-id {
    font-size: 13px;
  }
  
  .hashtag {
    font-size: 0.75rem;
    padding: 5px 10px;
  }
  
  .footer-logo h3 {
    font-size: 1.3rem;
  }
  
  .footer-about p {
    font-size: 0.9rem;
  }
  
  .footer-links h4 {
    font-size: 1.1rem;
  }
  
  .footer-links ul li {
    font-size: 0.9rem;
  }
  
  .copyright {
    font-size: 0.8rem;
  }
  
  .chat-icons {
    bottom: 15px;
    left: 15px;
  }
  
  .chat-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .back-to-top {
    bottom: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 0.9rem;
  }
  
  .mobile-nav-links a {
    font-size: 1.3rem;
  }
  
  .mobile-language-selector button {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}
/* ëª¨ë°”ì¼ í‘¸í„° ì&nbsp;„ìš© ìŠ¤íƒ€ì¼ */
@media (max-width: 768px) {
  .footer-desktop {
    display: none;
  }
  
  .footer-mobile {
    display: block;
    background-color: #151c2a;
  }
  
  .footer-mobile .footer-about {
    padding: 20px;
    text-align: center;
  }
  
  .footer-logo {
    justify-content: center;
    margin-bottom: 15px;
  }
  
  .social-links {
    justify-content: center;
    margin-top: 15px;
  }
  
  .accordion-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }
  
  .accordion-header {
    padding: 15px 20px;
    background-color: #1a2234;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
  }
  
  .accordion-header h4 {
    color: white;
    font-weight: 500;
    font-size: 1rem;
  }
  
  .accordion-icon i {
    transition: transform 0.3s ease;
  }
  
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background-color: #1a2234;
}

.accordion-content.active {
  max-height: none; /* ë†’ì´ë¥¼ ì&nbsp;œí•œí•˜ì§€ ì•ŠìŒ */
}

.accordion-content ul {
  padding: 0 20px 15px;
}

.accordion-content ul li {
  padding: 8px 0;
  margin-bottom: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.accordion-content ul li a,
.accordion-content ul li {
  color: #b0b0b0;
  display: block;
  width: 100%;
}

.mobile-map-container {
  margin: 10px 0 15px;
  height: 200px;
}


/* ê°¤ëŸ¬ë¦¬ ê°„ê²© ì¡°ì&nbsp;• */
@media (max-width: 768px) {
  .gallery-grid {
    gap: 15px;
  }
  
  .gallery-item {
    margin-bottom: 0;
  }
}

/* í…Œì´ë¸” ë°˜ì‘í˜• ê°œì„&nbsp; */
@media (max-width: 576px) {
  .table-responsive {
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: auto;
  }
  
  .comparison-table {
    min-width: 100%; /* 500pxì—ì„œ 100%ë¡œ ë³€ê²½ */
    width: 100%;
    font-size: 0.8rem;
  }
  
  .comparison-table th, .comparison-table td {
    padding: 6px 8px;
    white-space: nowrap; /* í…ìŠ¤íŠ¸ ì¤„ë°”ê¿ˆ ë°©ì§€ */
  }
}

/* ëª¨ë°”ì¼ ë©”ë‰´ ê°œì„&nbsp; */
@media (max-width: 480px) {
  .mobile-menu-btn {
    width: 25px;
    height: 18px;
  }
  
  .mobile-menu-close {
    top: 15px;
    right: 15px;
  }
  
  .mobile-nav-links {
    gap: 15px;
  }
  
  .mobile-language-selector {
    margin-top: 30px;
  }
}

/* ëª¨ë°”ì¼ ì»¨íƒíŠ¸ ì„¹ì…˜ ê°œì„&nbsp; */
@media (max-width: 480px) {
  .contact-circles {
    gap: 15px;
  }
  
  .contact-circle {
    width: 100px;
    height: 100px;
  }
  
  .contact-title {
    font-size: 14px;
  }
  
  .contact-id {
    font-size: 12px;
  }
  
  .contact-box {
    padding: 20px 15px;
  }
  
  .contact-box h3 {
    font-size: 1.2rem;
  }
  
  .contact-box p {
    font-size: 0.85rem;
  }
  
  .hashtags {
    margin: 20px 0;
  }
  
  .hashtag {
    padding: 5px 8px;
    font-size: 0.7rem;
  }
}

/* ëª¨ë°”ì¼ ë…¸í•˜ìš° ì„¹ì…˜ ê°œì„&nbsp; */
@media (max-width: 576px) {
  .knowhow-box {
    padding: 20px 15px;
  }
  
  .knowhow-box h3 {
    font-size: 1.1rem;
  }
  
  .knowhow-box p {
    font-size: 0.85rem;
  }
  
  .stats-highlight {
    padding: 15px 12px;
  }
  
  .stats-highlight p {
    font-size: 0.85rem;
  }
}

/* ëª¨ë°”ì¼ ê°€ì´ë“œ ì„¹ì…˜ ê°œì„&nbsp; */
@media (max-width: 576px) {
  .guide-section {
    padding: 20px 15px;
  }
  
  .guide-title {
    font-size: 1.3rem;
  }
  
  .guide-text {
    font-size: 0.85rem;
  }
  
  .strategy-box {
    padding: 15px 12px;
  }
  
  .strategy-box h3 {
    font-size: 1rem;
  }
  
  .strategy-list li {
    font-size: 0.85rem;
    padding-left: 20px;
  }
  
  .highlight-box {
    padding: 15px 12px;
  }
  
  .highlight-box h3 {
    font-size: 1.1rem;
  }
}

/* ëª¨ë°”ì¼ ë²„íŠ¼ ê°œì„&nbsp; */
@media (max-width: 480px) {
  .btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .cta-button {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  .detail-btn {
    font-size: 0.85rem;
  }
}

/* ëª¨ë°”ì¼ í—¤ë” ê°œì„&nbsp; */
@media (max-width: 480px) {
  .header-container {
    padding: 12px var(--container-padding);
  }
  
  .logo img {
    height: 35px;
  }
  
  .logo h1 {
    font-size: 1.5rem;
  }
}

/* ëª¨ë°”ì¼ ì„¹ì…˜ íŒ¨ë”© ì¡°ì&nbsp;• */
@media (max-width: 480px) {
  section {
    padding: 40px 0;
  }
  
  .ad-copy-section {
    padding-top: 60px;
    min-height: 90vh;
  }
}

/* ë²„íŠ¼ ì¤‘ì•™ ì&nbsp;•ë&nbsp;¬ ì¶”ê°€ ìŠ¤íƒ€ì¼ */
.video-actions {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  margin: 0 5px;
}

/* ë¬¸ì˜í•˜ê¸° ë²„íŠ¼ ì¤‘ì•™ ì&nbsp;•ë&nbsp;¬ */
.cta-button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

/* ê°¤ëŸ¬ë¦¬ ì•„ì´í…œ ì¤‘ì•™ ì&nbsp;•ë&nbsp;¬ */
.gallery-grid {
  justify-items: center;
}

/* ì„œë¹„ìŠ¤ ë²„íŠ¼ ë‚´ë¶€ ìš”ì†Œ ì¤‘ì•™ ì&nbsp;•ë&nbsp;¬ */
.service-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.service-btn .detail-btn {
  margin: 0 auto;
}

/* ì&nbsp;„ëžµ ë°•ìŠ¤ ë‚´ë¶€ ì&nbsp;œëª© ì¤‘ì•™ ì&nbsp;•ë&nbsp;¬ */
.strategy-box h3 {
  text-align: center;
}

/* í•˜ì´ë¼ì´íŠ¸ ë°•ìŠ¤ ë‚´ë¶€ ì&nbsp;œëª© ì¤‘ì•™ ì&nbsp;•ë&nbsp;¬ */
.highlight-box h3 {
  text-align: center;
}

/* ë…¸í•˜ìš° ë°•ìŠ¤ ë‚´ë¶€ ì&nbsp;œëª© ì¤‘ì•™ ì&nbsp;•ë&nbsp;¬ */
.knowhow-box h3 {
  text-align: center;
}

/* ë²„íŠ¼ ê°„ê²© ì¡°ì&nbsp;• */
.btn, .cta-button {
  margin: 5px;
}

/* ëª¨ë°”ì¼ì—ì„œ ë²„íŠ¼ ì¤‘ì•™ ì&nbsp;•ë&nbsp;¬ */
@media (max-width: 768px) {
  .video-actions {
    flex-direction: column;
    align-items: center;
  }
  
  .btn, .cta-button {
    width: 80%;
    max-width: 300px;
    margin: 5px auto;
  }
}

/* ë™ì&nbsp;ì¸ ì„&nbsp; íš¨ê³¼ */
.animated-line-container {
  position: relative;
  width: 100%;
  height: 2px;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.05);
}

.animated-line {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, transparent, var(--main-pink), transparent);
  animation: line-animation 3s infinite;
}

@keyframes line-animation {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}</pre></body></html>