:root{--build-id:"7e90f330-50af-484a-8926-f4e6d26bd698";}
@charset "UTF-8";

/* ========================================
   CSS 변수 (Color Palette C26)
   ======================================== */
:root {
  --primary: #7c3aed;
  --bg: #f5f3ff;
  --text: #4c1d95;
  --accent: #8b5cf6;
  --heading: #4c1d95;
  --link: #4c1d95;
  --border: #e0d5f7;
  --card-bg: #ffffff;
  --footer-bg: #ebe4ff;
}

/* ========================================
   리셋 및 기본 스타일
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background-color: var(--bg);
}

/* ========================================
   타이포그래피 (H14)
   ======================================== */
h1 {
  font-size: clamp(2.5rem, 5vw, 3.625rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-decoration: underline;
  text-decoration-thickness: 3px;
  text-underline-offset: 8px;
  text-decoration-color: var(--primary);
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0;
  color: var(--heading);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.25rem;
  color: var(--text);
}

.lead {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  opacity: 0.9;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--primary);
  opacity: 0.8;
}

a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* ========================================
   Skip Link (접근성)
   ======================================== */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
  font-weight: 600;
}

.skip-link:focus {
  top: 0;
}

/* ========================================
   레이아웃 (S05: section 7rem, container 1500px, gap 5rem)
   ======================================== */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  .container {
    padding: 0 1.5rem;
  }
}

/* ========================================
   헤더 및 네비게이션 (N01)
   ======================================== */
header {
  background-color: var(--card-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(124, 58, 237, 0.05);
}

.header-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--primary);
  user-select: none;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

nav a {
  color: var(--text);
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

nav a:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

nav a[aria-current="page"] {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 700;
}

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: var(--card-bg);
    border-top: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .menu-checkbox:checked ~ nav {
    max-height: 500px;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  nav a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: none;
  }
}

/* ========================================
   버튼 스타일 (B14: skew 효과)
   ======================================== */
.btn {
  display: inline-block;
  border-radius: 0.25rem;
  padding: 1rem 2rem;
  font-weight: 600;
  transform: skew(-5deg);
  transition: all 0.3s ease;
  text-align: center;
  cursor: pointer;
  border: none;
  font-size: 1rem;
}

.btn:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

.btn-primary {
  background-color: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background-color: #6d28d9;
  color: #fff;
  transform: skew(-5deg) translateY(-2px);
  box-shadow: 0 4px 12px rgba(124, 58, 237, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary);
  color: #fff;
  transform: skew(-5deg) translateY(-2px);
}

/* ========================================
   카드 스타일 (K14)
   ======================================== */
.card {
  background-color: var(--card-bg);
  border-radius: 1rem 0 1rem 0;
  border: 2px solid var(--primary);
  padding: 1.75rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.15);
}

.card-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.card h3 {
  margin-bottom: 0.75rem;
}

.card p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .card-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

/* ========================================
   히어로 섹션 (L27 임팩트 스타일)
   ======================================== */
.hero-section {
  background: linear-gradient(135deg, var(--bg) 0%, #ebe4ff 100%);
  padding: 8rem 0 7rem;
  position: relative;
  overflow: hidden;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  color: var(--text);
}

.hero-cta-group {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-image svg {
  width: 100%;
  height: auto;
  max-width: 600px;
}

@media (max-width: 968px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-section {
    padding: 5rem 0 4rem;
  }

  .hero-image {
    text-align: center;
  }
}

/* ========================================
   페이지 공통 섹션
   ======================================== */
.page-header {
  background: linear-gradient(to bottom, var(--bg), var(--card-bg));
  padding: 5rem 0 3rem;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.page-header h1 {
  margin-bottom: 1rem;
}

.content-section {
  background-color: var(--card-bg);
}

.content-block {
  margin-bottom: 4rem;
}

.content-block:last-child {
  margin-bottom: 0;
}

.intro-section,
.features-section,
.benefits-preview-section,
.cta-section {
  background-color: var(--card-bg);
}

.features-section {
  background-color: var(--bg);
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #6d28d9 100%);
  color: #fff;
  text-align: center;
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-section h2 {
  text-decoration-color: #fff;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
}

.cta-section .btn-primary {
  background-color: #fff;
  color: var(--primary);
}

.cta-section .btn-primary:hover {
  background-color: var(--bg);
  color: var(--primary);
}

.cta-section .btn-secondary {
  border-color: #fff;
  color: #fff;
}

.cta-section .btn-secondary:hover {
  background-color: #fff;
  color: var(--primary);
}

/* ========================================
   성공사례 (Story Cards)
   ======================================== */
.story-card {
  background-color: var(--bg);
  border-left: 4px solid var(--primary);
  padding: 2.5rem;
  margin-bottom: 3rem;
  border-radius: 0.5rem;
}

.story-card:last-child {
  margin-bottom: 0;
}

.story-card h2 {
  margin-bottom: 0.5rem;
}

.story-meta {
  font-size: 0.9rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1.5rem;
}

/* ========================================
   FAQ 섹션
   ======================================== */
.faq-section {
  background-color: var(--card-bg);
}

.faq-item {
  background-color: var(--bg);
  border-radius: 0.5rem;
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
}

.faq-item:last-child {
  margin-bottom: 0;
}

.faq-item h2 {
  font-size: 1.35rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.faq-item p {
  margin-bottom: 0;
}

/* ========================================
   문의 섹션
   ======================================== */
.contact-section {
  background-color: var(--card-bg);
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-item {
  background-color: var(--bg);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 2px solid var(--border);
}

.contact-item h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

.contact-detail {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.contact-message {
  background: linear-gradient(135deg, var(--bg) 0%, #ebe4ff 100%);
  padding: 3rem;
  border-radius: 1rem;
  text-align: center;
}

.contact-message h2 {
  margin-bottom: 1.5rem;
}

/* ========================================
   비주얼 섹션 (SVG)
   ======================================== */
.visual-section {
  background-color: var(--bg);
  padding: 4rem 0;
}

.visual-section svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   푸터
   ======================================== */
footer {
  background-color: var(--footer-bg);
  padding: 3rem 0 1.5rem;
  border-top: 1px solid var(--border);
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 2rem;
}

.footer-brand strong {
  font-size: 1.25rem;
  color: var(--primary);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--text);
  margin-bottom: 0;
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: var(--text);
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: var(--text);
}

.footer-copyright {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
}

.footer-copyright p {
  margin: 0;
}

/* ========================================
   문서 컨테이너 (Privacy/Terms)
   ======================================== */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.doc-container h1 {
  margin-bottom: 2rem;
}

.doc-container p {
  margin-bottom: 1.5rem;
}

.doc-container a {
  color: var(--primary);
  font-weight: 600;
}

/* ========================================
   반응형 조정
   ======================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .contact-info {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}