:root{--build-id:"e203d7ec-4550-4b00-83f0-1f8841ca1fb6";}
@charset "UTF-8";

/* ========================================
   CSS Reset & Base
   ======================================== */

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", "Malgun Gothic", "Noto Sans KR", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ========================================
   Typography - H18 Clamp Values
   ======================================== */

h1 {
  font-size: clamp(2.25rem, 4vw + 1rem, 4rem);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1.5rem;
  color: #0d0d0d;
}

h2 {
  font-size: clamp(1.6875rem, 3vw + 0.75rem, 3rem);
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: #0d0d0d;
}

h3 {
  font-size: clamp(1.265625rem, 2.25vw + 0.5625rem, 2.25rem);
  line-height: 1.4;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1a1a1a;
}

p {
  margin-bottom: 1rem;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease, opacity 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

a:focus {
  outline: 2px solid #4a5568;
  outline-offset: 2px;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ========================================
   Accessibility
   ======================================== */

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

/* ========================================
   Color System - C34
   ======================================== */

:root {
  --primary: #2c5f2d;
  --primary-dark: #1e4620;
  --primary-light: #3d7a3e;
  --secondary: #8b7355;
  --accent: #d4a574;
  --background: #fafaf8;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-light: #4a4a4a;
  --border: #e0ddd8;
  --shadow: rgba(44, 95, 45, 0.1);
}

/* ========================================
   Layout - L19
   ======================================== */

.section-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Header & Navigation - N05
   ======================================== */

.site-header {
  background-color: var(--surface);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px var(--shadow);
}

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

.logo a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
}

.logo svg {
  color: var(--primary);
}

.logo-text {
  font-size: 1.25rem;
}

.main-nav ul {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: var(--text);
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary);
  transition: width 0.3s ease;
}

.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after {
  width: 100%;
}

.main-nav a[aria-current="page"] {
  color: var(--primary);
  font-weight: 600;
}

@media (max-width: 768px) {
  .header-container {
    flex-direction: column;
    gap: 16px;
  }

  .main-nav ul {
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
  }
}

/* ========================================
   Buttons - B18
   ======================================== */

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background-color: var(--primary);
  color: #ffffff;
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px var(--shadow);
}

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

.btn-secondary:hover {
  background-color: var(--primary);
  color: #ffffff;
}

/* ========================================
   Cards - K18
   ======================================== */

.intro-card,
.value-card,
.contact-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 4px 12px var(--shadow);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.intro-card:hover,
.value-card:hover,
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow);
}

.card-icon,
.value-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 16px;
}

/* ========================================
   Sections - S01
   ======================================== */

section {
  padding: 80px 0;
}

