:root{--build-id:"19188539-6d3f-4c7d-8158-5213184c5ab9";}
:root {
  --primary: #7c3aed;
  --bg: #f5f3ff;
  --text: #4c1d95;
  --accent: #8b5cf6;
  --heading: var(--text);
  --link: var(--text);
}

* {
  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: var(--bg);
}

h1 {
  font-size: clamp(2rem, 5vw, 3.625rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  text-decoration: underline;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2.537rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.25rem, 3vw, 1.777rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  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;
}

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

.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 {
  position: sticky;
  top: 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  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: 800;
  color: var(--primary);
}

.menu-checkbox {
  display: none;
}

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

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

nav a {
  font-weight: 600;
  color: var(--text);
  position: relative;
}

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

nav a:hover {
  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 8px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }

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

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

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

section {
  padding: 5rem 0;
}

.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  overflow: hidden;
}

.hero-overlay {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 2rem;
}

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

.hero-description {
  font-size: 1.125rem;
  line-height: 1.7;
  color: #fff;
  margin-bottom: 2rem;
  opacity: 0.95;
}

.hero-svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0.3;
}

.cta-button {
  display: inline-block;
  background: #fff;
  color: var(--primary);
  padding: 1rem 2rem;
  border-radius: 0.25rem;
  font-weight: 600;
  transform: skew(-5deg);
  transition: all 0.3s;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

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

.intro-section {
  background: #fff;
}

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

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

.features-section {
  background: var(--bg);
}

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

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

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

.card-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.benefits-section {
  background: #fff;
}

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

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

.benefit-svg {
  width: 200px;
  height: 200px;
  margin: 0 auto 1.5rem;
}

.cta-section {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
  color: #fff;
  text-align: center;
}

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

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

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

.page-header h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.page-intro {
  font-size: 1.125rem;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
  opacity: 0.95;
}

.content-section {
  background: #fff;
}

.content-block {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.section-svg {
  max-width: 600px;
  width: 100%;
  height: auto;
  margin: 2rem 0;
}

.values-section {
  background: var(--bg);
}

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

.value-card {
  background: #fff;
  padding: 1.75rem;
  border: 2px solid var(--primary);
  border-radius: 1rem 0 1rem 0;
  text-align: center;
}

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

.vision-section {
  background: #fff;
  text-align: center;
}

.vision-section p {
  max-width: 900px;
  margin: 0 auto;
  font-size: 1.125rem;
  line-height: 1.75;
}

.benefits-list-section {
  background: var(--bg);
}

.benefits-cards {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

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

.card-number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 1rem;
}

.comparison-section {
  background: #fff;
}

.comparison-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.tips-section {
  background: var(--bg);
}

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

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

.tip-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 1rem;
}

.storage-section {
  background: #fff;
}

.storage-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.faq-section {
  background: #fff;
}

.faq-item {
  background: var(--bg);
  padding: 2rem;
  margin-bottom: 2rem;
  border-left: 4px solid var(--primary);
  border-radius: 0.5rem;
}

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

.contact-section {
  background: #fff;
}

.contact-info-wrapper {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-card {
  background: var(--bg);
  padding: 2rem;
  border-radius: 1rem 0 1rem 0;
  border: 2px solid var(--primary);
  text-align: center;
}

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

.contact-card h2 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

.contact-card p {
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 0.5rem;
}

.contact-desc {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text);
  opacity: 0.8;
}

.contact-additional {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.contact-svg {
  max-width: 500px;
  width: 100%;
  height: auto;
  margin: 2rem auto;
}

.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.8;
}

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

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

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

.footer-brand {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.footer-info p {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
}

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

.footer-links a {
  color: #fff;
  font-size: 0.9rem;
  opacity: 0.9;
}

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

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

  .hero-section {
    min-height: 500px;
  }

  .card-slider,
  .benefits-grid,
  .values-grid,
  .tips-grid,
  .contact-info-wrapper {
    grid-template-columns: 1fr;
  }

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