:root{--build-id:"af030dc4-a1f6-43cd-a701-2bc5c0f9e0fc";}
@charset "UTF-8";

/* ========================================
   변수 설정
   C10: 그린 계열
   ======================================== */
:root {
  --primary: #059669;
  --bg: #ecfdf5;
  --text: #065f46;
  --accent: #10b981;
  --heading: #065f46;
  --link: #065f46;
  --border: #d1d5db;
  --white: #ffffff;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
}

/* ========================================
   F5 폰트 스택 (Android Core)
   ======================================== */
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);
  margin: 0;
  padding: 0;
}

/* ========================================
   H06 헤딩 스타일
   font-size: 3.75rem; font-weight: 800; line-height: 1.1; letter-spacing: -0.025em; text-transform: capitalize;
   ======================================== */
h1 {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-transform: capitalize;
  color: var(--heading);
  margin: 0 0 1.5rem 0;
}

h2 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin: 0 0 1.25rem 0;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin: 0 0 1rem 0;
}

/* ========================================
   S05 여백 시스템
   section: 7rem 0; container: 1500px; gap: 5rem;
   ======================================== */
section {
  padding: 7rem 0;
}

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

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

/* ========================================
   N09 네비게이션
   상단 투명 + 좌측 로고 + 중앙 검색 + 우측 메뉴 + 햄버거
   ======================================== */
header {
  background-color: transparent;
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(10px);
  background-color: rgba(236, 253, 245, 0.9);
  border-bottom: 1px solid var(--border);
}

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

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

.menu-checkbox {
  display: none;
}

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

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2.5rem;
}

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

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

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

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

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

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

/* ========================================
   B06 버튼 스타일
   border-radius: 0; padding: 1rem 2.5rem; font-weight: 600; border: 3px solid;
   ======================================== */
.cta-button {
  display: inline-block;
  border-radius: 0;
  padding: 1rem 2.5rem;
  font-weight: 600;
  border: 3px solid var(--primary);
  background-color: var(--primary);
  color: var(--white);
  text-decoration: none;
  transition: all 0.3s;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cta-button:hover {
  background-color: transparent;
  color: var(--primary);
}

/* ========================================
   히어로 섹션 (L03: 중앙집중)
   ======================================== */
.hero {
  background-color: var(--white);
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
}

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

.hero p {
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  color: var(--text);
}

/* ========================================
   소개 섹션
   ======================================== */
.intro {
  background-color: var(--bg);
}

.intro h2 {
  text-align: center;
  margin-bottom: 2rem;
}

.intro p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ========================================
   특징 섹션 (리스트형)
   ======================================== */
.features {
  background-color: var(--white);
}

.features h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.feature-list li {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

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

.feature-content h3 {
  margin-bottom: 0.75rem;
  color: var(--primary);
}

.feature-content p {
  line-height: 1.7;
  font-size: 1.0625rem;
}

/* ========================================
   K06 카드 스타일
   border: 1px solid #D1D5DB; border-radius: 1rem; padding: 1.5rem;
   ======================================== */
.case-study {
  background-color: var(--bg);
}

.case-study h2 {
  text-align: center;
  margin-bottom: 3rem;
}

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

.case-card {
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  background-color: var(--white);
}

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

.case-card p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

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

.cta-section h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-section p {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.cta-section .cta-button {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--white);
}

.cta-section .cta-button:hover {
  background-color: transparent;
  color: var(--white);
}

/* ========================================
   페이지 히어로
   ======================================== */
.page-hero {
  background-color: var(--white);
  text-align: center;
  padding: 5rem 0 3rem;
}

.page-hero h1 {
  margin-bottom: 1rem;
}

.page-hero p {
  font-size: 1.125rem;
  color: var(--text);
}

/* ========================================
   콘텐츠 섹션
   ======================================== */
.content-section {
  background-color: var(--bg);
}

.content-section h2 {
  margin-top: 3rem;
  margin-bottom: 1.5rem;
}

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p {
  margin-bottom: 1.5rem;
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ========================================
   후기 카드
   ======================================== */
.testimonial-card {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.testimonial-card h2 {
  color: var(--primary);
  margin-bottom: 0.75rem;
  font-size: 1.75rem;
}

.testimonial-card .author {
  font-size: 0.9375rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 1rem;
}

.testimonial-card p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ========================================
   연락처 정보
   ======================================== */
.contact-info {
  margin-bottom: 4rem;
}

.contact-info h2 {
  text-align: center;
  margin-bottom: 3rem;
}

.info-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin-bottom: 2.5rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

.info-item .icon {
  font-size: 2rem;
  color: var(--primary);
}

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

.info-item p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.contact-cta {
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  text-align: center;
}

.contact-cta h2 {
  margin-bottom: 1rem;
}

.contact-cta p {
  font-size: 1.0625rem;
  line-height: 1.7;
}

/* ========================================
   푸터
   ======================================== */
footer {
  background-color: var(--white);
  border-top: 1px solid var(--border);
  padding: 3rem 0 2rem;
}

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

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

.footer-brand .brand {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: var(--text);
  font-size: 0.9375rem;
}

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

.footer-links a {
  color: var(--link);
  text-decoration: none;
  font-size: 0.9375rem;
}

.footer-links a:hover {
  color: var(--primary);
}

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

.footer-contact p {
  margin: 0.25rem 0;
  font-size: 0.9375rem;
  color: var(--text);
}

.footer-copy {
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.7;
  margin-top: 1rem;
}

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

.doc-container h1 {
  margin-bottom: 1.5rem;
}

.doc-container p {
  margin-bottom: 1rem;
  line-height: 1.7;
}

.doc-container a {
  color: var(--primary);
  text-decoration: underline;
}

/* ========================================
   접근성 포커스 스타일
   ======================================== */
a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* ========================================
   반응형 (모바일)
   ======================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.25rem;
  }

  section {
    padding: 4rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero-content,
  .intro,
  .features {
    text-align: left;
  }

  .feature-list li {
    flex-direction: column;
    gap: 1rem;
  }

  .case-grid {
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }
}