:root{--build-id:"d75a92f6-ee15-40b0-9fa5-e274e7f46de8";}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #6366f1;
  --bg: #eef2ff;
  --text: #312e81;
  --accent: #818cf8;
  --heading: var(--text);
  --link: var(--text);
}

body {
  font-family: "Segoe UI", "Malgun Gothic", "Noto Sans KR", -apple-system, system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 400;
  letter-spacing: 0em;
  color: var(--text);
  background: 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 */
header {
  background: rgba(238, 242, 255, 0.95);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
}

.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);
  text-decoration: none;
}

.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 {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover,
nav a[aria-current="page"] {
  color: var(--primary);
  border-bottom: 3px solid var(--primary);
  padding-bottom: 0.25rem;
}

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

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

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

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

/* Main Content */
main {
  min-height: 60vh;
}

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

section {
  padding: 5rem 0;
}

/* Hero Section */
.hero-overlay {
  position: relative;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: #fff;
  padding: 8rem 2rem;
  text-align: center;
  overflow: hidden;
}

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

.hero-overlay h1 {
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 1.5rem;
  color: #fff;
}

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

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

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

  .hero-overlay h1 {
    font-size: 2rem;
  }

  .hero-svg {
    display: none;
  }
}

/* Page Header */
.page-header {
  background: var(--primary);
  color: #fff;
  padding: 4rem 2rem;
  text-align: center;
}

.page-header h1 {
  font-size: 3.125rem;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: 0;
  margin-bottom: 1rem;
}

.page-header p {
  font-size: 1.125rem;
  opacity: 0.9;
}

@media (max-width: 768px) {
  .page-header h1 {
    font-size: 2rem;
  }
}

/* Typography */
h2 {
  font-size: 2.25rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--heading);
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1.5rem;
}

/* Buttons */
.cta-button {
  display: inline-block;
  border: none;
  border-bottom: 3px solid var(--primary);
  padding: 0.75rem 0;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s;
  margin: 0 1rem;
  background: transparent;
}

.cta-button:hover {
  border-bottom-color: var(--accent);
  color: var(--accent);
}

.cta-button.secondary {
  color: var(--text);
  border-bottom-color: var(--text);
}

.cta-button.secondary:hover {
  color: var(--primary);
  border-bottom-color: var(--primary);
}

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

@media (max-width: 768px) {
  .cta-button {
    margin: 0.5rem;
  }
}

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

.card {
  border-radius: 0.5rem;
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.1);
  padding: 2rem;
  background: #fff;
  transition: transform 0.3s, box-shadow 0.3s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.15);
}

.card-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
}

/* Lists */
.benefits-list {
  list-style: none;
  margin-top: 2rem;
}

.benefits-list li {
  padding: 1rem 0;
  border-bottom: 1px solid rgba(99, 102, 241, 0.2);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.list-icon {
  color: var(--primary);
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* SVG */
.section-svg {
  display: block;
  margin: 3rem auto;
  max-width: 300px;
  height: auto;
}

/* Content Sections */
.content-section {
  padding: 3rem 0;
}

.content-section:nth-child(even) {
  background: #fff;
}

/* FAQ */
.faq-item {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 2px solid rgba(99, 102, 241, 0.2);
}

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

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

/* Contact */
.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  margin-top: 3rem;
}

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

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

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

/* Footer */
footer {
  background: var(--primary);
  color: #fff;
  padding: 3rem 2rem;
  margin-top: 5rem;
}

.footer-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}

.footer-brand strong {
  font-size: 1.25rem;
  display: block;
  margin-bottom: 0.5rem;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-nav a,
.footer-legal a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.3s;
}

.footer-nav a:hover,
.footer-legal a:hover {
  opacity: 1;
  text-decoration: underline;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-contact p {
  margin-bottom: 0.5rem;
  opacity: 0.9;
}

/* Document Container */
.doc-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 4rem 2rem;
  text-align: center;
}

.doc-container h1 {
  font-size: 2.5rem;
  margin-bottom: 2rem;
  color: var(--heading);
}

.doc-container p {
  margin-bottom: 1.5rem;
}

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