:root{--build-id:"814e3a44-2888-4a8a-9548-74a0c3954f67";}
/* 변수 정의 - C22 색상 팔레트 */
:root {
  --primary: #d97706;
  --bg: #fef3c7;
  --text: #92400e;
  --accent: #f59e0b;
  --heading: var(--text);
  --link: var(--text);
}

/* 리셋 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* F8 폰트 스택 */
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: 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;
}

/* 포커스 스타일 */
a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* N15 네비게이션: 상단 스크롤 + 좌측 로고 + 우측 메뉴 (버튼형) + 햄버거 */
header {
  background-color: var(--primary);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
}

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

nav a {
  display: block;
  padding: 0.75rem 1.5rem;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  background-color: rgba(255, 255, 255, 0.15);
  border-radius: 0.5rem;
  transition: background-color 0.2s;
}

nav a:hover,
nav a[aria-current="page"] {
  background-color: rgba(255, 255, 255, 0.25);
}

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--primary);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

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

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

  nav a {
    width: 100%;
    text-align: center;
  }
}

/* S11 여백 시스템: section: 5.75rem 0; container: 1350px; gap: 3.75rem; */
section {
  padding: 5.75rem 0;
}

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

/* H12 헤딩: font-size: 4.25rem; font-weight: 900; line-height: 1; letter-spacing: -0.035em; */
h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(2rem, 4vw, 3.39rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--heading);
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.71rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.035em;
  color: var(--heading);
  margin-bottom: 1rem;
}

/* L06 레이아웃: 미니멀 히어로 → 5열 아이콘 → 1열 텍스트 → 버튼그룹 */

/* 히어로 섹션 */
.hero {
  background-color: #fff;
  text-align: center;
  padding: 6rem 0;
}

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

.hero-desc {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* B12 버튼: border-radius: 1rem; padding: 1.25rem 2.5rem; font-weight: 600; box-shadow: 0 2px 8px rgba(0,0,0,0.1); */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1.25rem 2.5rem;
  border-radius: 1rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, box-shadow 0.2s;
}

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

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

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

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

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

.icon-svg {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
}

.icon-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.icon-item p {
  font-size: 0.95rem;
  line-height: 1.6;
}

/* 1열 텍스트 콘텐츠 */
.text-content {
  max-width: 900px;
  margin: 0 auto;
}

.text-content p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.section-lead {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2.5rem;
  text-align: center;
}

/* K12 카드: background: #F3F4F6; border-radius: 0; padding: 2rem; */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.75rem;
  margin-top: 3rem;
}

.card {
  background: #f3f4f6;
  border-radius: 0;
  padding: 2rem;
}

.card h3 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.card p {
  line-height: 1.65;
}

.card-number {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--primary);
  background-color: rgba(217, 119, 6, 0.1);
  padding: 0.25rem 0.75rem;
  border-radius: 0.25rem;
  margin-bottom: 1rem;
}

/* 페이지 히어로 */
.page-hero {
  background-color: #fff;
  text-align: center;
  padding: 4rem 0 3rem;
}

.page-lead {
  font-size: 1.125rem;
  margin-top: 1rem;
}

/* 소개 섹션 */
.intro-section {
  background-color: #fff;
}

.intro-section h2 {
  text-align: center;
}

/* 특징 섹션 */
.features-section {
  background-color: #fffbeb;
}

.features-section h2 {
  text-align: center;
}

/* 콘텐츠 섹션 */
.content-section {
  background-color: #fff;
}

.content-section h2 {
  text-align: center;
}

/* CTA 섹션 */
.cta-section {
  background-color: var(--primary);
  color: #fff;
  text-align: center;
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-desc {
  font-size: 1.125rem;
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.cta-section .btn-secondary {
  background-color: transparent;
  color: #fff;
  border: 2px solid #fff;
}

/* 후기 섹션 */
.review-header {
  margin-bottom: 1rem;
}

.review-header h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--accent);
}

.reviewer {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--primary);
}

/* 연락처 섹션 */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.75rem;
  margin-top: 3rem;
}

.contact-card {
  background: #fff;
  padding: 3rem 2rem;
  text-align: center;
  border-radius: 1rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
}

.contact-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-card p {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.contact-desc {
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  color: var(--text);
  opacity: 0.7;
}

/* FAQ 리스트 */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  padding: 2rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid var(--primary);
}

.faq-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.faq-item p {
  line-height: 1.65;
}

/* 푸터 */
footer {
  background-color: var(--primary);
  color: #fff;
  padding: 4rem 0 2rem;
}

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

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

.footer-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #fff;
}

.footer-section p,
.footer-section a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  line-height: 1.75;
}

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

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

.footer-section a:hover {
  color: #fff;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: #fff;
}

/* 문서 컨테이너 (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 {
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.doc-container a {
  color: var(--primary);
  font-weight: 600;
}

/* 반응형 */
@media (max-width: 768px) {
  section {
    padding: 3rem 0;
  }

  .hero {
    padding: 4rem 0;
  }

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

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

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

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}