:root{--build-id:"eb5de298-a7ed-4fef-ad01-227a52604118";}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #292524;
  --bg: #f5f5f4;
  --text: #1c1917;
  --accent: #78716c;
  --heading: var(--text);
  --link: var(--text);
}

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

/* Focus Styles */
a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* Header & Navigation */
header {
  background-color: var(--bg);
  border-bottom: 1px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.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.5rem;
  cursor: pointer;
  color: var(--primary);
}

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

nav a {
  color: var(--link);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  transition: background-color 0.2s, color 0.2s;
}

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

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--bg);
    border-bottom: 1px solid var(--accent);
    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 {
    display: block;
    padding: 0.75rem 1rem;
  }
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Sections */
section {
  padding: 6rem 0;
}

/* Typography */
h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  border-bottom: 4px solid var(--primary);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  color: var(--heading);
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.44rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1.5rem;
  color: var(--heading);
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.83rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-bottom: 1rem;
  color: var(--heading);
}

p {
  margin-bottom: 1.5rem;
}

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, var(--bg) 0%, #e7e5e4 100%);
  padding: 8rem 0;
}

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

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

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  margin-top: 3rem;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.625rem 1.5rem;
  border-radius: 9999px;
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.025em;
  text-decoration: none;
  transition: all 0.2s;
}

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

.btn-primary:hover {
  background-color: var(--accent);
}

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

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

/* Grid */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-top: 3rem;
}

/* Feature Card */
.feature-card {
  border: 1px solid #f3f4f6;
  border-radius: 0.5rem;
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}

.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

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

/* Process Section */
.process-map {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 4rem;
  margin-top: 3rem;
}

.process-step {
  position: relative;
}

.step-number {
  width: 3rem;
  height: 3rem;
  background-color: var(--primary);
  color: var(--bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

/* Benefits List */
.benefits-list {
  list-style: none;
  margin-top: 2rem;
}

.benefits-list li {
  display: flex;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: flex-start;
}

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

.benefits-list strong {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--heading);
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, var(--bg) 0%, #e7e5e4 100%);
  padding: 4rem 0 3rem;
  text-align: center;
}

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

/* Content Section */
.content-section {
  padding: 4rem 0;
}

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

/* FAQ */
.faq-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e7e5e4;
}

.faq-item:last-child {
  border-bottom: none;
}

/* Contact */
.contact-info {
  max-width: 800px;
  margin: 0 auto;
}

.contact-details {
  margin: 3rem 0;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding: 2rem;
  background-color: #fafaf9;
  border-radius: 0.5rem;
}

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

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

.info-list {
  list-style: none;
  margin: 1.5rem 0;
}

.info-list li {
  padding: 0.5rem 0;
  padding-left: 1.5rem;
  position: relative;
}

.info-list li:before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #e7e5e4 0%, var(--bg) 100%);
  text-align: center;
}

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

.cta-bottom {
  text-align: center;
  margin-top: 3rem;
}

.cta-box {
  text-align: center;
  margin: 2rem 0;
}

/* Visual Section */
.visual-section {
  padding: 3rem 0;
  text-align: center;
}

.visual-section svg {
  max-width: 600px;
  width: 100%;
  height: auto;
}

/* Footer */
footer {
  background-color: var(--primary);
  color: var(--bg);
  padding: 3rem 0 2rem;
  margin-top: 4rem;
}

.footer-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

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

.footer-links,
.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a,
.footer-legal a {
  color: var(--bg);
  text-decoration: none;
  font-size: 0.875rem;
}

.footer-links a:hover,
.footer-legal a:hover {
  text-decoration: underline;
}

.footer-contact p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}

/* Document Container */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

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

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

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

/* Responsive */
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }

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

  .grid-4,
  .process-map {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

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

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

  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
}