:root{--build-id:"5a69accd-19ea-4eca-8c9e-837c3a0344dc";}
/* 전역 CSS 변수 */
:root {
  --primary: #ea580c;
  --bg: #ffedd5;
  --text: #7c2d12;
  --accent: #f97316;
  --heading: var(--text);
  --link: var(--text);
  --radius: 0.5rem;
}

/* 리셋 및 기본 스타일 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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-color: var(--bg);
}

/* 타이포그래피 */
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);
  margin-bottom: 1rem;
}

h1 {
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
}

h2 {
  font-size: 2rem;
  font-weight: 600;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  opacity: 0.7;
}

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

/* 헤더 및 네비게이션 (N07: 상단 스크롤 + 좌측 로고 + 우측 메뉴 드롭다운) */
header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

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

.menu-checkbox {
  display: none;
}

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

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

nav a {
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s ease;
}

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

/* 모바일 네비게이션 */
@media (max-width: 768px) {
  .menu-toggle {
    display: block;
  }

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

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

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

  nav li {
    border-bottom: 1px solid #f0f0f0;
  }

  nav a {
    display: block;
    padding: 1rem 0;
  }
}

/* 메인 컨테이너 */
main {
  max-width: 1150px;
  margin: 0 auto;
  padding: 4.25rem 2rem;
}

section {
  margin-bottom: 4.25rem;
}

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

/* 버튼 스타일 (B14: skew transform) */
.btn {
  display: inline-block;
  border-radius: 0.25rem;
  padding: 1rem 2rem;
  font-weight: 600;
  transform: skew(-5deg);
  background-color: var(--primary);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
  transform: skew(-5deg) translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}

/* 카드 스타일 (K16: 비대칭 라운드 + 테두리 + 회전) */
.card {
  border-radius: 0.75rem;
  border: 1px solid var(--primary);
  padding: 1.5rem;
  transform: rotate(-1deg);
  background-color: #fff;
  margin-bottom: 2.75rem;
  transition: transform 0.3s ease;
}

.card:hover {
  transform: rotate(0deg);
}

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

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

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

/* 히어로 섹션 */
.hero {
  text-align: center;
  padding: 5rem 2rem;
  background: linear-gradient(135deg, #fff 0%, var(--bg) 100%);
  border-radius: var(--radius);
  margin-bottom: 4.25rem;
}

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

.hero p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
}

/* 섹션 헤딩 */
.section-heading {
  text-align: center;
  margin-bottom: 3rem;
}

/* 리스트 스타일 */
.feature-list {
  list-style: none;
  padding: 0;
}

.feature-list li {
  padding: 1rem 0;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

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

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

/* FAQ 스타일 */
.faq-item {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background-color: #fff;
  border-radius: var(--radius);
  border-left: 4px solid var(--primary);
}

.faq-question {
  font-weight: 600;
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  color: var(--heading);
}

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

/* 푸터 */
footer {
  background-color: #fff;
  border-top: 1px solid #e0e0e0;
  padding: 3rem 2rem 2rem;
  margin-top: 5rem;
}

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

.footer-links {
  margin-bottom: 1.5rem;
}

.footer-links a {
  margin: 0 1rem;
  font-size: 0.875rem;
}

.footer-contact {
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}

.footer-copyright {
  font-size: 0.875rem;
  color: #666;
}

/* SVG 스타일 */
.svg-icon {
  width: 100%;
  height: auto;
  max-width: 200px;
  margin: 2rem auto;
  display: block;
}

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

/* 반응형 */
@media (max-width: 768px) {
  h1 {
    font-size: 2rem;
  }

  h2 {
    font-size: 1.5rem;
  }

  main {
    padding: 2rem 1rem;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .grid {
    gap: 1.5rem;
  }
}