:root{--build-id:"f7659a7c-185b-4078-99d8-c90da5d90472";}
/* 전역 CSS 변수 */
:root {
  --primary: #16a34a;
  --bg: #dcfce7;
  --text: #166534;
  --accent: #22c55e;
  --heading: #166534;
  --link: #166534;
  --section-padding: 6rem 0;
  --container-width: 1400px;
  --gap: 4rem;
}

/* 폰트 설정 - 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);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: Roboto, "Noto Sans KR", "Malgun Gothic", "Segoe UI", -apple-system, system-ui, sans-serif;
  font-weight: 600;
  line-height: 1.2;
  color: var(--heading);
}

/* H12 스타일 */
h1 {
  font-size: 4.25rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.15;
}

h3 {
  font-size: 1.75rem;
  font-weight: 600;
  line-height: 1.3;
}

/* Skip to Content 링크 */
.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;
}

a:focus:not(:focus-visible),
input:focus:not(:focus-visible),
label:focus:not(:focus-visible) {
  outline: none;
}

/* 헤더 - N06 스타일 */
header {
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

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

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: block;
  font-size: 2rem;
  cursor: pointer;
  color: var(--primary);
  position: absolute;
  right: 2rem;
  top: 1.5rem;
}

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

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

nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

nav a {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  display: block;
  transition: color 0.3s;
}

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

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

  nav {
    display: block !important;
  }

  nav ul {
    flex-direction: row;
    justify-content: center;
  }
}

/* 메인 컨테이너 */
main {
  min-height: 60vh;
}

section {
  padding: var(--section-padding);
}

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 2rem;
}

/* B17 버튼 스타일 - 미니멀 투명 테두리 */
.btn {
  border: 2px solid var(--primary);
  background: transparent;
  padding: 0.875rem 2rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  cursor: pointer;
}

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

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

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

/* K14 카드 스타일 - 비대칭 라운드 + 테두리 */
.card {
  border-radius: 1rem 0 1rem 0;
  border: 2px solid var(--primary);
  padding: 1.75rem;
  background: #fff;
  margin-bottom: 2rem;
}

/* 그리드 레이아웃 */
.grid {
  display: grid;
  gap: var(--gap);
}

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

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

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

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

/* 탭 스타일 */
.tabs {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.tab {
  padding: 0.75rem 1.5rem;
  border: 2px solid var(--primary);
  background: transparent;
  color: var(--primary);
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s;
}

.tab:hover,
.tab.active {
  background: var(--primary);
  color: #fff;
}

/* 체크리스트 */
.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 1rem 0;
  border-bottom: 1px solid #bbf7d0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.checklist li:before {
  content: "✓";
  color: var(--primary);
  font-weight: 900;
  font-size: 1.5rem;
}

/* 푸터 */
footer {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-top: 2px solid var(--primary);
}

footer p {
  margin: 0.5rem 0;
}

footer a {
  color: var(--link);
  text-decoration: none;
  margin: 0 0.5rem;
}

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

/* 문서 컨테이너 (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;
  line-height: 1.8;
}

/* 반응형 타이포그래피 */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .hero {
    padding: 4rem 1rem 3rem;
  }
}

/* 아이콘 스타일 */
.icon {
  font-size: 3rem;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

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

.text-balance {
  text-wrap: balance;
}

/* 여백 유틸리티 */
.mt-2 {
  margin-top: 2rem;
}
.mb-2 {
  margin-bottom: 2rem;
}
.mt-4 {
  margin-top: 4rem;
}
.mb-4 {
  margin-bottom: 4rem;
}

/* 인라인 스타일을 클래스로 이동 */

/* 섹션 배경 */
.section-white {
  background: #fff;
}

.section-gradient {
  background: linear-gradient(135deg, #16a34a 0%, #22c55e 100%);
  color: #fff;
}

.section-gradient h2,
.section-gradient h3 {
  color: #fff;
}

/* 텍스트 스타일 */
.text-large {
  font-size: 1.125rem;
  line-height: 1.8;
}

.text-intro {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.text-max-width {
  max-width: 800px;
  margin: 2rem auto;
}

.text-max-width-700 {
  max-width: 700px;
  margin: 2rem auto;
}

.text-max-width-center {
  max-width: 800px;
  margin: 0 auto;
}

/* 버튼 그룹 */
.btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.btn-white {
  border-color: #fff;
  color: #fff;
}

.btn-white:hover {
  background: #fff;
  color: #16a34a;
}

.btn-white-filled {
  background: #fff;
  color: #16a34a;
  border-color: #fff;
}

.btn-white-filled:hover {
  background: transparent;
  color: #fff;
}

/* SVG 여백 */
.svg-spacing {
  margin: 2rem 0;
}

.svg-spacing-large {
  margin: 3rem 0;
}

/* 체크리스트 흰색 테두리 */
.checklist-white li {
  border-bottom-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

/* 문단 여백 */
.paragraph-spacing {
  margin-bottom: 1rem;
}

.paragraph-spacing-large {
  margin-bottom: 2rem;
}

.paragraph-indent {
  padding-left: 1rem;
}

/* 컨텐츠 여백 */
.content-spacing {
  margin-top: 1.5rem;
}

.content-spacing-large {
  margin-top: 2rem;
}

/* 색상 강조 */
.text-primary {
  color: var(--primary);
}

.font-weight-600 {
  font-weight: 600;
}