:root{--build-id:"5455e1f9-c4cc-4d8f-9e3a-190fc58b96d1";}
@charset "UTF-8";

/* ========================================
   CSS Variables (C29 Color Palette)
   ======================================== */
:root {
  --primary: #9333ea;
  --bg: #faf5ff;
  --text: #581c87;
  --accent: #a855f7;
  --heading: #581c87;
  --link: #581c87;
  --white: #ffffff;
  --gray-light: #f3e8ff;
  --gray-medium: #e9d5ff;
  --gray-dark: #6b21a8;
}

/* ========================================
   Reset & Base Styles
   ======================================== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

/* ========================================
   Typography (H15 + CS15)
   ======================================== */
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.625rem, 4vw, 2.125rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.01em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

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

p {
  margin-bottom: 1rem;
}

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

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

a:focus-visible {
  outline: 3px solid #0066cc;
  outline-offset: 2px;
}

/* ========================================
   Skip Link (Accessibility)
   ======================================== */
.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;
}

/* ========================================
   Header & Navigation (N15)
   ======================================== */
header {
  background-color: var(--white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  position: sticky;
  top: 0;
  z-index: 50;
}

.header-container {
  max-width: 1250px;
  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);
}

.menu-checkbox {
  display: none;
}

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

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

nav a {
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  transition: all 0.3s ease;
}

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

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

  nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .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 & Sections (S07)
   ======================================== */
.container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5.5rem 0;
}

.page-header {
  padding: 3rem 0;
  text-align: center;
  background-color: var(--gray-light);
}

.page-intro {
  font-size: 1.125rem;
  color: var(--text);
  max-width: 800px;
  margin: 0 auto;
}

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

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

.hero-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.25rem;
  align-items: center;
}

.hero-content h1 {
  margin-bottom: 1.5rem;
}

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

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

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

@media (max-width: 768px) {
  .hero-section .container {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

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

/* ========================================
   Cards (K15)
   ======================================== */
.feature-grid,
.testimonials-grid,
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3.25rem;
  margin-top: 3rem;
}

.feature-card,
.testimonial-card,
.value-card {
  border-radius: 2rem;
  background: var(--white);
  box-shadow: 0 0 0 1px #e5e7eb;
  padding: 2rem;
  transition: all 0.3s ease;
}

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

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

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

/* ========================================
   Benefits Section
   ======================================== */
.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

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

.benefit-icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}

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

/* ========================================
   Testimonials
   ======================================== */
.testimonial-text {
  font-style: italic;
  margin-bottom: 1rem;
  line-height: 1.7;
}

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

/* ========================================
   Reviews
   ======================================== */
.review-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

.review-card {
  border-radius: 2rem;
  background: var(--white);
  box-shadow: 0 0 0 1px #e5e7eb;
  padding: 2rem;
}

.review-header {
  margin-bottom: 1rem;
}

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

.review-author {
  font-size: 0.875rem;
  color: var(--gray-dark);
}

.review-text {
  line-height: 1.7;
}

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

.faq-item {
  border-radius: 2rem;
  background: var(--white);
  box-shadow: 0 0 0 1px #e5e7eb;
  padding: 2rem;
}

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

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

/* ========================================
   Guide
   ======================================== */
.step-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-top: 2rem;
}

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

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

.step-content h3 {
  margin-bottom: 0.5rem;
}

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

.guide-card {
  border-radius: 2rem;
  background: var(--white);
  box-shadow: 0 0 0 1px #e5e7eb;
  padding: 2rem;
}

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

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

.contact-card {
  border-radius: 2rem;
  background: var(--white);
  box-shadow: 0 0 0 1px #e5e7eb;
  padding: 2rem;
  text-align: center;
}

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

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

.contact-card p {
  margin-bottom: 0.5rem;
}

.contact-desc {
  font-size: 0.875rem;
  color: var(--gray-dark);
}

.contact-message {
  margin-top: 3rem;
  padding: 2rem;
  background-color: var(--gray-light);
  border-radius: 2rem;
}

.contact-tips {
  list-style: none;
  padding-left: 0;
  margin: 1.5rem 0;
}

.contact-tips li {
  padding-left: 1.5rem;
  position: relative;
  margin-bottom: 0.75rem;
}

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

/* ========================================
   CTA Section
   ======================================== */
.cta-section {
  background-color: var(--gray-light);
  text-align: center;
  padding: 4rem 0;
}

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

.cta-section p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* ========================================
   Footer
   ======================================== */
footer {
  background-color: var(--white);
  border-top: 1px solid var(--gray-medium);
  padding: 3rem 0 1.5rem;
}

.footer-container {
  max-width: 1250px;
  margin: 0 auto;
  padding: 0 2rem;
  text-align: center;
}

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

.brand-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.brand-tagline {
  color: var(--gray-dark);
  font-size: 0.875rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: var(--text);
}

.footer-contact {
  margin-bottom: 1.5rem;
}

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

.footer-copyright {
  font-size: 0.75rem;
  color: var(--gray-dark);
  padding-top: 1.5rem;
  border-top: 1px solid var(--gray-medium);
}

/* ========================================
   Privacy & Terms
   ======================================== */
.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;
}

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

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

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

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

  .feature-grid,
  .testimonials-grid,
  .values-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

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

  .benefit-icon {
    margin: 0 auto;
  }

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

  .step-number {
    margin: 0 auto;
  }

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