:root{--build-id:"cf3d4047-1343-4223-a5d2-3abab4005a65";}
/* Reset & Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #334155;
  --bg: #f8fafc;
  --text: #0f172a;
  --accent: #94a3b8;
  --heading: var(--text);
  --link: var(--text);
}

body {
  font-family: Roboto, "Noto Sans KR", "Malgun Gothic", "Segoe UI", -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(248, 250, 252, 0.95);
  backdrop-filter: blur(10px);
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(51, 65, 85, 0.1);
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  white-space: nowrap;
}

.search-box {
  flex: 1;
  max-width: 400px;
  display: none;
}

.search-box input {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 2px solid var(--accent);
  border-radius: 9999px;
  font-size: 0.875rem;
}

.menu-checkbox {
  display: none;
}

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

nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: var(--bg);
  box-shadow: -2px 0 8px rgba(0, 0, 0, 0.1);
  transition: right 0.3s ease;
  z-index: 100;
  padding: 2rem;
}

.menu-checkbox:checked ~ nav {
  right: 0;
}

nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

nav a {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  display: block;
  padding: 0.5rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}

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

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

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

section {
  padding: 7rem 0;
}

/* Typography */
h1 {
  font-size: clamp(2rem, 5vw, 3.375rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.015em;
  text-shadow: 2px 2px 0 rgba(0, 0, 0, 0.1);
  color: var(--heading);
  margin-bottom: 1.5rem;
}

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

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

p {
  margin-bottom: 1rem;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 8rem 0 7rem;
  background: linear-gradient(180deg, rgba(51, 65, 85, 0.03) 0%, rgba(248, 250, 252, 1) 100%);
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero p {
  font-size: 1.125rem;
  color: var(--text);
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Button Styles */
.btn {
  display: inline-block;
  border: 2px solid var(--primary);
  background: transparent;
  padding: 0.875rem 2rem;
  font-weight: 600;
  color: var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

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

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

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

.btn-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

/* Card Styles */
.card {
  border-bottom: 2px solid #e5e7eb;
  padding: 2rem 0;
}

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

.card p {
  color: var(--text);
  opacity: 0.85;
}

/* Grid Layouts */
.grid {
  display: grid;
  gap: 5rem;
}

.grid-2 {
  grid-template-columns: 1fr;
}

.grid-3 {
  grid-template-columns: 1fr;
}

.grid-4 {
  grid-template-columns: 1fr;
}

/* Step Guide */
.step-guide {
  counter-reset: step;
}

.step-item {
  position: relative;
  padding-left: 4rem;
  margin-bottom: 3rem;
}

.step-item::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 3rem;
  height: 3rem;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
}

/* Testimonial */
.testimonial {
  background: rgba(51, 65, 85, 0.03);
  padding: 2rem;
  border-left: 4px solid var(--primary);
  margin-bottom: 2rem;
}

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

/* Contact Info */
.contact-info {
  background: rgba(51, 65, 85, 0.03);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.contact-info p {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

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

.footer-content {
  max-width: 1500px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

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

.footer-links a {
  color: #fff;
  text-decoration: none;
  opacity: 0.9;
  transition: opacity 0.2s;
}

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

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 0.875rem;
  opacity: 0.8;
}

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

/* Responsive */
@media (min-width: 768px) {
  .search-box {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  nav {
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    box-shadow: none;
    padding: 0;
  }

  nav ul {
    flex-direction: row;
    gap: 2rem;
  }

  nav a {
    padding: 0;
  }

  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}