:root {
  --primary: #14532d;
  --primary-dark: #064e3b;
  --primary-light: #166534;
  --accent: #f97316;
  --accent-light: #fdba74;
  --accent-dark: #ea580c;
  --text: #111827;
  --text-secondary: #4b5563;
  --text-muted: #6b7280;
  --bg: #ffffff;
  --bg-light: #f0fdf4;
  --bg-soft: #dcfce7;
  --border: #bbf7d0;
  --border-light: #ecfdf5;
  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  --radius-sm: 12px;
  --container: min(1200px, 92%);
  --header-height: 72px;
}

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

html { scroll-behavior: smooth; }

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

a { text-decoration: none; color: inherit; }

.container { width: var(--container); margin-inline: auto; }

img { max-width: 100%; height: auto; display: block; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-height);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
}

.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--accent);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 1.1rem;
}

.desktop-nav { display: flex; gap: 24px; }
.desktop-nav a {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.2s;
}
.desktop-nav a:hover, .desktop-nav a.active { color: var(--primary); }

.header-cta {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.header-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--primary);
  cursor: pointer;
}

.mobile-menu {
  display: none;
  position: absolute;
  top: var(--header-height);
  left: 0; right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 16px;
  flex-direction: column;
  gap: 10px;
  box-shadow: var(--shadow-lg);
}
.mobile-menu a {
  padding: 12px;
  font-weight: 600;
  color: var(--text-secondary);
  border-radius: 8px;
  font-size: 0.92rem;
}
.mobile-menu a:hover { background: var(--bg-light); color: var(--primary); }
.mobile-menu.open { display: flex; }

.hero {
  padding: calc(var(--header-height) + 70px) 0 50px;
  background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,175,55,0.15);
  color: var(--accent-dark);
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(1.9rem, 5vw, 3rem);
  font-weight: 900;
  line-height: 1.2;
  color: var(--primary);
  margin-bottom: 18px;
}

.hero h1 b { color: var(--accent-dark); }

.hero-subtitle {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: 16px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 28px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

.btn-main {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  font-weight: 800;
  font-size: 0.96rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
.btn-main:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: #fff;
}

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: #fff;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

.nav-card-section { padding: 28px 0 0; background: var(--bg); border-bottom: 1px solid var(--border); }
.nav-card-label { font-size: 0.74rem; font-weight: 700; color: var(--text-muted); letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; padding-left: 2px; }
.nav-card-row { display: flex; gap: 12px; overflow-x: auto; scroll-snap-type: x proximity; padding-bottom: 18px; -ms-overflow-style: none; scrollbar-width: none; }
.nav-card-row::-webkit-scrollbar { display: none; }
.nav-card-item { flex: 0 0 150px; scroll-snap-align: start; display: flex; flex-direction: column; align-items: center; border: 1.5px solid var(--border); border-radius: var(--radius); overflow: hidden; background: var(--bg); text-decoration: none; color: inherit; transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease; }
.nav-card-item:hover { transform: translateY(-4px); border-color: var(--accent-light); box-shadow: 0 12px 32px rgba(0,0,0,0.10); }
.nav-card-img { width: 100%; aspect-ratio: 1 / 1; background: var(--bg-soft); overflow: hidden; }
.nav-card-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.nav-card-text { width: 100%; padding: 11px 8px; background: var(--bg); border-top: 1px solid var(--border-light); text-align: center; }
.nav-card-title { display: block; font-size: 0.84rem; font-weight: 800; color: var(--text); line-height: 1.35; word-break: keep-all; }

.section { padding: 70px 0; }
.bg-light { background: var(--bg-light); }

.section-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 900;
  color: var(--primary);
  text-align: center;
  margin-bottom: 14px;
}

.section-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 42px;
  font-size: 1rem;
}

.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--accent-light); }

.service-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--accent);
  border-radius: 13px;
  display: grid;
  place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}

.service-card h3 { font-size: 1.08rem; font-weight: 800; color: var(--primary); margin-bottom: 8px; }
.service-card p { font-size: 0.92rem; color: var(--text-secondary); }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.why-card { background: #fff; border-radius: var(--radius); padding: 26px 20px; text-align: center; box-shadow: var(--shadow); }
.why-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.5rem;
  margin: 0 auto 14px;
}
.why-card h3 { font-size: 1.05rem; font-weight: 800; color: var(--primary); margin-bottom: 7px; }
.why-card p { font-size: 0.88rem; color: var(--text-secondary); }

