:root{--build-id:"03938ac3-a290-4d2f-98bf-d0dd576eb67c";}
@charset "UTF-8";

/* 색상 변수 (C14: 그린 계열) */
:root {
  --primary: #16a34a;
  --bg: #dcfce7;
  --text: #166534;
  --accent: #22c55e;
  --heading: var(--text);
  --link: var(--text);
}

/* 폰트 (F5: Android Core) */
body {
  font-family: Roboto, "Noto Sans KR", "Malgun Gothic", "Segoe UI", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
}

/* 헤딩 (H02 기반) */
h1 {
  font-size: clamp(2.00rem, 2.6vw + 1rem, 3.00rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 0 0 1rem 0;
}

h2 {
  font-size: clamp(1.50rem, 1.95vw + 0.75rem, 2.25rem);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 0 0 0.875rem 0;
}

h3 {
  font-size: clamp(1.20rem, 1.56vw + 0.6rem, 1.80rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 0 0 0.75rem 0;
}

p {
  margin: 0 0 1rem 0;
}

a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* 접근성: Skip Link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: #000;
  color: #fff;
  padding: 8px 16px;
  text-decoration: none;
  z-index: 100;
}

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

/* 키보드 포커스 */
a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* 네비게이션 (N14: 상단 고정 + 좌측 로고 + 우측 메뉴 언더라인) */
header {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 50;
}

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

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

.menu-checkbox {
  display: none;
}

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

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 2rem;
}

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

nav a:hover,
nav a[aria-current="page"] {
  border-bottom-color: var(--primary);
  text-decoration: none;
}

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

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

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

  nav a {
    display: block;
    padding: 0.75rem 0;
    border-bottom: none;
    border-left: 3px solid transparent;
    padding-left: 0.5rem;
  }

  nav a:hover,
  nav a[aria-current="page"] {
    border-left-color: var(--primary);
    border-bottom-color: transparent;
  }
}

/* 여백 시스템 (S08) */
section {
  padding: 3rem 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* 버튼 (B03) */
.btn {
  display: inline-block;
  border-radius: 9999px;
  padding: 1.25rem 3rem;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  background: var(--primary);
  color: #fff;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  text-decoration: none;
}

/* 카드 (K08) */
.card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  background: #fff;
}

/* 그리드 */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* 히어로 섹션 */
.hero {
  background: linear-gradient(135deg, #dcfce7 0%, #bbf7d0 100%);
  padding: 5rem 0;
  text-align: center;
}

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

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* 푸터 */
footer {
  background: #fff;
  border-top: 1px solid #e5e7eb;
  padding: 2rem 0;
  text-align: center;
  font-size: 0.875rem;
  color: #6b7280;
}

footer a {
  color: #6b7280;
  margin: 0 0.5rem;
}

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

/* Privacy/Terms 페이지 */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  text-align: center;
}

/* 아이콘 스타일 */
.icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

/* 텍스트 정렬 */
.text-center {
  text-align: center;
}

/* 리스트 스타일 */
ul.check-list {
  list-style: none;
  padding: 0;
}

ul.check-list li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

ul.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* FAQ 스타일 */
.faq-item {
  margin-bottom: 1.5rem;
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}