:root{--build-id:"09bd77da-f408-40aa-9703-7761b28cf33e";}
/* 초기화 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* CSS 변수 - C10 색상 팔레트 */
:root {
  --primary: #059669;
  --bg: #ecfdf5;
  --text: #065f46;
  --accent: #10b981;
  --heading: var(--text);
  --link: var(--text);
}

/* Body - F5 폰트 */
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;
  color: var(--text);
  background: var(--bg);
}

/* H06 헤딩 스타일 - clamp 반응형 */
h1 {
  font-size: clamp(1.75rem, 5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-transform: capitalize;
  color: var(--heading);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--heading);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--heading);
}

/* 접근성 - 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;
}

/* N09 네비게이션 - 상단 투명 + 좌측 로고 + 중앙 검색 + 우측 메뉴 */
header {
  background: rgba(236, 253, 245, 0.95);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(5, 150, 105, 0.1);
}

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

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

.search-box {
  flex: 1;
  max-width: 300px;
  display: none;
}

.search-box input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid var(--primary);
  border-radius: 0.5rem;
  font-size: 0.875rem;
}

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

nav a {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

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

.menu-checkbox {
  display: none;
}

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

/* S09 섹션 간격 */
section {
  padding: 6.5rem 0;
}

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

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

/* K06 카드 스타일 */
.card {
  border: 1px solid #d1d5db;
  border-radius: 1rem;
  padding: 1.5rem;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(5, 150, 105, 0.15);
}

/* B06 버튼 스타일 */
.btn {
  border-radius: 0;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border: 3px solid var(--primary);
  background: var(--primary);
  color: #fff;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  transition: all 0.3s;
}

.btn:hover {
  background: var(--accent);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
}

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

/* 그리드 레이아웃 */
.grid {
  display: grid;
  gap: 2rem;
}

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

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

/* 리스트 스타일 */
.content-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.content-list li {
  padding-left: 2rem;
  position: relative;
}

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

/* Footer */
footer {
  background: var(--text);
  color: #fff;
  padding: 3rem 0 1.5rem;
}

.footer-content {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
}

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

/* 모바일 반응형 */
@media (max-width: 768px) {
  .header-container {
    flex-wrap: wrap;
  }

  .search-box {
    display: none;
  }

  nav {
    display: none;
    width: 100%;
    order: 3;
  }

  .menu-checkbox:checked ~ nav {
    display: block;
  }

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

  .menu-toggle {
    display: block;
  }

  section {
    padding: 3rem 0;
  }

  .section-gap {
    gap: 2rem;
  }

  .grid {
    gap: 1.5rem;
  }

  h1 {
    font-size: clamp(1.5rem, 7vw, 2rem);
  }
}

@media (min-width: 769px) {
  .search-box {
    display: block;
  }
}

/* SVG 스타일 */
.icon-svg {
  width: 48px;
  height: 48px;
  fill: var(--primary);
}

/* 비교 테이블 */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.comparison-table th,
.comparison-table td {
  padding: 1rem;
  border: 1px solid #d1d5db;
  text-align: left;
}

.comparison-table th {
  background: var(--primary);
  color: #fff;
  font-weight: 600;
}

.comparison-table tr:nth-child(even) {
  background: rgba(236, 253, 245, 0.5);
}

/* FAQ 스타일 */
.faq-item {
  border: 1px solid #d1d5db;
  border-radius: 0.5rem;
  padding: 1.5rem;
  background: #fff;
  margin-bottom: 1rem;
}

.faq-question {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.faq-answer {
  color: var(--text);
  line-height: 1.65;
}