:root{--build-id:"b0a98c6d-833a-4a8d-b739-122cb10b6073";}
/* 변수 조합: L22, C07, T18, B03, N11, K03, S07, H03, F6, CS03 */

/* F6 - Android Global 폰트 스택 */
:root {
  --primary: #2563eb;
  --bg: #f0f9ff;
  --text: #0c4a6e;
  --accent: #0ea5e9;
  --heading: var(--text);
  --link: var(--text);
}

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

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

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

/* 키보드 포커스 스타일 */
a:focus-visible,
input:focus-visible,
label:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
}

/* N11 - 상단 스크롤 + 중앙 로고 + 좌우 메뉴 (대칭) + 햄버거 */
header {
  background: #ffffff;
  border-bottom: 1px solid rgba(12, 74, 110, 0.1);
  padding: 1rem 0;
  position: sticky;
  top: 0;
  z-index: 50;
}

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

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.menu-checkbox {
  display: none;
}

.menu-toggle {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--text);
  background: none;
  border: none;
}

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

nav a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
}

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

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

  .logo {
    position: static;
    transform: none;
  }

  nav {
    position: fixed;
    top: 0;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background: #ffffff;
    padding: 5rem 2rem 2rem;
    transition: left 0.3s ease;
    box-shadow: 2px 0 8px rgba(0, 0, 0, 0.1);
  }

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

  nav ul {
    flex-direction: column;
    gap: 1.5rem;
  }
}

/* S07 - 여백 시스템 */
section {
  padding: 5.5rem 0;
}

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

/* H03 - 헤딩 스타일 */
h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1.5rem;
}

h2 {
  font-size: clamp(1.875rem, 3.75vw, 3rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1.25rem;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--heading);
  margin-bottom: 1rem;
}

/* L22 - 볼드 히어로 */
.hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
  padding: 8rem 0 6rem;
  text-align: center;
}

.hero p {
  max-width: 700px;
  margin: 0 auto 2.5rem;
  font-size: 1.125rem;
  line-height: 1.75;
}

/* B03 - 풀 라운드 버튼 */
.cta-button {
  display: inline-block;
  border-radius: 9999px;
  padding: 1.25rem 3rem;
  font-weight: 700;
  background: var(--primary);
  color: #ffffff;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transition: all 0.3s;
}

.cta-button:hover {
  background: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.cta-group {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* 3열 아이콘 섹션 */
.icons-section {
  background: #ffffff;
}

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

/* K03 - 큰 라운드 카드 */
.icon-card {
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
  background: #ffffff;
  text-align: center;
  transition: transform 0.3s, box-shadow 0.3s;
}

.icon-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.18);
}

.icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  color: var(--primary);
}

.icon-wrapper svg {
  width: 100%;
  height: 100%;
}

.icon-card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.icon-card p {
  color: var(--text);
  line-height: 1.7;
}

/* 스토리 섹션 */
.story-section {
  background: var(--bg);
}

.story-section h2 {
  margin-top: 2.5rem;
}

.story-section h2:first-child {
  margin-top: 0;
}

.story-section p {
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* 플로팅 CTA */
.final-cta {
  background: var(--primary);
  color: #ffffff;
  text-align: center;
  padding: 5rem 0;
}

.final-cta h2 {
  color: #ffffff;
  margin-bottom: 1rem;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.125rem;
  margin-bottom: 2rem;
}

.final-cta .cta-button {
  background: #ffffff;
  color: var(--primary);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.final-cta .cta-button:hover {
  background: var(--bg);
}

/* 페이지 헤더 */
.page-header {
  background: linear-gradient(135deg, #f0f9ff 0%, #dbeafe 100%);
  padding: 5rem 0 3rem;
  text-align: center;
}

.page-header p {
  font-size: 1.125rem;
  color: var(--text);
  max-width: 600px;
  margin: 0 auto;
}

/* 콘텐츠 섹션 */
.content-section {
  background: #ffffff;
}

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

.content-section h2:first-child {
  margin-top: 0;
}

.content-section p {
  margin-bottom: 2rem;
  line-height: 1.75;
}

/* 후기 카드 */
.review-card {
  border-radius: 1.5rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  padding: 2.5rem;
  background: var(--bg);
  margin-bottom: 3rem;
}

.review-card h3 {
  color: var(--primary);
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
}

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

.review-card p:first-of-type {
  font-weight: 600;
  color: var(--heading);
}

/* 연락처 정보 */
.contact-info {
  background: var(--bg);
  border-radius: 1.5rem;
  padding: 2.5rem;
  margin-bottom: 3rem;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.contact-info h2 {
  margin-bottom: 1.5rem;
}

.contact-info p {
  font-size: 1.125rem;
  margin-bottom: 1rem;
  line-height: 1.75;
}

.contact-guide {
  margin-top: 3rem;
}

.contact-guide h2 {
  margin-bottom: 1.5rem;
}

.contact-guide p {
  margin-bottom: 1.5rem;
  line-height: 1.75;
}

/* Footer */
footer {
  background: var(--text);
  color: #ffffff;
  padding: 2rem 0;
  margin-top: 5.5rem;
}

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

footer nav {
  display: flex;
  gap: 2rem;
}

footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.2s;
}

footer a:hover {
  color: #ffffff;
}

/* 문서 컨테이너 */
.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.75;
  margin-bottom: 1.5rem;
}

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

/* 반응형 */
@media (max-width: 768px) {
  section {
    padding: 3.5rem 0;
  }

  .container {
    padding: 0 1.5rem;
  }

  .hero {
    padding: 5rem 0 4rem;
  }

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

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

  footer nav {
    flex-direction: column;
    gap: 1rem;
  }
}