:root{--build-id:"fb807b8f-f0bb-4dd9-bf4f-16646b0c580c";}
/* 기본 리셋 */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* CSS 변수 - C22 앰버/골드 팔레트 */
:root {
  --primary: #d97706;
  --bg: #fef3c7;
  --text: #92400e;
  --accent: #f59e0b;
  --heading: #92400e;
  --link: #92400e;
}

/* F8: Neutral Fallback 폰트 스택 */
body {
  font-family: system-ui, "Helvetica Neue", Arial, "Noto Sans KR", "Malgun Gothic", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0;
  background: var(--bg);
  color: var(--text);
}

/* H12 헤딩 스타일 - clamp로 반응형 */
h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--heading);
}

h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--heading);
}

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

/* 링크 스타일 */
a {
  color: var(--link);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.7;
}

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

/* N15: 상단 스크롤 + 좌측 로고 + 우측 메뉴 (버튼형) + 햄버거 */
header {
  background: rgba(254, 243, 199, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

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

.menu-checkbox {
  display: none;
}

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

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

nav a {
  display: inline-block;
  padding: 0.625rem 1.25rem;
  border-radius: 0.5rem;
  background: var(--primary);
  color: white;
  font-weight: 600;
  transition: all 0.2s;
}

nav a:hover,
nav a[aria-current="page"] {
  background: var(--accent);
  transform: translateY(-2px);
}

/* 모바일 메뉴 */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(254, 243, 199, 0.98);
    border-bottom: 2px solid var(--accent);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

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

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

  nav a {
    display: block;
    text-align: center;
  }
}

/* S11: 섹션 여백 */
section {
  padding: 5.75rem 2rem;
}

.container {
  max-width: 1350px;
  margin: 0 auto;
}

/* B12: 버튼 스타일 */
.btn {
  display: inline-block;
  border-radius: 1rem;
  padding: 1.25rem 2.5rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  background: var(--primary);
  color: white;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 1;
}

.btn-secondary {
  background: var(--accent);
}

/* K12: 카드 스타일 */
.card {
  background: #f3f4f6;
  border-radius: 0;
  padding: 2rem;
  margin-bottom: 3.75rem;
}

/* L06: 레이아웃 구조 */
.hero {
  text-align: center;
  padding: 8rem 2rem 5rem;
  background: linear-gradient(to bottom, rgba(254, 243, 199, 0.5), var(--bg));
}

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

.hero p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* 5열 아이콘 그리드 */
.icon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 3.75rem;
  margin-top: 3rem;
}

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

.icon-item .icon {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--primary);
}

/* 1열 텍스트 레이아웃 */
.text-section {
  max-width: 900px;
  margin: 0 auto;
}

.text-section p {
  margin-bottom: 1.5rem;
}

/* 버튼 그룹 */
.button-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 3rem;
}

/* Footer */
footer {
  background: #92400e;
  color: white;
  padding: 3rem 2rem 2rem;
  margin-top: 5.75rem;
}

.footer-container {
  max-width: 1350px;
  margin: 0 auto;
  text-align: center;
}

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

.footer-links a {
  color: white;
  font-weight: 600;
}

.footer-contact {
  margin: 2rem 0;
  line-height: 1.8;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  flex-wrap: wrap;
}

.footer-legal a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.875rem;
}

/* 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) {
  section {
    padding: 3rem 1.5rem;
  }

  .hero {
    padding: 5rem 1.5rem 3rem;
  }

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

  .button-group,
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    padding: 1rem 2rem;
  }
}

/* SVG 스타일 */
svg {
  max-width: 100%;
  height: auto;
}