:root{--build-id:"7de63ae1-facf-44b4-9052-6edbee6ddd1f";}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #8b5cf6;
  --bg: #faf5ff;
  --text: #3b0764;
  --accent: #a78bfa;
  --heading: var(--text);
  --link: var(--text);
}

body {
  font-family: system-ui, "Noto Sans KR", "Malgun Gothic", -apple-system, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background: 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;
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

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

/* Header */
header {
  background: rgba(250, 245, 255, 0.95);
  border-bottom: 1px solid rgba(139, 92, 246, 0.2);
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.nav-left ul,
.nav-right ul {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-left a,
.nav-right a {
  text-decoration: none;
  color: var(--link);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-left a:hover,
.nav-right a:hover {
  color: var(--primary);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--heading);
  font-weight: 700;
  font-size: 1.25rem;
}

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

.nav-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.cta-button {
  border: none;
  border-bottom: 3px solid var(--primary);
  padding: 0.75rem 0;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s;
}

.cta-button:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

/* Mobile Menu */
.menu-checkbox {
  display: none;
}

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

.mobile-nav {
  display: none;
}

@media (max-width: 768px) {
  .nav-left,
  .nav-right nav {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
    padding: 1rem 0;
  }

  .menu-checkbox:checked ~ .mobile-nav {
    display: block;
  }

  .mobile-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .mobile-nav a {
    display: block;
    padding: 1rem 2rem;
    text-decoration: none;
    color: var(--link);
    font-weight: 500;
    transition: background 0.3s;
  }

  .mobile-nav a:hover,
  .mobile-nav a[aria-current="page"] {
    background: rgba(139, 92, 246, 0.1);
    color: var(--primary);
  }
}

/* Typography */
h1 {
  font-size: clamp(2rem, 5vw, 3.125rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.34rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.76rem);
  font-weight: 600;
  line-height: 1.25;
  color: var(--heading);
  margin-bottom: 1rem;
}

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

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

/* Hero Section */
.hero-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
  padding: 8rem 0;
}

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

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

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-visual {
  margin-top: 4rem;
  display: flex;
  justify-content: center;
}

/* Buttons */
.btn-primary {
  border: none;
  border-bottom: 3px solid var(--primary);
  padding: 0.75rem 0;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  color: var(--primary);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

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

.btn-secondary {
  border: none;
  border-bottom: 3px solid var(--text);
  padding: 0.75rem 0;
  font-weight: 700;
  text-transform: uppercase;
  background: transparent;
  color: var(--text);
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-bottom-color: var(--primary);
  color: var(--primary);
}

/* Features Grid */
.features-section {
  background: #fff;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5rem;
  margin-top: 3rem;
}

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

.feature-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  color: var(--text);
  line-height: 1.65;
}

/* Process Section */
.process-section {
  background: rgba(139, 92, 246, 0.05);
}

.section-description {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 3rem;
  font-size: 1.125rem;
  line-height: 1.75;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 5rem;
  margin-top: 3rem;
}

.step-item {
  text-align: center;
}

.step-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

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

.step-item p {
  color: var(--text);
  line-height: 1.65;
}

/* Testimonials */
.testimonial-preview {
  background: #fff;
}

.testimonial-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 5rem;
  margin: 3rem 0;
}

.testimonial-card {
  border-radius: 0.5rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: #fff;
}

.quote-mark {
  font-size: 3rem;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.testimonial-text {
  line-height: 1.65;
  margin-bottom: 1rem;
  color: var(--text);
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary);
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.15) 0%, rgba(167, 139, 250, 0.1) 100%);
  text-align: center;
}

.cta-description {
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

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

/* Footer */
footer {
  background: rgba(139, 92, 246, 0.05);
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  padding: 4rem 0 2rem;
}

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

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

.footer-brand p {
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

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

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

.footer-contact p {
  margin-bottom: 0.5rem;
  color: var(--text);
}

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

.footer-legal a {
  text-decoration: none;
  color: var(--link);
  font-size: 0.875rem;
  transition: color 0.3s;
}

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

.footer-copyright {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  color: var(--text);
  font-size: 0.875rem;
}

/* Page Header */
.page-header {
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(167, 139, 250, 0.05) 100%);
  padding: 5rem 0 3rem;
  text-align: center;
}

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

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

.content-block {
  margin-bottom: 5rem;
}

.content-block p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

.content-block:last-child {
  margin-bottom: 0;
}

/* Value Cards */
.value-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 5rem;
  margin-top: 2rem;
}

.value-card {
  border-radius: 0.5rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: var(--bg);
}

.value-card h3 {
  margin-bottom: 0.75rem;
}

.value-card p {
  line-height: 1.65;
  color: var(--text);
}

/* Method Steps */
.method-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5rem;
  margin: 3rem 0;
}

.step-detail {
  text-align: center;
}

.step-icon {
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: center;
}

.step-detail h3 {
  margin-bottom: 0.75rem;
}

.step-detail p {
  line-height: 1.65;
  color: var(--text);
}

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

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

.benefit-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.benefit-card p {
  line-height: 1.65;
  color: var(--text);
}

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

.faq-item {
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 2px solid rgba(139, 92, 246, 0.2);
}

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

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

.faq-answer {
  line-height: 1.75;
  color: var(--text);
}

/* Testimonial Detailed */
.testimonial-detailed {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 5rem;
  margin-top: 3rem;
}

.testimonial-detail-card {
  border-radius: 0.5rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: #fff;
}

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

.testimonial-icon {
  color: #ffd700;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.testimonial-detail-card h3 {
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.testimonial-detail-card .testimonial-author {
  font-size: 0.875rem;
  color: var(--text);
  font-weight: 500;
}

.testimonial-content {
  line-height: 1.75;
  color: var(--text);
}

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

.contact-card {
  text-align: center;
  border-radius: 0.5rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: var(--bg);
}

.contact-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

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

.contact-card p {
  color: var(--text);
  margin-bottom: 0.5rem;
}

.contact-description {
  font-size: 0.9375rem;
  color: var(--text);
  opacity: 0.8;
}

/* Document Container */
.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.75;
  margin-bottom: 1.5rem;
}

.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: 4rem 0;
  }

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

  .features-grid,
  .process-steps,
  .testimonial-cards,
  .method-steps,
  .benefits-grid,
  .testimonial-detailed,
  .contact-info {
    gap: 3rem;
  }

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

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

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}