.steps { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.step { background: #fff; border-radius: var(--radius); padding: 22px 16px; text-align: center; border: 1px solid var(--border); }
.step-number {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  color: var(--accent);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 1rem;
  margin: 0 auto 12px;
}
.step h3 { font-size: 0.95rem; font-weight: 800; color: var(--primary); margin-bottom: 7px; }
.step p { font-size: 0.84rem; color: var(--text-secondary); }

.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 11px; overflow: hidden; }
.faq-q {
  width: 100%;
  padding: 18px 22px;
  background: none;
  border: none;
  text-align: left;
  font-size: 0.96rem;
  font-weight: 800;
  color: var(--primary);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-q::after { content: "+"; font-size: 1.3rem; color: var(--accent-dark); }
.faq-item.active .faq-q::after { content: "−"; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease, padding 0.3s ease; }
.faq-item.active .faq-a { max-height: 280px; padding: 0 22px 18px; }
.faq-a p { color: var(--text-secondary); font-size: 0.92rem; }

.cta-final {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-align: center;
  padding: 70px 0;
}
.cta-final h2 { font-size: clamp(1.5rem, 4vw, 2.2rem); font-weight: 900; margin-bottom: 14px; }
.cta-final .phone { font-size: clamp(1.8rem, 6vw, 3.2rem); font-weight: 900; color: var(--accent); margin-bottom: 6px; }
.cta-final .note { color: rgba(255,255,255,0.85); margin-bottom: 28px; font-size: 1rem; }
.cta-final .btn-main { margin: 0 5px; }

.site-footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.8);
  padding: 50px 0 24px;
}
.footer-inner { display: grid; grid-template-columns: 1.2fr 2fr 1fr; gap: 36px; margin-bottom: 36px; }
.footer-logo { color: #fff; }
.footer-logo strong { display: block; font-size: 1.2rem; margin-bottom: 7px; }
.footer-logo p { font-size: 0.88rem; color: rgba(255,255,255,0.7); }
.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.footer-nav a { color: rgba(255,255,255,0.8); font-size: 0.88rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--accent); }
.footer-info { text-align: right; }
.footer-info a { color: var(--accent); font-weight: 800; font-size: 1.05rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding-top: 22px; text-align: center; font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.float-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 10px 14px;
  gap: 10px;
  z-index: 999;
}
.float-bar a { flex: 1; justify-content: center; font-size: 0.88rem; padding: 11px; }

.page-banner {
  padding: calc(var(--header-height) + 55px) 0 55px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  text-align: center;
}
.page-banner h1 { font-size: clamp(1.7rem, 4vw, 2.4rem); font-weight: 900; margin-bottom: 14px; }
.page-banner h1 b { color: var(--accent); }
.page-banner p { color: rgba(255,255,255,0.9); font-size: 1rem; max-width: 680px; margin: 0 auto 24px; }

.page-body { padding: 55px 0; }
.page-body .container { max-width: min(880px, 92%); }
.page-body h2 { font-size: 1.35rem; font-weight: 900; color: var(--primary); margin: 36px 0 14px; }
.page-body h2:first-child { margin-top: 0; }
.page-body p { color: var(--text-secondary); margin-bottom: 14px; font-size: 0.96rem; }
.page-body ul { margin: 0 0 22px 18px; color: var(--text-secondary); }
.page-body li { margin-bottom: 9px; font-size: 0.95rem; }
.page-body strong { color: var(--primary); }

.tip-box {
  background: linear-gradient(135deg, rgba(212,175,55,0.12) 0%, rgba(212,175,55,0.05) 100%);
  border-left: 4px solid var(--accent);
  padding: 18px 22px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin-top: 28px;
}

@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .desktop-nav, .header-cta { display: none; }
  .hamburger { display: block; }
  .hero-inner { grid-template-columns: 1fr; gap: 35px; }
  .hero { padding-top: calc(var(--header-height) + 45px); }
  .service-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { grid-template-columns: repeat(2, 1fr); text-align: left; max-width: 360px; margin: 0 auto; }
  .footer-info { text-align: center; }
  .float-bar { display: flex; }
  body { padding-bottom: 65px; }
  .nav-card-item { flex: 0 0 125px; }
  .nav-card-title { font-size: 0.78rem; }
}