.page-header {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-header h1 {
  color: #ffffff;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 1.125rem;
  opacity: 0.95;
  max-width: 700px;
  margin: 0 auto;
}

.hero-section {
  background: linear-gradient(135deg, var(--background) 0%, #ffffff 100%);
  padding: 100px 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content h1 {
  color: var(--primary);
  margin-bottom: 24px;
}

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

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

@media (max-width: 968px) {
  .hero-section {
    grid-template-columns: 1fr;
    padding: 60px 0;
  }

  .hero-visual svg {
    max-width: 100%;
    height: auto;
  }
}

.intro-section {
  background-color: var(--surface);
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
}

.services-section {
  background-color: var(--background);
}

.services-list {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  background-color: var(--surface);
  padding: 32px;
  border-radius: 12px;
  border-left: 4px solid var(--primary);
}

.service-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 60px;
}

.service-content h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.process-section {
  background-color: var(--surface);
}

.process-timeline {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

.timeline-marker {
  font-size: 1.5rem;
  color: var(--primary);
  min-width: 32px;
  margin-top: 4px;
}

.timeline-content h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
}

.cta-container h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.cta-container p {
  font-size: 1.125rem;
  margin-bottom: 32px;
  opacity: 0.95;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.values-section {
  background-color: var(--background);
}

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

.content-section {
  background-color: var(--surface);
}

.content-block {
  margin-bottom: 48px;
}

.content-block h2 {
  color: var(--primary);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.feature-detail {
  margin-bottom: 56px;
}

.feature-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.feature-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  min-width: 80px;
}

.feature-content p {
  margin-bottom: 20px;
}

.summary-section {
  background-color: var(--background);
  padding: 60px 0;
}

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

.summary-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background-color: var(--surface);
  padding: 24px;
  border-radius: 8px;
  border-left: 3px solid var(--primary);
}

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

.method-intro {
  background-color: var(--background);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 48px;
  border-left: 4px solid var(--primary);
}

.method-step {
  margin-bottom: 56px;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 24px;
}

.step-badge {
  background-color: var(--primary);
  color: #ffffff;
  padding: 8px 20px;
  border-radius: 24px;
  font-weight: 600;
  font-size: 0.875rem;
  white-space: nowrap;
}

.step-content h2 {
  color: var(--primary);
}

.method-list {
  list-style: disc;
  margin-left: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.method-list li {
  margin-bottom: 8px;
  padding-left: 8px;
}

.process-summary {
  background-color: var(--background);
  padding: 60px 0;
  text-align: center;
}

.process-summary h2 {
  margin-bottom: 24px;
}

.process-summary p {
  max-width: 800px;
  margin: 0 auto;
  font-size: 1.125rem;
  color: var(--text-light);
}

.faq-intro {
  background-color: var(--background);
  padding: 32px;
  border-radius: 12px;
  margin-bottom: 48px;
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.faq-item {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px;
  box-shadow: 0 2px 8px var(--shadow);
}

.faq-question {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--primary);
  margin-bottom: 16px;
  font-size: 1.25rem;
}

.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: var(--text);
}

.faq-marker {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--primary);
  min-width: 32px;
}

.faq-contact {
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 0;
}

.faq-contact h2 {
  color: #ffffff;
  margin-bottom: 16px;
}

.faq-contact p {
  margin-bottom: 32px;
  opacity: 0.95;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.contact-card {
  text-align: center;
}

.contact-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 24px;
}

.contact-icon svg {
  color: var(--primary);
}

.contact-card h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-detail {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 16px;
}

.contact-description {
  color: var(--text-light);
}

.contact-info-section {
  background-color: var(--background);
  padding: 48px;
  border-radius: 12px;
  margin-top: 48px;
  margin-bottom: 48px;
}

.contact-info-section h2 {
  text-align: center;
  color: var(--primary);
  margin-bottom: 32px;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-bottom: 24px;
}

.info-item {
  text-align: center;
  padding: 24px;
  background-color: var(--surface);
  border-radius: 8px;
}

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

.info-note {
  text-align: center;
  color: var(--text-light);
  font-size: 0.875rem;
  margin-top: 24px;
}

.contact-guidelines {
  margin-top: 48px;
  margin-bottom: 48px;
}

.contact-guidelines h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

.guidelines-content {
  background-color: var(--background);
  padding: 32px;
  border-radius: 12px;
}

.guidelines-list {
  list-style: disc;
  margin-left: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.guidelines-list li {
  margin-bottom: 8px;
  padding-left: 8px;
}

.contact-privacy {
  background-color: var(--background);
  padding: 32px;
  border-radius: 12px;
  margin-top: 48px;
}

.contact-privacy h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

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

.policy-section {
  margin-bottom: 48px;
}

.policy-section h2 {
  color: var(--primary);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--border);
}

.policy-section ul {
  list-style: disc;
  margin-left: 24px;
  margin-top: 16px;
  margin-bottom: 16px;
}

.policy-section li {
  margin-bottom: 12px;
  padding-left: 8px;
}

/* ========================================
   Footer
   ======================================== */

.site-footer {
  background-color: var(--primary-dark);
  color: #ffffff;
  padding: 48px 0 24px;
  margin-top: 80px;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-brand strong {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  opacity: 0.9;
  font-size: 0.875rem;
}

.footer-contact p {
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links {
  margin-bottom: 24px;
}

.footer-links ul {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  opacity: 0.9;
  font-size: 0.875rem;
}

.footer-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

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

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .section-container {
    padding: 0 16px;
  }

  .intro-grid,
  .values-grid,
  .contact-methods {
    grid-template-columns: 1fr;
  }

  .service-item {
    flex-direction: column;
  }

  .feature-header,
  .step-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-cta,
  .cta-buttons {
    flex-direction: column;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
}

@media (max-width: 480px) {
  html {
    font-size: 14px;
  }

  .header-container {
    padding: 12px 16px;
  }

  .main-nav ul {
    gap: 12px;
    font-size: 0.875rem;
  }

  .intro-card,
  .value-card,
  .contact-card {
    padding: 24px;
  }
}