:root{--build-id:"38a61db9-061c-4fe9-ab87-9c273bdc4f67";}
/* ===========================
   카우모로70 - 메인 스타일시트
   변수: L03, C12, T15, B06, N01, K06, S05, H06, F1, CS06
   =========================== */

/* 색상 변수 (C12 - 티올 그린) */
:root {
  --primary: #0d9488;
  --bg: #ccfbf1;
  --text: #115e59;
  --accent: #14b8a6;
  --heading: #115e59;
  --link: #115e59;
  --white: #ffffff;
  --light-gray: #f0f0f0;
  --border: #d1d5db;
}

/* 폰트 (F1 - Apple Core) */
body {
  font-family: -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Segoe UI", 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 - clamp 반응형) */
h1 {
  font-size: clamp(2.5rem, 5vw, 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: clamp(1.75rem, 4vw, 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: clamp(1.25rem, 3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.015em;
  color: var(--heading);
  margin: 0 0 1rem 0;
}

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

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

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;
}

/* 컨테이너 (S05 - section: 7rem 0; container: 1500px; gap: 5rem) */
.container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 7rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
  .container {
    padding: 0 1.5rem;
  }
}

/* ===========================
   헤더 및 네비게이션 (N01)
   =========================== */
header {
  background-color: var(--white);
  border-bottom: 2px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

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

nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  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);
}

/* 햄버거 메뉴 (모바일) */
.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  background: none;
  border: none;
  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: 2px 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;
  }
}

/* ===========================
   히어로 섹션 (L03 - 중앙집중 히어로)
   =========================== */
.hero {
  background-color: var(--white);
  padding: 5rem 0;
}

.hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  text-align: center;
}

.hero-content {
  max-width: 800px;
}

.hero-content p {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.hero-visual {
  max-width: 500px;
}

@media (max-width: 768px) {
  .hero {
    padding: 3rem 0;
  }
  .hero-visual {
    max-width: 100%;
  }
}

/* ===========================
   CTA 버튼 (B06)
   =========================== */
.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-align: center;
  transition: all 0.3s ease;
}

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

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

/* ===========================
   섹션 스타일
   =========================== */
.intro,
.features,
.process,
.cta {
  background-color: var(--white);
}

.intro p,
.content-section p {
  margin-bottom: 1.5rem;
}

/* ===========================
   특징 그리드 (L03 - 리스트형)
   =========================== */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5rem;
  margin-top: 3rem;
}

.feature-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(13, 148, 136, 0.15);
}

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

/* ===========================
   타임라인 (L03 - 타임라인)
   =========================== */
.timeline {
  max-width: 900px;
  margin: 3rem auto 0;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 1.5rem;
  top: 3rem;
  width: 2px;
  height: calc(100% + 1rem);
  background-color: var(--border);
}

.timeline-marker {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-color: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

.timeline-content {
  flex: 1;
}

@media (max-width: 768px) {
  .timeline-item {
    gap: 1rem;
  }
  .timeline-marker {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
  }
}

/* ===========================
   CTA 섹션 (L03 - 사이드CTA)
   =========================== */
.cta {
  background: linear-gradient(135deg, var(--bg) 0%, var(--white) 100%);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

/* ===========================
   페이지 히어로
   =========================== */
.page-hero {
  background-color: var(--white);
  padding: 4rem 0;
  text-align: center;
  border-bottom: 2px solid var(--border);
}

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

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

.content-section article {
  margin-bottom: 3rem;
}

.visual-divider {
  margin: 4rem 0;
  text-align: center;
}

/* ===========================
   사례 카드 (CS06 - 사례형)
   =========================== */
.story-card {
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 2rem;
  margin-bottom: 2rem;
}

.story-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.5rem;
}

.story-label {
  background-color: var(--primary);
  color: var(--white);
  padding: 0.25rem 1rem;
  border-radius: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
}

.benefits-summary {
  margin-top: 4rem;
  padding: 3rem;
  background-color: var(--bg);
  border-radius: 1rem;
}

.summary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.summary-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

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

/* ===========================
   관리 팁
   =========================== */
.methods-tips {
  margin-top: 4rem;
  padding: 3rem;
  background-color: var(--bg);
  border-radius: 1rem;
}

.tips-visual {
  margin: 2rem 0;
}

.tips-list {
  list-style: none;
  padding: 0;
}

.tips-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

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

.tips-list li::before {
  content: "✓ ";
  color: var(--primary);
  font-weight: 700;
  margin-right: 0.5rem;
}

/* ===========================
   후기 그리드
   =========================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

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

.testimonial-header {
  margin-bottom: 1rem;
}

.testimonial-author {
  display: block;
  font-size: 0.875rem;
  color: var(--primary);
  font-weight: 600;
  margin-top: 0.5rem;
}

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

.faq-item {
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
}

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

.faq-answer p {
  margin: 0;
}

.faq-contact {
  text-align: center;
  margin-top: 4rem;
  padding: 2rem;
  background-color: var(--bg);
  border-radius: 1rem;
}

.faq-contact a {
  font-weight: 600;
  text-decoration: underline;
}

/* ===========================
   연락처
   =========================== */
.contact-content {
  max-width: 900px;
  margin: 0 auto;
}

.contact-info {
  margin-bottom: 4rem;
}

.contact-methods {
  margin-top: 3rem;
}

.contact-method {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background-color: var(--bg);
  border: 1px solid var(--border);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

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

.contact-note {
  font-size: 0.875rem;
  color: var(--text);
  margin-top: 0.5rem;
  opacity: 0.8;
}

.contact-guidelines {
  padding: 3rem;
  background-color: var(--bg);
  border-radius: 1rem;
  margin-bottom: 3rem;
}

.guidelines-list {
  margin-top: 1.5rem;
  padding-left: 1.5rem;
}

.guidelines-list li {
  margin-bottom: 0.75rem;
}

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

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

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

.footer-info {
  margin-bottom: 2rem;
}

.footer-info p {
  margin: 0.5rem 0;
}

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

.footer-links a {
  color: var(--white);
  font-size: 0.875rem;
  text-decoration: underline;
}

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

.footer-copyright {
  font-size: 0.875rem;
  opacity: 0.8;
  margin-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 1rem;
}

/* ===========================
   Privacy/Terms 페이지
   =========================== */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 5rem 2rem;
  text-align: center;
}

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

.doc-container p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.doc-container a {
  font-weight: 600;
  text-decoration: underline;
}

/* ===========================
   반응형 추가
   =========================== */
@media (max-width: 768px) {
  .feature-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

  .contact-method {
    flex-direction: column;
    text-align: center;
  }
}