:root{--build-id:"d946e704-bd41-41fc-990c-5cda8393538b";}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #9333ea;
  --bg: #faf5ff;
  --text: #581c87;
  --accent: #a855f7;
  --heading: var(--text);
  --link: var(--text);
  --border: #e9d5ff;
  --card-bg: #ffffff;
  --footer-bg: #f3e8ff;
}

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 - N15 */
header {
  background: var(--card-bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 1350px;
  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.75rem;
  cursor: pointer;
  color: var(--primary);
}

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

nav a {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  transition: background 0.3s, color 0.3s;
}

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

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--card-bg);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

  .menu-checkbox:checked ~ nav {
    max-height: 500px;
  }

  nav ul {
    flex-direction: column;
    gap: 0;
    padding: 1rem 0;
  }

  nav a {
    display: block;
    padding: 1rem 2rem;
    border-radius: 0;
  }
}

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

section {
  padding: 5.75rem 0;
}

.content-section {
  padding: 5.75rem 0;
}

.bg-light {
  background: var(--card-bg);
}

/* Typography - H15 */
h1 {
  font-size: clamp(2rem, 5vw, 2.625rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

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

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

h4 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Hero Section - L18 Simple */
.hero-simple {
  text-align: center;
  padding: 6rem 0;
  background: linear-gradient(135deg, var(--bg) 0%, var(--card-bg) 100%);
}

.hero-text {
  font-size: 1.125rem;
  max-width: 700px;
  margin: 0 auto 2rem;
  color: var(--text);
}

/* Buttons - B15 */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 1rem 2.5rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 2rem;
  border: 2px dashed;
  transition: all 0.3s;
}

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

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

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

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

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

/* Cards - K15 */
.card,
.testimonial-card,
.value-item {
  background: var(--card-bg);
  border-radius: 2rem;
  padding: 2rem;
  box-shadow: 0 0 0 1px #e5e7eb;
  transition: box-shadow 0.3s, transform 0.3s;
}

.card:hover,
.testimonial-card:hover {
  box-shadow: 0 4px 12px rgba(147, 51, 234, 0.15);
  transform: translateY(-4px);
}

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

.card-icon,
.value-icon {
  color: var(--primary);
  margin-bottom: 1.5rem;
}

/* Benefits & Features */
.benefit-list,
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.benefit-item,
.tip-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.benefit-symbol,
.tip-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  flex-shrink: 0;
}

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

.page-intro {
  font-size: 1.125rem;
  color: var(--text);
  opacity: 0.9;
}

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

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

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  flex-shrink: 0;
}

.testimonial-role {
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.7;
  margin: 0;
}

.testimonial-text {
  font-style: italic;
  line-height: 1.7;
}

/* Satisfaction List */
.satisfaction-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

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

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

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

.faq-item {
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

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

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

.faq-answer {
  margin: 0;
}

/* Troubleshooting */
.troubleshooting-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.troubleshooting-item {
  padding: 1.5rem;
  background: var(--bg);
  border-radius: 1rem;
  border-left: 4px solid var(--primary);
}

/* Blog */
.blog-post {
  margin-bottom: 4rem;
}

.post-date {
  font-size: 0.875rem;
  color: var(--text);
  opacity: 0.7;
  margin-bottom: 1rem;
}

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

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

.contact-icon {
  color: var(--primary);
  flex-shrink: 0;
}

.contact-desc {
  font-size: 0.875rem;
  opacity: 0.8;
  margin: 0.5rem 0 0;
}

.hours-info {
  background: var(--bg);
  padding: 2rem;
  border-radius: 1rem;
  margin-top: 2rem;
}

.hours-info p {
  margin-bottom: 0.75rem;
}

.hours-note {
  margin-top: 1.5rem;
  font-size: 0.875rem;
  opacity: 0.8;
}

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

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

.footer-brand {
  margin-bottom: 3rem;
}

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

.footer-brand p {
  margin: 0;
  opacity: 0.8;
}

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

.footer-column h4 {
  color: var(--primary);
  margin-bottom: 1rem;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 0.5rem;
}

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

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

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

.footer-bottom p {
  margin: 0;
  opacity: 0.7;
}

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

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

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

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

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

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

  .hero-simple {
    padding: 4rem 0;
  }

  .card-grid,
  .testimonial-grid,
  .value-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

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

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