:root{--build-id:"edca3402-6a68-4524-ada9-be258682dba7";}
/* 97번: L07, C26, T18, B14, N01, K14, S01, H14, F1, CS14 */

/* 색상 변수 - C26 */
:root {
  --primary: #7c3aed;
  --bg: #f5f3ff;
  --text: #4c1d95;
  --accent: #8b5cf6;
  --heading: var(--text);
  --link: var(--text);
}

/* 기본 스타일 - F1 폰트 스택 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", "Segoe UI", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background-color: var(--bg);
}

/* 헤딩 - H14 */
h1 {
  font-size: clamp(2.25rem, 5vw, 3.625rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-decoration: underline;
  color: var(--heading);
  margin-bottom: 1rem;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.813rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--heading);
  margin-bottom: 1rem;
}

h3 {
  font-size: clamp(1.375rem, 3vw, 2.188rem);
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 0.75rem;
}

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

a:hover {
  opacity: 0.7;
}

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

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

/* 헤더 - N01 */
header {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(124, 58, 237, 0.1);
  z-index: 50;
}

.header-container {
  max-width: 1280px;
  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;
  gap: 2rem;
  list-style: none;
}

nav a {
  font-weight: 500;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
}

nav a:hover,
nav a[aria-current="page"] {
  border-bottom-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: 0;
  }

  nav li {
    border-bottom: 1px solid #eee;
  }

  nav a {
    display: block;
    padding: 1rem 0;
  }
}

/* 컨테이너 - S01 */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 5rem 0;
}

/* Hero Section - L07 오버레이 히어로 */
.hero-overlay {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  padding: 8rem 2rem;
  overflow: hidden;
}

.hero-content {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-overlay h1 {
  color: #fff;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.hero-overlay p {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 700px;
  margin-bottom: 2rem;
}

.hero-graphic {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 300px;
  opacity: 0.3;
}

@media (max-width: 768px) {
  .hero-overlay {
    padding: 5rem 2rem;
  }

  .hero-graphic {
    display: none;
  }
}

/* 버튼 - B14 */
.cta-button {
  display: inline-block;
  border-radius: 0.25rem;
  padding: 1rem 2rem;
  font-weight: 600;
  transform: skew(-5deg);
  background: #fff;
  color: var(--primary);
  transition: all 0.3s;
}

.cta-button:hover {
  opacity: 1;
  transform: skew(-5deg) translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Intro Section */
.intro-section {
  background: #fff;
}

.intro-section p {
  font-size: 1.125rem;
  margin-bottom: 3rem;
  line-height: 1.8;
}

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

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

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

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

.icon-item p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.feature-card {
  border-radius: 1rem 0 1rem 0;
  border: 2px solid var(--primary);
  padding: 1.75rem;
  background: #fff;
  transition: transform 0.3s;
}

.feature-card:hover {
  transform: translateY(-5px);
}

.feature-card svg {
  width: 100%;
  height: 120px;
  margin-bottom: 1rem;
}

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

.feature-card p {
  font-size: 0.9375rem;
  line-height: 1.7;
}

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

.benefits-overview p {
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.benefits-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.benefits-list li {
  padding-left: 2rem;
  position: relative;
}

.benefits-list li::before {
  content: "▸";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 1.25rem;
}

.benefits-list strong {
  color: var(--primary);
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: var(--primary);
  color: #fff;
  text-align: center;
}

.cta-content h2 {
  color: #fff;
  margin-bottom: 1rem;
}

.cta-content p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

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

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

.page-header h1 {
  color: #fff;
  text-decoration: none;
}

.page-header p {
  font-size: 1.125rem;
  margin-top: 0.5rem;
}

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

.content-section p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.content-section h2 {
  margin-top: 3rem;
  margin-bottom: 1rem;
}

.about-graphic {
  width: 100%;
  max-width: 500px;
  height: 300px;
  display: block;
  margin: 3rem auto;
}

/* Method Steps */
.method-step {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e5e7eb;
}

.method-step:last-child {
  border-bottom: none;
}

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

.method-step svg {
  width: 100%;
  max-width: 300px;
  height: 150px;
  display: block;
  margin: 1.5rem auto;
}

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

.faq-item {
  background: #fff;
  border-radius: 1rem 0 1rem 0;
  border: 2px solid var(--primary);
  padding: 1.75rem;
}

.faq-item h2 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.faq-item p {
  line-height: 1.7;
}

/* Testimonials */
.testimonial-card {
  background: #fff;
  border-radius: 1rem 0 1rem 0;
  border: 2px solid var(--primary);
  padding: 1.75rem;
  margin-bottom: 2rem;
}

.testimonial-card h2 {
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.testimonial-card p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.testimonial-author {
  font-style: italic;
  color: var(--accent);
  font-weight: 600;
  text-align: right;
}

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

.contact-info,
.contact-message {
  background: #fff;
  border-radius: 1rem 0 1rem 0;
  border: 2px solid var(--primary);
  padding: 1.75rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 2rem;
}

.contact-item .icon {
  font-size: 2rem;
  color: var(--primary);
  margin-top: 0.25rem;
}

.contact-item h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.contact-item p {
  line-height: 1.6;
  margin-bottom: 0.25rem;
}

.contact-message h2 {
  margin-top: 0;
}

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

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

.footer-info {
  margin-bottom: 2rem;
}

.footer-info p {
  margin-bottom: 0.5rem;
}

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

.footer-links a {
  color: #fff;
}

.footer-links a:hover {
  text-decoration: underline;
}

.copyright {
  font-size: 0.875rem;
  opacity: 0.7;
}

/* Doc Container (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 {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

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

  .icon-grid,
  .card-slider,
  .contact-container {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .container {
    padding: 0 1rem;
  }
}