:root{--build-id:"89a396fb-080e-44bb-9475-34f644d15b43";}
@charset "UTF-8";

/* ========================================
   CSS 변수 (C10 색상 팔레트)
   ======================================== */
:root {
  --primary: #059669;
  --bg: #ecfdf5;
  --text: #065f46;
  --accent: #10b981;
  --heading: var(--text);
  --link: var(--text);
  --border: #d1d5db;
  --white: #ffffff;
  --light-gray: #f9fafb;
}

/* ========================================
   기본 리셋 및 타이포그래피 (F5, H06)
   ======================================== */
* {
  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 {
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-transform: capitalize;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

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

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

h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

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

a:hover {
  color: var(--accent);
}

a:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

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

/* ========================================
   컨테이너 (S09)
   ======================================== */
.container {
  max-width: 1450px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 6.5rem 0;
}

/* ========================================
   헤더 및 네비게이션 (N09)
   ======================================== */
header {
  background: rgba(236, 253, 245, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
}

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

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

.logo:hover {
  color: var(--accent);
}

nav ul {
  display: flex;
  list-style: none;
  gap: 2.5rem;
  align-items: center;
}

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

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

.menu-checkbox {
  display: none;
}

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

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

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

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

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

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

  nav a {
    display: block;
    padding: 1rem 2rem;
    border-bottom: none;
  }

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

/* ========================================
   히어로 섹션 (L23)
   ======================================== */
.hero-section {
  background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
  padding: 8rem 0;
}

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

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

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

.hero-image svg {
  width: 100%;
  height: auto;
  max-width: 400px;
}

@media (max-width: 968px) {
  .hero-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .hero-image {
    text-align: center;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }
}

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

.cta-button:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

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

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

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

/* ========================================
   리스트 섹션
   ======================================== */
.list-section {
  background: var(--white);
}

.list-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.5rem;
  margin-top: 3rem;
}

.list-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

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

.list-item h3 {
  margin-bottom: 0.75rem;
}

@media (max-width: 968px) {
  .list-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ========================================
   비교 섹션
   ======================================== */
.comparison-section {
  background: var(--bg);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

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

.comparison-card h3 {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
}

.comparison-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.comparison-list li {
  padding-left: 0.5rem;
}

.comparison-note {
  margin-top: 2rem;
  text-align: center;
  font-style: italic;
  color: var(--text);
}

@media (max-width: 968px) {
  .comparison-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   CTA 섹션
   ======================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
}

.cta-section .container {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4.5rem;
  align-items: center;
}

.cta-section h2 {
  color: var(--white);
}

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

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

.cta-section .cta-button:hover {
  background: var(--bg);
  border-color: var(--bg);
}

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

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

.cta-visual svg {
  width: 100%;
  height: auto;
  max-width: 300px;
}

@media (max-width: 968px) {
  .cta-section .container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .cta-visual {
    text-align: center;
  }
}

/* ========================================
   정보 섹션
   ======================================== */
.info-section {
  background: var(--white);
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.info-card {
  text-align: center;
  padding: 2rem;
  background: var(--bg);
  border-radius: 1rem;
  transition: transform 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
}

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

@media (max-width: 968px) {
  .info-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   페이지 헤더
   ======================================== */
.page-header {
  background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
  padding: 5rem 0 3rem;
  text-align: center;
}

.page-subtitle {
  font-size: 1.25rem;
  color: var(--text);
  margin-top: 1rem;
}

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

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

.story-content,
.benefit-content,
.method-content,
.process-content,
.mission-content {
  margin-top: 2rem;
  max-width: 900px;
}

.story-content p,
.benefit-content p,
.method-content p,
.process-content p,
.mission-content p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

/* ========================================
   가치 섹션
   ======================================== */
.values-section {
  background: var(--bg);
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: center;
}

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

@media (max-width: 968px) {
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   팁 섹션
   ======================================== */
.tips-section {
  background: var(--bg);
}

.tips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
}

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

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

@media (max-width: 968px) {
  .tips-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* ========================================
   후기 섹션
   ======================================== */
.testimonial-section {
  background: var(--white);
}

.testimonial-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 3rem;
}

.testimonial-header {
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--primary);
}

.testimonial-author {
  color: var(--accent);
  font-weight: 500;
  margin-top: 0.5rem;
}

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

/* ========================================
   연락처 섹션
   ======================================== */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.5rem;
  margin-top: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

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

.contact-message {
  background: var(--bg);
  padding: 2rem;
  border-radius: 1rem;
}

.contact-visual {
  margin-top: 2rem;
  text-align: center;
}

.contact-visual svg {
  width: 100%;
  max-width: 300px;
  height: auto;
}

@media (max-width: 968px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

/* ========================================
   FAQ 섹션
   ======================================== */
.faq-section {
  background: var(--bg);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 3rem;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
}

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

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

/* ========================================
   푸터
   ======================================== */
footer {
  background: var(--text);
  color: var(--white);
  padding: 4rem 0 2rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-brand h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.8);
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.8);
  transition: color 0.3s ease;
}

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

.footer-contact p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.5rem;
}

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

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

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

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

.footer-legal a:hover {
  color: var(--white);
}

@media (max-width: 968px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

/* ========================================
   반응형 타이포그래피
   ======================================== */
@media (max-width: 768px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.75rem;
  }

  h3 {
    font-size: 1.375rem;
  }

  section {
    padding: 4rem 0;
  }

  .hero-section {
    padding: 5rem 0;
  }
}