:root{--build-id:"d717c0fd-fba1-47d5-92f7-5119801d4756";}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #65a30d;
  --bg: #f7fee7;
  --text: #365314;
  --accent: #3f6212;
  --heading: var(--text);
  --link: var(--text);
}

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

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.875rem, 4vw, 3.375rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  opacity: 0.7;
}

a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

.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;
}

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

/* Header - N03: 상단 스크롤 + 우측 로고 + 좌측 메뉴 */
header {
  background-color: #fff;
  padding: 1rem 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

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

nav {
  order: 1;
}

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

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

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

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  order: 0;
}

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

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    height: 100vh;
    background: #fff;
    transition: left 0.3s;
    padding: 2rem;
    z-index: 100;
  }

  .menu-checkbox:checked ~ nav {
    left: 0;
  }

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

/* Hero Section */
.hero {
  padding: 5.5rem 0;
  background: linear-gradient(135deg, #f7fee7 0%, #ecfccb 100%);
}

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

.hero-icon {
  margin-top: 2rem;
  color: var(--primary);
}

.hero-icon svg {
  display: inline-block;
}

/* Page Hero */
.page-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f7fee7 0%, #ecfccb 100%);
  text-align: center;
}

/* Sections */
section {
  padding: 5.5rem 0;
}

.content-section {
  padding: 5.5rem 0;
}

/* Intro Grid */
.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.25rem;
  margin-top: 3.25rem;
}

.intro-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  text-align: center;
}

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

/* Checklist - CS08 체크리스트형 */
.checklist {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.check-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.check-icon {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.check-item h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

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

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.25rem;
  margin-top: 3.25rem;
}

.gallery-item {
  text-align: center;
}

.gallery-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

.gallery-icon svg {
  display: inline-block;
}

/* CTA Section */
.cta {
  background: linear-gradient(135deg, #ecfccb 0%, #d9f99d 100%);
  text-align: center;
}

.cta-button {
  display: inline-block;
  border-radius: 0;
  padding: 0.875rem 2rem;
  font-weight: 500;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  background-color: var(--primary);
  color: #fff;
  margin-top: 1.5rem;
  transition: transform 0.2s;
}

.cta-button:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
  opacity: 1;
}

/* Value Grid */
.value-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.25rem;
  margin-top: 3.25rem;
}

.value-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
}

.value-card .icon {
  font-size: 2rem;
  color: var(--primary);
  display: block;
  margin-bottom: 1rem;
}

/* Feature List */
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.feature-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

/* Program Grid */
.program-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.25rem;
  margin-top: 3.25rem;
}

.program-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
}

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

/* Review List */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  margin-top: 3rem;
}

.review-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
}

.review-header {
  margin-bottom: 1rem;
}

.reviewer {
  color: var(--primary);
  font-size: 1.25rem;
}

.reviewer-name {
  font-weight: 600;
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}

/* Tip Grid */
.tip-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.25rem;
  margin-top: 3.25rem;
}

.tip-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  text-align: center;
}

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

/* FAQ List */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-top: 3rem;
}

.faq-item {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
}

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

/* Contact Grid */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.25rem;
  margin-top: 3.25rem;
}

.contact-card {
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
  text-align: center;
}

.contact-card .icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* Footer */
footer {
  background-color: #fff;
  padding: 3rem 0 1.5rem;
  border-top: 1px solid #e5e7eb;
}

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

.footer-section h3 {
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.footer-section ul {
  list-style: none;
}

.footer-section li {
  margin-bottom: 0.5rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #e5e7eb;
  color: #6b7280;
  font-size: 0.875rem;
}

/* Doc Container */
.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;
}