:root{--build-id:"66e86136-97b2-40d6-83d8-4696df9ea6f7";}
/* CSS Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

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

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

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

/* Header - N03: 상단 스크롤 + 우측 로고 + 좌측 메뉴 */
header {
  background: var(--bg);
  border-bottom: 2px solid var(--primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--primary);
  font-weight: 600;
  font-size: 1.25rem;
  order: 2;
}

.logo svg {
  color: var(--primary);
}

nav {
  order: 1;
}

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

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

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;
  order: 3;
}

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

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bg);
    transition: left 0.3s;
    padding: 5rem 2rem;
    z-index: 100;
  }

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

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

/* Main Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

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

/* Typography - H08 */
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.75rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

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

p {
  margin-bottom: 1rem;
}

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

/* Links */
a {
  color: var(--link);
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
  transition: opacity 0.2s;
}

.inline-link:hover {
  opacity: 0.7;
}

/* Button - B08 */
.btn-primary {
  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: var(--primary);
  color: #fff;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  border: none;
}

.btn-primary:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.2);
}

/* Section Spacing - S03 */
section {
  padding: 6rem 0;
}

/* Hero Section - L14: 풀스크린 히어로 */
.hero-fullscreen {
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(180deg, var(--bg) 0%, #ecfccb 100%);
  position: relative;
  padding: 6rem 2rem;
}

.hero-content {
  max-width: 800px;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-visual {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  opacity: 0.4;
  max-width: 40%;
  height: auto;
}

@media (max-width: 768px) {
  .hero-fullscreen {
    min-height: 70vh;
  }

  .hero-visual {
    opacity: 0.2;
    max-width: 60%;
  }
}

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

/* Checklist Section */
.checklist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

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

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

.check-content h3 {
  margin-bottom: 0.5rem;
}

/* Card - K08: border 2px dashed */
.comparison-grid,
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

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

.comparison-header {
  margin-bottom: 1.5rem;
}

.comparison-header svg {
  color: var(--primary);
  margin-bottom: 1rem;
}

.comparison-header.before svg {
  color: #dc2626;
}

.comparison-header.after svg {
  color: var(--primary);
}

.comparison-list {
  list-style: none;
  text-align: left;
}

.comparison-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.comparison-list li:last-child {
  border-bottom: none;
}

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

/* Content Section */
.content-section,
.mission-section,
.final-section {
  background: #fff;
}

.content-section:nth-child(even),
.mission-section:nth-child(even) {
  background: var(--bg);
}

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

.value-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.value-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

/* Benefits Section */
.benefits-checklist {
  background: #fff;
  padding: 6rem 0;
}

.benefits-checklist.alt {
  background: var(--bg);
}

.benefit-card {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 1.75rem;
}

/* Methods Section */
.methods-section {
  background: #fff;
}

.methods-section.alt {
  background: var(--bg);
}

.method-checklist {
  display: grid;
  gap: 4rem;
  margin-top: 4rem;
}

.method-step {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.step-number {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 900;
  flex-shrink: 0;
}

.step-content {
  flex: 1;
}

.checklist-items {
  display: grid;
  gap: 1rem;
  margin-top: 1rem;
}

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

.check-item .check-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Care Section */
.care-checklist {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

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

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

/* Setting Section */
.setting-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 4rem;
  margin-top: 4rem;
}

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

/* Tips Section */
.tips-section {
  background: #fff;
}

.tips-section.alt {
  background: var(--bg);
}

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

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

.tip-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.tip-content h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

/* Bonus Tips */
.bonus-tips {
  background: #fff;
  padding: 6rem 0;
}

.bonus-list {
  display: grid;
  gap: 1rem;
  margin: 2rem 0;
}

.bonus-item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 1rem;
  background: var(--bg);
  border-radius: 0.5rem;
}

/* Contact Section */
.contact-section {
  background: #fff;
}

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

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

.info-card svg {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

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

.contact-desc {
  font-size: 0.9375rem;
  opacity: 0.8;
}

.contact-guidelines {
  margin-bottom: 4rem;
}

.guideline-checklist {
  display: grid;
  gap: 1rem;
  margin-top: 2rem;
}

.quick-links {
  margin-top: 4rem;
}

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

.quick-link-card {
  display: block;
  text-align: center;
  border: 2px dashed #9ca3af;
  border-radius: 0.75rem;
  padding: 2rem 1rem;
  text-decoration: none;
  transition: transform 0.2s, border-color 0.2s;
}

.quick-link-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

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

.quick-link-card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.quick-link-card p {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0;
}

/* Summary Section */
.summary-section,
.final-tips,
.cta-section {
  background: var(--bg);
  text-align: center;
}

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

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

.footer-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  font-weight: 600;
  font-size: 1.125rem;
}

.footer-brand svg {
  color: #fff;
}

footer p {
  margin: 0.5rem 0;
  opacity: 0.9;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
}

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

.footer-links a:hover {
  opacity: 0.7;
}

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

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

  .checklist-grid,
  .comparison-grid,
  .feature-grid,
  .value-checklist,
  .tips-checklist,
  .care-checklist,
  .setting-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .method-step {
    flex-direction: column;
    gap: 1rem;
  }
}