:root {
  --primary: #1f5f4e;
  --primary-dark: #153f35;
  --accent: #c98f76;
  --bg: #f6f7f3;
  --surface: #ffffff;
  --ink: #16211d;
  --muted: #68746f;
  --line: rgba(31, 69, 57, 0.12);
  --soft-green: #eaf2ee;
  --soft-peach: #f7e9e2;
  --shadow-sm: 0 10px 28px rgba(24, 48, 40, 0.08);
  --shadow-md: 0 22px 60px rgba(24, 48, 40, 0.12);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 36px;
  --container: 1240px;
  --header-h: 78px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.72;
  letter-spacing: -0.018em;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
::selection { color: #fff; background: var(--primary); }

.skip-link {
  position: fixed;
  left: 16px;
  top: -100px;
  z-index: 9999;
  padding: 12px 18px;
  color: #fff;
  background: var(--primary-dark);
  border-radius: 10px;
  transition: top .2s ease;
}
.skip-link:focus { top: 16px; }

.container {
  width: min(calc(100% - 40px), var(--container));
  margin: 0 auto;
}
.narrow { width: min(calc(100% - 40px), 880px); margin: 0 auto; }
.section { padding: 104px 0; }
.section-sm { padding: 72px 0; }
.section-white { background: var(--surface); }
.section-soft {
  background:
    radial-gradient(circle at 10% 5%, rgba(255,255,255,.9), transparent 34%),
    linear-gradient(135deg, #edf4f0 0%, #f7f0eb 100%);
}
.section-dark {
  color: #fff;
  background:
    radial-gradient(circle at 92% 12%, rgba(255,255,255,.14), transparent 28%),
    linear-gradient(135deg, var(--primary-dark), #214f43 62%, #3f6c5f);
}
.section-heading { max-width: 760px; margin-bottom: 44px; }
.section-heading.center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--primary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}
.section-dark .eyebrow { color: #bfe0d3; }
h1, h2, h3, h4, p { margin-top: 0; }
h1, h2, h3, h4 { line-height: 1.24; letter-spacing: -0.045em; }
h1 { font-size: clamp(42px, 5.25vw, 74px); font-weight: 760; }
h2 { margin-bottom: 18px; font-size: clamp(32px, 3.3vw, 48px); font-weight: 740; }
h3 { margin-bottom: 12px; font-size: 22px; font-weight: 720; }
p:last-child { margin-bottom: 0; }
.lead { color: var(--muted); font-size: clamp(17px, 1.35vw, 20px); line-height: 1.75; }
.section-dark .lead { color: rgba(255,255,255,.76); }
.muted { color: var(--muted); }
.small { font-size: 14px; }

.btn {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 760;
  letter-spacing: -0.02em;
  cursor: pointer;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: #fff; background: var(--primary); box-shadow: 0 14px 30px rgba(31, 95, 78, .24); }
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 18px 38px rgba(31, 95, 78, .3); }
.btn-light { color: var(--primary-dark); background: #fff; box-shadow: 0 14px 30px rgba(7, 30, 23, .16); }
.btn-outline { color: var(--primary); border-color: rgba(31,95,78,.28); background: rgba(255,255,255,.72); }
.btn-outline:hover { border-color: var(--primary); background: #fff; }
.btn-icon { width: 18px; height: 18px; flex: none; }
.btn-kakao::before {
  width: 18px;
  height: 18px;
  content: "";
  border-radius: 6px;
  background: #fee500;
  box-shadow: inset 0 0 0 5px #fee500;
}

.top-notice {
  position: relative;
  z-index: 82;
  color: #f4f8f6;
  background: var(--primary-dark);
  font-size: 13px;
}
.top-notice-inner {
  display: flex;
  min-height: 36px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
}
.top-notice a { color: #fff; font-weight: 760; text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  border-bottom: 1px solid transparent;
  background: rgba(250, 251, 248, .88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: box-shadow .25s ease, border-color .25s ease, background .25s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(250,251,248,.96); box-shadow: 0 8px 30px rgba(26,50,42,.08); }
.header-inner {
  display: grid;
  min-height: var(--header-h);
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 36px;
}
.brand { display: inline-flex; align-items: center; gap: 12px; white-space: nowrap; }
.brand-mark {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--primary), var(--primary-dark));
  border-radius: 14px 14px 14px 5px;
  box-shadow: 0 10px 20px rgba(31,95,78,.18);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: -.05em;
}
.brand-logo-wrap { display: grid; min-width: 42px; height: 42px; place-items: center; overflow: hidden; border-radius: 12px; background: #fff; box-shadow: 0 8px 20px rgba(31,95,78,.12); }
.brand-logo-image { display: block; width: auto; max-width: 150px; height: 34px; object-fit: contain; }
.brand-copy { display: grid; line-height: 1.05; }
.brand-title { font-size: 19px; font-weight: 820; letter-spacing: -.04em; }
.brand-sub { margin-top: 6px; color: #81908a; font-size: 9px; font-weight: 800; letter-spacing: .14em; }
.main-nav { justify-self: center; }
.main-nav ul { display: flex; align-items: center; gap: 30px; margin: 0; padding: 0; list-style: none; }
.main-nav a { position: relative; padding: 26px 0; color: #43504b; font-size: 14px; font-weight: 700; }
.main-nav a::after {
  position: absolute;
  right: 0;
  bottom: 19px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--primary);
  border-radius: 99px;
  transform: scaleX(0);
  transition: transform .22s ease;
}
.main-nav a:hover, .main-nav a[aria-current="page"] { color: var(--primary); }
.main-nav a:hover::after, .main-nav a[aria-current="page"]::after { transform: scaleX(1); }
.header-actions { display: flex; align-items: center; gap: 10px; }
.header-actions .btn { min-height: 44px; padding: 0 20px; }
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  display: block;
  width: 18px;
  height: 2px;
  content: "";
  background: var(--primary-dark);
  border-radius: 2px;
  transition: transform .22s ease, opacity .22s ease;
}
.menu-toggle span { margin: 4px 0; }
.menu-toggle[aria-expanded="true"] span { opacity: 0; }
.menu-toggle[aria-expanded="true"]::before { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"]::after { transform: translateY(-6px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 84px;
  background:
    radial-gradient(circle at 18% 16%, rgba(255,255,255,.95), transparent 30%),
    linear-gradient(135deg, #f8f6f1 0%, #edf3ef 48%, #f6ebe5 100%);
}
.hero::after {
  position: absolute;
  width: 480px;
  height: 480px;
  right: -190px;
  bottom: -230px;
  content: "";
  border: 1px solid rgba(31,95,78,.12);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.18), 0 0 0 140px rgba(255,255,255,.12);
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: minmax(0, .93fr) minmax(480px, 1.07fr); align-items: center; gap: 64px; }
.hero-copy { padding: 30px 0; }
.hero h1 { max-width: 700px; margin-bottom: 26px; white-space: pre-line; }
.hero .lead { max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero-tags { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 13px;
  color: #4f625b;
  border: 1px solid rgba(31,95,78,.13);
  border-radius: 999px;
  background: rgba(255,255,255,.58);
  font-size: 12px;
  font-weight: 680;
}
.hero-tag::before { width: 6px; height: 6px; content: ""; background: var(--accent); border-radius: 50%; }
.hero-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.23 / 1;
  border: 1px solid rgba(255,255,255,.6);
  border-radius: 42px 42px 42px 12px;
  background: #dfe8e3;
  box-shadow: var(--shadow-md);
}
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 58%, rgba(17,49,40,.23));
}
.hero-badge {
  position: absolute;
  z-index: 2;
  right: 24px;
  bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 13px 18px;
  color: #fff;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(23,66,54,.77);
  backdrop-filter: blur(12px);
  font-size: 13px;
  font-weight: 760;
}
.hero-badge::before { width: 8px; height: 8px; content: ""; background: #fee500; border-radius: 50%; }
.hero-float {
  position: absolute;
  z-index: 3;
  left: -28px;
  bottom: 42px;
  width: 190px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 22px;
  background: rgba(255,255,255,.88);
  box-shadow: var(--shadow-sm);
  backdrop-filter: blur(14px);
}
.hero-float strong { display: block; margin-bottom: 3px; color: var(--primary); font-size: 20px; }
.hero-float span { color: var(--muted); font-size: 12px; line-height: 1.5; }

.trust-strip { position: relative; z-index: 5; margin-top: -30px; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid rgba(31,95,78,.09);
  border-radius: 22px;
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow-sm);
}
.trust-item { position: relative; display: flex; min-height: 92px; align-items: center; gap: 14px; padding: 22px 30px; }
.trust-item + .trust-item::before { position: absolute; top: 24px; bottom: 24px; left: 0; width: 1px; content: ""; background: var(--line); }
.trust-icon {
  display: grid;
  width: 42px;
  height: 42px;
  flex: none;
  place-items: center;
  color: var(--primary);
  background: var(--soft-green);
  border-radius: 13px;
  font-size: 18px;
  font-weight: 850;
}
.trust-copy strong { display: block; margin-bottom: 2px; font-size: 15px; }
.trust-copy span { color: var(--muted); font-size: 12px; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.topic-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 8px 26px rgba(23,47,39,.055);
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.topic-card:hover { border-color: rgba(31,95,78,.25); box-shadow: var(--shadow-md); transform: translateY(-7px); }
.topic-card-media { position: relative; overflow: hidden; aspect-ratio: 1.36 / 1; background: #e8eeeb; }
.topic-card-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 62%, rgba(14,43,34,.15)); }
.topic-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s cubic-bezier(.2,.75,.2,1); }
.topic-card:hover img { transform: scale(1.045); }
.topic-card-number {
  position: absolute;
  z-index: 2;
  top: 16px;
  left: 16px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--primary-dark);
  border: 1px solid rgba(255,255,255,.72);
  border-radius: 50%;
  background: rgba(255,255,255,.84);
  backdrop-filter: blur(9px);
  font-size: 12px;
  font-weight: 850;
}
.topic-card-body { padding: 25px 25px 27px; }
.topic-card-label { display: block; margin-bottom: 9px; color: var(--primary); font-size: 11px; font-weight: 820; letter-spacing: .09em; text-transform: uppercase; }
.topic-card h3 { min-height: 54px; margin-bottom: 11px; font-size: 20px; }
.topic-card p { min-height: 72px; margin-bottom: 19px; color: var(--muted); font-size: 14px; line-height: 1.65; }
.card-link { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-size: 13px; font-weight: 780; }
.card-link::after { content: "→"; transition: transform .22s ease; }
.topic-card:hover .card-link::after { transform: translateX(4px); }

.answer-panel {
  position: relative;
  overflow: hidden;
  padding: 42px;
  border: 1px solid rgba(31,95,78,.1);
  border-radius: 32px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}
.answer-panel::after {
  position: absolute;
  width: 180px;
  height: 180px;
  right: -65px;
  bottom: -80px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--soft-green), var(--soft-peach));
  opacity: .8;
}
.answer-kicker { margin-bottom: 13px; color: var(--primary); font-size: 12px; font-weight: 850; letter-spacing: .11em; }
.answer-panel p { position: relative; z-index: 2; margin: 0; font-size: 19px; line-height: 1.85; }

