:root {
  color-scheme: light;
  --ink: #152019;
  --muted: #5d6b62;
  --line: #dce7df;
  --green: #17653c;
  --green-dark: #0d4728;
  --pale: #eef6f0;
  --warm: #f4f1e9;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: #fbfcfa;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Noto Sans KR", sans-serif;
  line-height: 1.65;
}
a { color: inherit; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 max(24px, calc((100vw - 1180px) / 2));
  border-bottom: 1px solid rgba(220, 231, 223, .85);
  background: rgba(251, 252, 250, .92);
  backdrop-filter: blur(14px);
}
.brand { display: flex; align-items: center; gap: 12px; font-weight: 850; text-decoration: none; }
.brand-mark { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 11px; color: #fff; background: var(--green); }
.header-call { padding: 10px 18px; border-radius: 999px; color: #fff; background: var(--green); font-weight: 800; text-decoration: none; }
.site-nav { display: flex; align-items: center; gap: 24px; margin-left: auto; margin-right: 24px; }
.site-nav a { color: var(--ink); font-size: .93rem; font-weight: 750; text-decoration: none; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--green); }
main { overflow: hidden; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(300px, .65fr);
  gap: clamp(36px, 7vw, 90px);
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 680px;
  margin: 0 auto;
  padding: 76px 0;
}
.eyebrow { margin: 0 0 15px; color: var(--green); font-size: 14px; font-weight: 900; letter-spacing: .11em; text-transform: uppercase; }
h1, h2, h3 {
  margin-top: 0;
  line-height: 1.18;
  letter-spacing: -.045em;
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: balance;
}
h1 { margin-bottom: 26px; font-size: clamp(42px, 6vw, 72px); }
h2 { margin-bottom: 20px; font-size: clamp(30px, 4vw, 48px); }
h3 { margin-bottom: 10px; font-size: 24px; }
.hero-text { max-width: 720px; margin: 0; color: var(--muted); font-size: clamp(17px, 2vw, 21px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 56px; padding: 0 24px; border-radius: 15px; font-weight: 850; text-decoration: none; }
.primary { color: #fff; background: var(--green); }
.secondary { border: 1px solid var(--line); background: #fff; }
.capacity-card { padding: 34px; border: 1px solid #cfe0d3; border-radius: 26px; background: linear-gradient(145deg, #fff, var(--pale)); box-shadow: 0 26px 70px rgba(21, 78, 44, .12); }
.card-label { margin: 0 0 8px; color: var(--green); font-weight: 850; }
.capacity-card strong { display: block; font-size: 25px; line-height: 1.35; }
.capacity-card ul { display: grid; gap: 12px; padding-left: 20px; margin: 24px 0; }
.capacity-card small { color: var(--muted); }
.section { width: min(1180px, calc(100% - 48px)); margin: 0 auto; padding: 100px 0; }
.card-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 42px; }
.service-card { min-height: 270px; padding: 28px; border: 1px solid var(--line); border-radius: 22px; background: #fff; }
.service-card span { color: var(--green); font-weight: 900; }
.service-card h3 { margin-top: 42px; }
.service-card p, .split p, .factor-grid p { color: var(--muted); }
.process-section { width: 100%; padding-right: max(24px, calc((100vw - 1180px) / 2)); padding-left: max(24px, calc((100vw - 1180px) / 2)); background: var(--green-dark); color: #fff; }
.process-section .eyebrow { color: #9ed7b5; }
.process-list { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; padding: 0; margin: 46px 0 0; list-style: none; background: rgba(255,255,255,.16); }
.process-list li { min-height: 230px; padding: 30px; background: var(--green-dark); }
.process-list strong, .process-list span { display: block; }
.process-list strong { margin-bottom: 18px; font-size: 21px; }
.process-list span { color: #c7d9cd; }
.split { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; align-items: start; }
.check-list { display: grid; gap: 12px; margin: 0; padding: 0; list-style: none; }
.check-list li { padding: 19px 22px; border: 1px solid var(--line); border-radius: 15px; background: #fff; font-weight: 750; }
.check-list li::before { content: "✓"; margin-right: 12px; color: var(--green); }
.factor-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.factor-grid p { margin: 0; padding: 26px; border-radius: 18px; background: var(--warm); }
.factor-grid strong { display: block; margin-bottom: 7px; color: var(--ink); font-size: 19px; }
.final-cta { padding: 92px 24px; color: #fff; background: var(--green); text-align: center; }
.final-cta p { margin: 0 0 10px; color: #cfe8d8; }
.light { margin-top: 20px; color: var(--green-dark); background: #fff; }
footer { padding: 45px 24px 110px; color: var(--muted); text-align: center; }
footer p { margin: 5px 0; }
.latest-section { border-top: 1px solid var(--line); }
.article-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; margin: 28px 0; }
.article-card { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.article-card h2, .article-card h3 { margin: 8px 0 12px; font-size: 1.35rem; line-height: 1.4; }
.article-card h2 a, .article-card h3 a { color: var(--ink); text-decoration: none; }
.article-card p { color: var(--muted); line-height: 1.75; }
.article-type { margin: 0 !important; color: var(--green) !important; font-size: .82rem; font-weight: 850; }
.text-link { color: var(--green); font-weight: 850; text-decoration: none; }
.page-hero { max-width: 1180px; margin: 0 auto; padding: 88px 30px 50px; }
.page-hero h1 { margin: 8px 0 20px; font-size: clamp(2.5rem, 6vw, 4.7rem); line-height: 1.08; letter-spacing: -.05em; }
.page-hero > p:last-child { max-width: 760px; color: var(--muted); font-size: 1.08rem; line-height: 1.8; }
.article-main { background: #fff; }
.breadcrumb { max-width: 900px; margin: 0 auto; padding: 30px 24px 0; display: flex; gap: 10px; color: var(--muted); font-size: .88rem; }
.breadcrumb a { color: var(--muted); text-decoration: none; }
.content-article { max-width: 900px; margin: 0 auto; padding: 60px 24px 90px; }
.article-header { padding-bottom: 38px; border-bottom: 1px solid var(--line); }
.article-header h1 { margin: 10px 0 22px; font-size: clamp(2.3rem, 5vw, 4.2rem); line-height: 1.15; letter-spacing: -.05em; }
.article-lead { color: var(--muted); font-size: 1.14rem; line-height: 1.9; }
.content-article section { margin-top: 68px; }
.content-article h2 { margin: 0 0 20px; font-size: 1.85rem; letter-spacing: -.03em; }
.content-article p, .content-article li { font-size: 1.02rem; line-height: 1.9; }
.article-lead,
.hero-text,
.content-article p,
.content-article li,
.article-card p,
.summary-box li,
.check-list li,
.service-card p,
.capacity-card li,
.process-list span,
.split p,
.factor-grid p,
footer p {
  word-break: keep-all;
  overflow-wrap: normal;
  text-wrap: pretty;
}
.summary-box { margin: 42px 0 0; padding: 28px 32px; border-radius: 18px; background: var(--pale); }
.summary-box strong { font-size: 1.15rem; }
.summary-box ul { margin: 15px 0 0; padding-left: 22px; }
.info-steps { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.info-steps > div { padding: 24px; border: 1px solid var(--line); border-radius: 16px; }
.info-steps span { display: block; margin-bottom: 10px; color: var(--green); font-weight: 900; }
.info-steps p { margin-bottom: 0; color: var(--muted); font-size: .94rem; }
.notice { margin-top: 20px; padding: 18px 22px; border-left: 4px solid var(--green); background: #f7faf7; }
.article-visual { margin: 32px 0 0; }
.article-visual img { display: block; width: 100%; height: auto; border-radius: 18px; background: #f4f5f2; box-shadow: 0 16px 42px rgba(24, 50, 34, .1); }
.article-visual figcaption { margin-top: 12px; color: var(--muted); font-size: .88rem; line-height: 1.65; }
.article-list { padding-left: 24px; }
.article-list li { margin: 8px 0; }
.faq-section details { border-top: 1px solid var(--line); padding: 20px 0; }
.faq-section details:last-child { border-bottom: 1px solid var(--line); }
.faq-section summary { cursor: pointer; font-size: 1.05rem; font-weight: 850; }
.faq-section details p { color: var(--muted); }
.source-note { padding: 28px; border-radius: 16px; background: #f6f6f3; }
.source-note h2 { font-size: 1.3rem; }
.source-note p, .source-note li { color: var(--muted); font-size: .9rem; }
.source-note a { color: var(--green); }
.source-note a { overflow-wrap: anywhere; word-break: break-all; }
.article-cta { padding: 64px 24px; color: #fff; text-align: center; background: var(--green); }
.article-cta p { margin: 0 0 8px; }
.article-cta h2 { margin: 0 0 28px; font-size: clamp(1.7rem, 4vw, 2.8rem); }
.mobile-call { display: none; }
.mobile-break { display: none; }
.mobile-title-line { display: inline; }

@media (max-width: 900px) {
  .hero, .split { grid-template-columns: 1fr; }
  .hero { min-height: 0; }
  .card-grid, .process-list { grid-template-columns: 1fr 1fr; }
  .split { gap: 35px; }
}

@media (max-width: 600px) {
  .site-header { min-height: 64px; padding: 0 18px; }
  .site-nav { display: none; }
  .header-call { display: none; }
  .hero, .section { width: min(100% - 34px, 1180px); padding: 64px 0; }
  h1 { font-size: 36px; line-height: 1.3; }
  .mobile-break { display: block; }
  .hero-text { line-height: 1.9; }
  .hero-actions .button { width: 100%; }
  .capacity-card { padding: 26px; }
  .card-grid, .process-list, .factor-grid { grid-template-columns: 1fr; }
  .article-grid, .info-steps { grid-template-columns: 1fr; }
  .article-card { padding: 24px 20px; }
  .article-card h2, .article-card h3 { font-size: clamp(1rem, 5vw, 1.35rem); }
  .mobile-title-line { display: block; white-space: nowrap; text-wrap: nowrap; }
  .page-hero { padding: 58px 20px 30px; }
  .content-article { padding: 42px 20px 70px; }
  .content-article section { margin-top: 50px; }
  .article-header h1 { font-size: 2.1rem; line-height: 1.3; }
  .article-header h1 br { display: none; }
  .article-lead { font-size: 1.02rem; line-height: 1.95; }
  .content-article h2 { font-size: 1.58rem; line-height: 1.36; }
  .content-article p, .content-article li { font-size: .98rem; line-height: 1.95; }
  .summary-box { padding: 24px 18px; }
  .check-list li { padding-right: 18px; padding-left: 18px; line-height: 1.75; }
  .article-visual figcaption { font-size: .82rem; }
  .process-section { width: 100%; padding: 72px 17px; }
  .process-list li { min-height: auto; }
  footer { padding-bottom: 130px; }
  .mobile-call { position: fixed; right: 14px; bottom: max(14px, env(safe-area-inset-bottom)); left: 14px; z-index: 20; display: flex; align-items: center; justify-content: center; min-height: 58px; border-radius: 17px; color: #fff; background: var(--green); box-shadow: 0 12px 34px rgba(0,0,0,.24); font-size: 18px; font-weight: 900; text-decoration: none; }
}

@media (max-width: 340px) {
  .page-hero h1 { font-size: 32px; }
}
