:root{--build-id:"5f074886-f92d-479b-8d5a-4f70759cca15";}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #9333ea;
  --bg: #f5f3ff;
  --text: #4c1d95;
  --accent: #a78bfa;
  --heading: var(--text);
  --link: var(--text);
}

body {
  font-family: Roboto, system-ui, "Noto Sans KR", "Malgun Gothic", Arial, 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: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.5rem;
  cursor: pointer;
  position: absolute;
  left: 2rem;
}

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

nav a {
  color: var(--text);
  text-decoration: none;
  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: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    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: 1rem;
  }
}

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

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

/* Headings */
h1 {
  font-size: 3.875rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.9rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: 2.2rem;
  font-weight: 900;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--heading);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  h1 {
    font-size: 2.5rem;
  }
  h2 {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.5rem;
  }
}

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

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

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

.hero-visual {
  max-width: 600px;
  margin: 3rem auto 0;
}

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

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1.125rem 2.25rem;
  font-weight: 700;
  text-decoration: none;
  border-radius: 0.5rem 0 0.5rem 0;
  transition: all 0.3s;
}

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

.btn-primary:hover {
  background-color: var(--accent);
  transform: translateY(-2px);
}

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

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

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

.feature-card {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  transform: rotate(-1deg);
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: rotate(0deg);
}

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

/* Benefits Section */
.benefits-section {
  background-color: #fff;
}

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

.benefit-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.benefit-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--primary);
  opacity: 0.3;
  flex-shrink: 0;
}

.benefit-content h3 {
  margin-bottom: 0.75rem;
}

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

.step-card {
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.step-number {
  display: inline-block;
  background-color: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 0.25rem;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 1rem;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
}

.cta-section h2,
.cta-section p {
  color: #fff;
}

.cta-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

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

.cta-section .btn-primary {
  background-color: #fff;
  color: var(--primary);
}

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

.cta-section .btn-secondary {
  border-color: #fff;
  color: #fff;
}

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

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

.page-header p {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto;
}

/* Content Section */
.content-section {
  background-color: #fff;
}

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

.content-visual {
  max-width: 600px;
  margin: 3rem auto;
}

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

/* Info Cards */
.info-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.75rem;
  margin: 3rem 0;
}

.info-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 0.75rem;
}

.info-card h3 {
  margin-bottom: 1rem;
}

/* Benefit Grid */
.benefit-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.75rem;
  margin: 3rem 0;
}

.benefit-box {
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

/* Feature List */
.feature-list {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.feature-marker {
  font-size: 1.5rem;
  color: var(--primary);
  font-weight: 700;
  flex-shrink: 0;
}

.feature-text h3 {
  margin-bottom: 0.5rem;
}

/* Method Cards */
.method-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.75rem;
  margin: 3rem 0;
}

.method-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 0.75rem;
  border-left: 4px solid var(--primary);
}

.method-card h3 {
  margin-bottom: 1rem;
}

/* Process Timeline */
.process-timeline {
  margin: 3rem 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.timeline-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

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

.timeline-content h3 {
  margin-bottom: 0.75rem;
}

/* Quality Checklist */
.quality-checklist {
  background: var(--bg);
  padding: 2rem;
  border-radius: 0.75rem;
  margin: 3rem 0;
}

.quality-checklist h3 {
  margin-bottom: 1.5rem;
}

.quality-checklist ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quality-checklist li {
  padding-left: 1.5rem;
  position: relative;
}

.quality-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

/* Review Cards */
.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 3.75rem;
  margin: 3rem 0;
}

.review-card {
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.review-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--bg);
}

.review-header h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.review-author {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
}

.review-summary {
  background: var(--bg);
  padding: 3rem;
  border-radius: 0.75rem;
  margin-top: 4rem;
  text-align: center;
}

.review-summary h2 {
  margin-bottom: 1rem;
}

/* FAQ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 3rem 0;
}

.faq-item {
  background: #fff;
  padding: 2rem;
  border-radius: 0.75rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.faq-answer {
  line-height: 1.7;
}

.faq-contact {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  padding: 3rem;
  border-radius: 0.75rem;
  text-align: center;
  margin-top: 4rem;
}

.faq-contact h2,
.faq-contact p {
  color: #fff;
}

.faq-contact .btn-primary {
  background-color: #fff;
  color: var(--primary);
  margin-top: 1.5rem;
}

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

/* Contact */
.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3.75rem;
  margin: 3rem 0;
}

.contact-card {
  background: #fff;
  padding: 2.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  text-align: center;
}

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

.contact-card h3 {
  margin-bottom: 1rem;
}

.contact-card p {
  font-weight: 600;
  color: var(--primary);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-desc {
  font-weight: 400;
  color: var(--text);
  font-size: 1rem;
  margin-top: 1rem;
}

.contact-guide {
  margin: 4rem 0;
}

.contact-guide h2 {
  margin-bottom: 1.5rem;
}

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

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

.guide-number {
  width: 40px;
  height: 40px;
  background-color: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.guide-content h3 {
  margin-bottom: 0.5rem;
  font-size: 1.25rem;
}

.contact-cta {
  background: var(--bg);
  padding: 3rem;
  border-radius: 0.75rem;
  text-align: center;
  margin-top: 4rem;
}

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

/* Footer */
footer {
  background-color: var(--text);
  color: #fff;
  padding: 3rem 0 1.5rem;
}

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

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  margin-bottom: 3rem;
}

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

.footer-brand p {
  color: #ccc;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

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

.footer-links a {
  color: #ccc;
  text-decoration: none;
  transition: color 0.3s;
}

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

.footer-contact p {
  color: #ccc;
  margin-bottom: 0.5rem;
}

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

.footer-bottom p {
  color: #ccc;
  font-size: 0.875rem;
}

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

.footer-legal a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

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

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

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

.doc-container a {
  color: var(--primary);
  text-decoration: none;
  font-weight: 600;
}

.doc-container a:hover {
  text-decoration: underline;
}

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

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

  .feature-grid,
  .benefits-list,
  .process-steps,
  .info-cards,
  .benefit-grid,
  .method-cards,
  .review-cards,
  .contact-info {
    gap: 2rem;
  }

  .benefit-item,
  .timeline-item {
    flex-direction: column;
  }

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