.criteria-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 28px; }
.criteria-card { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: rgba(255,255,255,.72); }
.criteria-num { display: grid; width: 36px; height: 36px; margin-bottom: 16px; place-items: center; color: #fff; background: var(--primary); border-radius: 12px; font-size: 12px; font-weight: 850; }
.criteria-card h3 { font-size: 17px; }
.criteria-card p { color: var(--muted); font-size: 13px; line-height: 1.65; }

.split-feature { display: grid; grid-template-columns: 1.02fr .98fr; align-items: stretch; gap: 44px; }
.split-media { position: relative; overflow: hidden; min-height: 470px; border-radius: 34px 12px 34px 34px; box-shadow: var(--shadow-md); }
.split-media img { width: 100%; height: 100%; object-fit: cover; }
.split-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(180deg, transparent 60%, rgba(16,50,40,.18)); }
.split-copy { display: flex; flex-direction: column; justify-content: center; padding: 28px 0; }
.split-copy .lead { margin-bottom: 30px; }
.feature-list { display: grid; gap: 13px; margin: 0 0 32px; padding: 0; list-style: none; }
.feature-list li { position: relative; padding-left: 30px; color: #41504a; }
.feature-list li::before { position: absolute; top: .47em; left: 0; display: grid; width: 18px; height: 18px; place-items: center; content: "✓"; color: #fff; background: var(--primary); border-radius: 50%; font-size: 10px; font-weight: 900; }

.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.process-card { position: relative; padding: 32px; border: 1px solid rgba(255,255,255,.14); border-radius: 24px; background: rgba(255,255,255,.08); }
.process-card:not(:last-child)::after { position: absolute; top: 50%; right: -17px; z-index: 2; width: 32px; height: 32px; content: "→"; color: var(--primary-dark); border-radius: 50%; background: #fff; display: grid; place-items: center; font-size: 14px; font-weight: 800; transform: translateY(-50%); }
.process-num { display: block; margin-bottom: 18px; color: #bfe0d3; font-size: 12px; font-weight: 850; letter-spacing: .12em; }
.process-card h3 { color: #fff; }
.process-card p { color: rgba(255,255,255,.68); font-size: 14px; }

.partner-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  min-height: 460px;
  border: 1px solid var(--line);
  border-radius: 38px;
  background: #fff;
  box-shadow: var(--shadow-md);
}
.partner-copy { display: flex; flex-direction: column; justify-content: center; padding: 58px; }
.partner-copy .lead { margin-bottom: 30px; }
.partner-media { position: relative; overflow: hidden; }
.partner-media img { width: 100%; height: 100%; object-fit: cover; }
.partner-media::after { position: absolute; inset: 0; content: ""; background: linear-gradient(90deg, rgba(255,255,255,.2), transparent 50%); }
.partner-pill { display: inline-flex; width: fit-content; margin-bottom: 18px; padding: 7px 12px; color: var(--primary); border: 1px solid rgba(31,95,78,.17); border-radius: 999px; background: var(--soft-green); font-size: 11px; font-weight: 800; letter-spacing: .08em; }

.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; border: 1px solid var(--line); border-radius: 18px; background: #fff; }
.faq-item summary { position: relative; padding: 22px 58px 22px 24px; list-style: none; cursor: pointer; font-weight: 740; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { position: absolute; top: 50%; right: 22px; content: "+"; color: var(--primary); font-size: 24px; font-weight: 400; transform: translateY(-50%); transition: transform .2s ease; }
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-answer { padding: 0 24px 23px; color: var(--muted); font-size: 14px; }

.source-note { margin-top: 28px; padding: 20px 22px; border: 1px solid var(--line); border-radius: 16px; background: rgba(255,255,255,.7); color: var(--muted); font-size: 13px; }
.source-note strong { color: var(--ink); }
.source-note a { color: var(--primary); text-decoration: underline; text-underline-offset: 3px; }

.article-hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 72px;
  background:
    radial-gradient(circle at 85% 10%, rgba(255,255,255,.84), transparent 29%),
    linear-gradient(135deg, #eef4f0 0%, #f8f1ec 100%);
}
.breadcrumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 24px; color: #708079; font-size: 12px; }
.breadcrumbs a:hover { color: var(--primary); }
.breadcrumbs span::before { margin-right: 8px; content: "/"; color: #a7b1ad; }
.article-hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; align-items: center; gap: 54px; }
.article-hero h1 { margin-bottom: 22px; font-size: clamp(38px, 4.7vw, 62px); }
.article-meta { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 28px; color: var(--muted); font-size: 12px; }
.article-meta span { display: inline-flex; align-items: center; gap: 7px; }
.article-meta span::before { width: 5px; height: 5px; content: ""; background: var(--accent); border-radius: 50%; }
.article-hero-media { overflow: hidden; aspect-ratio: 1.28 / 1; border-radius: 34px 34px 12px 34px; box-shadow: var(--shadow-md); }
.article-hero-media img { width: 100%; height: 100%; object-fit: cover; }

.article-layout { display: grid; grid-template-columns: minmax(0, 1fr) 290px; align-items: start; gap: 54px; }
.article-content { min-width: 0; }
.article-content h2 { margin-top: 64px; margin-bottom: 20px; font-size: clamp(28px, 3vw, 38px); }
.article-content h2:first-of-type { margin-top: 0; }
.article-content p { color: #3f4b46; font-size: 17px; line-height: 1.9; }
.article-summary { margin-bottom: 44px; padding: 30px 32px; border-left: 4px solid var(--primary); border-radius: 0 20px 20px 0; background: var(--soft-green); }
.article-summary strong { display: block; margin-bottom: 10px; color: var(--primary); font-size: 12px; letter-spacing: .1em; }
.article-summary p { margin: 0; color: #33443d; font-size: 18px; line-height: 1.8; }
.key-list { display: grid; gap: 11px; margin: 0 0 44px; padding: 0; list-style: none; }
.key-list li { position: relative; padding: 14px 18px 14px 46px; border: 1px solid var(--line); border-radius: 14px; background: #fff; color: #405049; font-size: 14px; }
.key-list li::before { position: absolute; top: 50%; left: 17px; display: grid; width: 20px; height: 20px; place-items: center; content: "✓"; color: #fff; background: var(--primary); border-radius: 50%; font-size: 10px; font-weight: 900; transform: translateY(-50%); }
.info-table-wrap { overflow-x: auto; margin: 36px 0 48px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.info-table { width: 100%; border-collapse: collapse; min-width: 560px; }
.info-table th, .info-table td { padding: 17px 20px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.info-table tr:last-child td { border-bottom: 0; }
.info-table th { color: var(--primary-dark); background: var(--soft-green); font-size: 13px; }
.info-table td { color: #46544e; font-size: 14px; }
.local-note { margin: 48px 0; padding: 30px; border: 1px solid rgba(201,143,118,.23); border-radius: 24px; background: linear-gradient(135deg, #fbf4ef, #f3f7f4); }
.local-note h3 { color: var(--primary-dark); }
.local-note p { margin: 0; font-size: 15px; }
.article-sidebar { position: sticky; top: 112px; display: grid; gap: 18px; }
.sidebar-card { padding: 24px; border: 1px solid var(--line); border-radius: 20px; background: #fff; box-shadow: 0 8px 24px rgba(23,47,39,.05); }
.sidebar-card h3 { font-size: 17px; }
.sidebar-card p { color: var(--muted); font-size: 13px; line-height: 1.65; }
.sidebar-nav { margin: 0; padding: 0; list-style: none; }
.sidebar-nav li + li { margin-top: 10px; }
.sidebar-nav a { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 9px 0; color: #52615b; border-bottom: 1px solid var(--line); font-size: 13px; }
.sidebar-nav a:hover { color: var(--primary); }
.sidebar-nav a::after { content: "→"; }
.article-cta { margin-top: 58px; padding: 36px; color: #fff; border-radius: 28px; background: linear-gradient(135deg, var(--primary-dark), var(--primary)); box-shadow: var(--shadow-md); }
.article-cta p { color: rgba(255,255,255,.75); font-size: 15px; }
.article-cta .btn { margin-top: 10px; }
.article-faq { margin-top: 68px; }
.related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.related-card { overflow: hidden; border: 1px solid var(--line); border-radius: 20px; background: #fff; transition: transform .22s ease, box-shadow .22s ease; }
.related-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-sm); }
.related-card img { width: 100%; aspect-ratio: 1.6 / 1; object-fit: cover; }
.related-card-body { padding: 18px; }
.related-card-body span { display: block; margin-bottom: 6px; color: var(--primary); font-size: 10px; font-weight: 800; letter-spacing: .08em; }
.related-card-body strong { font-size: 14px; line-height: 1.45; }

.page-hero { padding: 78px 0; text-align: center; background: linear-gradient(135deg, #edf4f0, #f7eee8); }
.page-hero h1 { margin-bottom: 18px; font-size: clamp(40px, 5vw, 64px); }
.page-hero .lead { max-width: 720px; margin: 0 auto; }
.content-card { padding: 42px; border: 1px solid var(--line); border-radius: 28px; background: #fff; box-shadow: var(--shadow-sm); }
.content-card + .content-card { margin-top: 22px; }
.content-card h2 { margin-top: 0; font-size: 30px; }
.content-card p, .content-card li { color: #46534e; }
.content-card ul { padding-left: 20px; }
.partner-benefits { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 30px; }
.partner-benefit { padding: 28px; border: 1px solid var(--line); border-radius: 20px; background: #fff; }
.partner-benefit strong { display: block; margin-bottom: 8px; color: var(--primary); font-size: 18px; }
.partner-benefit p { color: var(--muted); font-size: 13px; }

.site-footer { padding: 68px 0 112px; color: #dce8e3; background: #132f27; }
.footer-grid { display: grid; grid-template-columns: 1.2fr .8fr .8fr; gap: 54px; }
.footer-brand .brand-title { color: #fff; font-size: 22px; }
.footer-brand .brand-sub { color: #8db1a5; }
.footer-brand p { max-width: 460px; margin-top: 20px; color: #9fb6ae; font-size: 13px; }
.footer-title { margin-bottom: 16px; color: #fff; font-size: 13px; font-weight: 800; letter-spacing: .08em; }
.footer-links { display: grid; gap: 10px; }
.footer-links a { color: #abc0b9; font-size: 13px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; margin-top: 50px; padding-top: 26px; color: #78938a; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; }
.footer-disclaimer { max-width: 780px; }

.mobile-consult {
  position: fixed;
  z-index: 70;
  right: 14px;
  bottom: 14px;
  left: 14px;
  display: none;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #1f1f1f;
  border-radius: 16px;
  background: #fee500;
  box-shadow: 0 16px 38px rgba(23,39,32,.22);
  font-size: 15px;
  font-weight: 820;
}
.mobile-consult::before { width: 18px; height: 18px; content: ""; border-radius: 6px; background: #2b241f; opacity: .92; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .62s ease, transform .62s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
  .main-nav ul { gap: 20px; }
  .main-nav a { font-size: 13px; }
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .criteria-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; grid-template-columns: 1fr 1fr; }
}

@media (max-width: 920px) {
  :root { --header-h: 70px; }
  .container, .narrow { width: min(calc(100% - 32px), var(--container)); }
  .main-nav {
    position: fixed;
    z-index: 79;
    top: calc(var(--header-h) + 36px);
    right: 16px;
    left: 16px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255,255,255,.98);
    box-shadow: var(--shadow-md);
  }
  body:not(.has-top-notice) .main-nav { top: var(--header-h); }
  .main-nav.is-open { display: block; }
  .main-nav ul { display: grid; gap: 0; }
  .main-nav a { display: block; padding: 15px 10px; border-bottom: 1px solid var(--line); }
  .main-nav li:last-child a { border-bottom: 0; }
  .main-nav a::after { display: none; }
  .menu-toggle { display: flex; flex-direction: column; }
  .header-actions .btn { display: none; }
  .header-inner { grid-template-columns: auto 1fr auto; gap: 16px; }
  .hero { padding-top: 56px; }
  .hero-grid, .article-hero-grid, .split-feature, .partner-card { grid-template-columns: 1fr; }
  .hero-copy { padding: 0; }
  .hero-media { max-width: 720px; }
  .hero-float { left: 18px; bottom: 18px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item + .trust-item::before { top: 0; right: 24px; bottom: auto; left: 24px; width: auto; height: 1px; }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .split-media { min-height: 420px; order: 2; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card:not(:last-child)::after { top: auto; right: 50%; bottom: -17px; transform: translateX(50%) rotate(90deg); }
  .partner-media { min-height: 350px; }
  .article-hero-media { max-width: 760px; }
  .article-sidebar { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1.2fr .8fr; }
  .footer-brand { grid-column: 1 / -1; }
  .partner-benefits { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .section { padding: 78px 0; }
  .section-sm { padding: 58px 0; }
  .top-notice-inner { min-height: 38px; font-size: 11px; }
  .brand-mark { width: 38px; height: 38px; border-radius: 12px 12px 12px 4px; }
  .brand-title { font-size: 17px; }
  .brand-sub { font-size: 8px; }
  .hero { padding: 42px 0 62px; }
  .hero h1 { margin-bottom: 20px; font-size: 40px; }
  .hero .lead { font-size: 16px; }
  .hero-actions { margin-top: 26px; }
  .hero-actions .btn { width: 100%; }
  .hero-media { border-radius: 28px 28px 28px 10px; }
  .hero-float { display: none; }
  .hero-badge { right: 14px; bottom: 14px; padding: 10px 14px; font-size: 11px; }
  .trust-strip { margin-top: -20px; }
  .trust-item { min-height: 80px; padding: 18px 20px; }
  .card-grid, .criteria-grid, .related-grid, .partner-benefits { grid-template-columns: 1fr; }
  .topic-card h3, .topic-card p { min-height: auto; }
  .answer-panel { padding: 28px 24px; border-radius: 24px; }
  .answer-panel p { font-size: 16px; }
  .split-media { min-height: 320px; border-radius: 24px 8px 24px 24px; }
  .partner-copy { padding: 36px 26px; }
  .partner-media { min-height: 270px; }
  .article-hero { padding: 42px 0 50px; }
  .article-hero h1 { font-size: 38px; }
  .article-hero-grid { gap: 32px; }
  .article-summary { padding: 24px; }
  .article-summary p { font-size: 16px; }
  .article-content p { font-size: 16px; }
  .article-content h2 { margin-top: 48px; font-size: 29px; }
  .content-card { padding: 28px 22px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .site-footer { padding-bottom: 100px; }
  .mobile-consult { display: flex; }
}
