:root{--build-id:"eede0680-4061-4bac-8636-b9ed92a6459e";}
:root {
  --primary: #0284c7;
  --bg: #e0f2fe;
  --text: #075985;
  --accent: #0ea5e9;
  --heading: var(--text);
  --link: var(--text);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", sans-serif;
  font-weight: 300;
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 10px;
  background: var(--primary);
  color: white;
  padding: 0.75rem 1.5rem;
  text-decoration: none;
  border-radius: 0.25rem;
  z-index: 10000;
}

.skip-link:focus {
  top: 10px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(224, 242, 254, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 1.25rem 5%;
  box-shadow: 0 2px 10px rgba(7, 89, 133, 0.08);
}

.nav-container {
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 2rem;
}

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

.nav-center {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  list-style: none;
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-menu a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover,
.nav-menu a:focus {
  color: var(--primary);
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.nav-cta {
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-weight: 500;
  border: 2px solid var(--primary);
  background: var(--primary);
  color: white;
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-cta:hover,
.nav-cta:focus {
  background: transparent;
  color: var(--primary);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    flex-direction: column;
    background: rgba(224, 242, 254, 0.98);
    padding: 2rem;
    gap: 1.5rem;
    box-shadow: 0 4px 12px rgba(7, 89, 133, 0.1);
    transition: left 0.3s ease;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-cta {
    margin-top: 1rem;
  }

  .hamburger {
    display: flex;
  }

  .nav-center {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }
}

main {
  margin-top: 70px;
}

section {
  padding: 6.5rem 5%;
}

.container {
  max-width: 1450px;
  margin: 0 auto;
}

h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1.5rem;
  font-family: "Gowun Batang", serif;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--heading);
  margin-bottom: 1.25rem;
  font-family: "Gowun Batang", serif;
}

h3 {
  font-size: clamp(1.35rem, 3vw, 1.875rem);
  font-weight: 600;
  line-height: 1.4;
  color: var(--heading);
  margin-bottom: 1rem;
  font-family: "Gowun Batang", serif;
}

p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-weight: 300;
}

.hero {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
  padding: 8rem 5% 6rem;
}

.hero-content {
  max-width: 900px;
}

.hero h1 {
  margin-bottom: 2rem;
}

.hero p {
  font-size: 1.25rem;
  margin-bottom: 2.5rem;
  font-weight: 500;
}

.two-col {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 4.5rem;
  align-items: center;
}

.two-col-content h2 {
  margin-bottom: 1.5rem;
}

.two-col-content p {
  margin-bottom: 1.25rem;
}

.two-col-image {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.1) 0%, rgba(14, 165, 233, 0.15) 100%);
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(7, 89, 133, 0.12);
}

.icon-xl {
  font-size: 5rem;
  color: var(--primary);
}

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

.process-card {
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  background: white;
  transition: all 0.3s ease;
}

.process-card:hover,
.process-card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(7, 89, 133, 0.15);
}

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

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: white;
  text-align: center;
  border-radius: 1.5rem;
  padding: 5rem 3rem;
  margin-top: 4rem;
}

.cta-section h2 {
  color: white;
  margin-bottom: 1.5rem;
}

.cta-section p {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2.5rem;
  font-size: 1.15rem;
}

.btn {
  border-radius: 9999px;
  padding: 0.875rem 2rem;
  font-weight: 500;
  border: 2px solid;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  cursor: pointer;
  font-size: 1rem;
}

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

.btn-primary:hover,
.btn-primary:focus {
  background: transparent;
  color: var(--primary);
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

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

.btn-white:hover,
.btn-white:focus {
  background: transparent;
  color: white;
  border-color: white;
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-top: 3rem;
}

.card {
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  padding: 1.5rem;
  background: white;
  transition: all 0.3s ease;
}

.card:hover,
.card:focus-within {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(7, 89, 133, 0.15);
}

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

footer {
  background: white;
  padding: 4rem 5% 2rem;
  border-top: 2px solid rgba(2, 132, 199, 0.1);
}

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

.footer-section h3 {
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
}

.footer-section p,
.footer-section a {
  color: var(--text);
  text-decoration: none;
  display: block;
  margin-bottom: 0.75rem;
  transition: color 0.3s ease;
}

.footer-section a:hover,
.footer-section a:focus {
  color: var(--primary);
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(2, 132, 199, 0.15);
}

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

@media (max-width: 768px) {
  section {
    padding: 4rem 5%;
  }

  .hero {
    padding: 6rem 5% 4rem;
    min-height: 60vh;
  }

  .two-col,
  .process-grid,
  .card-grid {
    gap: 2rem;
  }

  .cta-section {
    padding: 3rem 2rem;
  }

  .footer-container {
    gap: 2rem;
  }
}