:root{--build-id:"6c476262-badb-4881-9132-2c0310e38954";}
/* 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-color: var(--bg);
}

/* 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.344rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

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

p {
  margin-bottom: 1rem;
}

a {
  color: var(--link);
  text-decoration: none;
  transition: opacity 0.2s;
}

a:hover {
  opacity: 0.8;
}

/* 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 */
header {
  background-color: rgba(250, 245, 255, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
}

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

.nav-left {
  flex: 1;
}

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

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

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

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

header nav a {
  font-weight: 500;
  position: relative;
}

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

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

.cta-button:hover {
  opacity: 1;
  border-bottom-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;
  }

  .nav-right {
    gap: 1rem;
  }

  .menu-toggle {
    display: block;
  }

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

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

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

  .mobile-nav a {
    display: block;
    padding: 0.5rem 0;
    font-weight: 500;
  }
}

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

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

.page-header {
  padding: 5rem 0 3rem;
  text-align: center;
}

.page-description {
  font-size: 1.125rem;
  color: var(--text);
  opacity: 0.8;
  max-width: 700px;
  margin: 0 auto;
}

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

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

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

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

.hero-visual {
  margin-top: 4rem;
  text-align: center;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  border: none;
  border-bottom: 3px solid;
  padding: 0.75rem 0;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  min-width: 150px;
  text-align: center;
}

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

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

.btn-primary:hover,
.btn-secondary:hover {
  opacity: 0.8;
}

/* Features Grid */
.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: 1.5rem;
}

/* Case Section */
.case-section {
  background-color: rgba(139, 92, 246, 0.03);
}

.section-intro {
  font-size: 1.125rem;
  max-width: 900px;
  margin: 0 auto 3rem;
  text-align: center;
  line-height: 1.7;
}

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

.case-item {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
}

/* Benefits Highlight */
.benefits-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.benefit-visual {
  text-align: center;
}

@media (max-width: 768px) {
  .benefits-content {
    grid-template-columns: 1fr;
  }
}

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

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

/* Content Section */
.content-section {
  max-width: 900px;
  margin: 0 auto;
}

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

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

/* Mission Section */
.mission-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 3rem;
}

@media (max-width: 768px) {
  .mission-content {
    grid-template-columns: 1fr;
  }
}

/* Quality Section */
.quality-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5rem;
  margin-top: 3rem;
}

.quality-item {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
}

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

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

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

.health-item {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
}

/* Methods List */
.methods-list {
  display: grid;
  gap: 5rem;
  margin-top: 3rem;
}

.method-item {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
}

/* Sizing Tips */
.sizing-tips {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5rem;
  margin-top: 3rem;
}

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

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

.care-step {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
}

/* Replacement Signs */
.replacement-signs {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5rem;
  margin-top: 3rem;
}

.sign-item {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
}

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

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

.testimonial-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid rgba(139, 92, 246, 0.1);
}

.testimonial-header strong {
  display: block;
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.25rem;
}

.testimonial-header span {
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.7;
}

/* Summary Points */
.summary-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5rem;
  margin-top: 3rem;
}

.summary-item {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
}

/* FAQ */
.faq-list {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 5rem;
}

.faq-item {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
}

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

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

/* Contact Section */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  margin-top: 3rem;
}

.contact-details {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

.contact-item strong {
  display: block;
  font-size: 1.125rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr;
  }
}

/* Inquiry Guide */
.guide-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 5rem;
  margin-top: 3rem;
}

.guide-item {
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: white;
  border-radius: 0.5rem;
}

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

.footer-container {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 2fr 1fr;
  gap: 3rem;
  align-items: start;
}

.footer-brand strong {
  display: block;
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

footer nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

footer nav a {
  font-size: 0.875rem;
  opacity: 0.8;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: flex-end;
}

.footer-legal a {
  font-size: 0.875rem;
  opacity: 0.7;
}

@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  footer nav ul {
    justify-content: center;
  }

  .footer-legal {
    align-items: center;
  }
}

/* Doc 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;
}