﻿:root {
  --jade: #0d4f52;
  --jade-light: #1a8a8f;
  --jade-dark: #083538;
  --gold: #c9a227;
  --gold-hover: #a8861e;
  --ink: #0b1220;
  --muted: #5c6678;
  --border: #dde3ec;
  --surface: #f0f4f8;
  --white: #ffffff;
  --bg: #eef2f7;
  --shadow: 0 8px 32px rgba(11, 18, 32, 0.08);
  --shadow-lg: 0 20px 60px rgba(11, 18, 32, 0.12);
  --radius: 12px;
  --radius-lg: 18px;
  --glow-jade: 0 0 0 1px rgba(26, 138, 143, 0.12), 0 12px 40px rgba(13, 79, 82, 0.18);
  --glow-gold: 0 8px 28px rgba(201, 162, 39, 0.35);
}
*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Noto Sans SC", system-ui, sans-serif;
  color: var(--ink);
  line-height: 1.75;
  background: var(--bg);
  background-image:
    radial-gradient(ellipse 90% 60% at 50% -10%, rgba(26, 138, 143, 0.14), transparent 55%),
    radial-gradient(ellipse 50% 40% at 100% 0%, rgba(201, 162, 39, 0.08), transparent 50%),
    linear-gradient(180deg, #f6f9fc 0%, var(--bg) 100%);
  min-height: 100vh;
}
a { color: var(--jade-light); }
img { max-width: 100%; }
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; width: 100%; }
.site-main { display: block; width: 100%; }
.muted { color: var(--muted); font-size: 0.92rem; }
.small { font-size: 0.85rem; }

/* Glass card */
.glass-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

/* Page shells */
.page-shell { width: 100%; }
.page-hero {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 56px 24px 80px;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, #071a1c 0%, var(--jade-dark) 35%, #0f3d5c 70%, #0a2838 100%);
}
.page-hero-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 85%, rgba(201, 162, 39, 0.18), transparent 45%),
    radial-gradient(circle at 85% 15%, rgba(26, 138, 143, 0.25), transparent 40%),
    repeating-linear-gradient(90deg, transparent, transparent 39px, rgba(255,255,255,0.025) 39px, rgba(255,255,255,0.025) 40px),
    repeating-linear-gradient(0deg, transparent, transparent 39px, rgba(255,255,255,0.025) 39px, rgba(255,255,255,0.025) 40px);
}
.page-hero-inner { position: relative; z-index: 1; }
.page-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin: 0 0 18px;
}
.page-eyebrow--dark {
  background: rgba(13, 79, 82, 0.08);
  border-color: rgba(13, 79, 82, 0.15);
  color: var(--jade);
}
.page-hero h1 {
  font-family: "Noto Serif SC", Georgia, serif;
  font-size: clamp(1.85rem, 4.5vw, 2.75rem);
  line-height: 1.2;
  margin: 0 0 14px;
  color: #fff;
  letter-spacing: 0.02em;
}
.page-lead {
  margin: 0 auto;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.7;
}
.page-body { position: relative; z-index: 2; }
.contact-page-body { margin-top: -48px; padding-bottom: 72px; }

/* Header */
.site-header {
  background: rgba(255, 255, 255, 0.88);
  border-bottom: 1px solid rgba(221, 227, 236, 0.9);
  position: sticky;
  top: 0;
  z-index: 100;
  backdrop-filter: blur(14px);
  box-shadow: 0 4px 24px rgba(11, 18, 32, 0.04);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 16px; flex-wrap: wrap; }
.logo { display: flex; align-items: center; gap: 10px; text-decoration: none; color: inherit; }
.logo-mark {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--jade) 0%, var(--jade-light) 100%);
  color: #fff; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem;
  box-shadow: var(--glow-jade);
}
.logo-text { font-weight: 700; font-size: 1.15rem; color: var(--jade); line-height: 1.2; }
.logo-text small { display: block; font-size: 0.7rem; font-weight: 500; color: var(--muted); }
.main-nav { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.main-nav a { color: var(--ink); text-decoration: none; font-size: 0.9rem; font-weight: 500; transition: color .15s; }
.main-nav a:hover { color: var(--jade-light); }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 8px; text-decoration: none;
  font-weight: 600; border: 2px solid transparent; cursor: pointer;
  transition: background .2s, transform .2s, box-shadow .2s; font-size: 0.95rem;
}
.btn-gold { background: linear-gradient(135deg, #d4ad2e 0%, var(--gold) 50%, #a8861e 100%); color: #fff; }
.btn-gold:hover { transform: translateY(-2px); box-shadow: var(--glow-gold); }
.btn-glow { box-shadow: var(--glow-gold); }
.btn-outline { background: transparent; border-color: var(--jade); color: var(--jade); }
.btn-outline:hover { background: rgba(13, 79, 82, 0.06); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-sm { padding: 8px 18px; font-size: 0.85rem; }

/* Hero */
.hero-main {
  background:
    linear-gradient(135deg, rgba(13, 79, 82, 0.06) 0%, transparent 40%),
    linear-gradient(180deg, #f8fbfc 0%, #fff 55%, #faf6ee 100%);
  padding: 80px 24px 64px;
  position: relative;
  overflow: hidden;
}
.hero-main::before {
  content: "";
  position: absolute;
  top: -40%; right: -10%;
  width: 60%; height: 80%;
  background: radial-gradient(ellipse, rgba(26, 138, 143, 0.1), transparent 70%);
  pointer-events: none;
}
.hero-main .hero-content { max-width: 1140px; margin: 0 auto; }
.hero-eyebrow { font-size: 0.85rem; font-weight: 600; color: var(--jade); letter-spacing: 0.06em; text-transform: uppercase; margin: 0 0 12px; }
.hero-main h1 { font-family: "Noto Serif SC", Georgia, serif; font-size: clamp(2rem, 5vw, 3.25rem); line-height: 1.15; margin: 0 0 16px; color: var(--ink); }
.lead { font-size: 1.15rem; color: var(--muted); max-width: 640px; margin: 0 0 28px; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 40px; }
.hero-stats { max-width: 1140px; margin: 0 auto; display: flex; gap: 40px; flex-wrap: wrap; padding-top: 32px; border-top: 1px solid var(--border); }
.stat-num { display: block; font-size: 2rem; font-weight: 700; color: var(--jade); font-family: "Noto Serif SC", serif; }
.stat-label { font-size: 0.875rem; color: var(--muted); }

/* Sections */
.section { padding: 56px 24px; max-width: 1140px; margin: 0 auto; }
.section-alt { background: var(--surface); max-width: none; }
.section-alt > * { max-width: 1140px; margin-left: auto; margin-right: auto; }
.section-head { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 28px; flex-wrap: wrap; gap: 12px; }
.section-head h2 { font-family: "Noto Serif SC", serif; font-size: 1.75rem; margin: 0; }
.section-head p { color: var(--muted); margin: 0; }
.section-more { color: var(--jade); text-decoration: none; font-weight: 500; }

/* Cards */
.grid { display: grid; gap: 20px; }
.cards-3 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.cards-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
.service-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow .25s, transform .25s, border-color .25s;
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: rgba(26, 138, 143, 0.35); }
.card-num { font-size: 0.75rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; }
.service-card h3 { font-size: 1.15rem; margin: 8px 0; }
.service-card h3 a { color: var(--ink); text-decoration: none; }
.service-card p { color: var(--muted); font-size: 0.92rem; margin: 0 0 12px; }
.card-link { font-size: 0.9rem; font-weight: 600; text-decoration: none; }
.trust-item { padding: 20px; }
.trust-item strong { display: block; font-size: 1rem; margin-bottom: 6px; color: var(--jade); }

/* Lists */
.link-list { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 10px; }
.link-list a { text-decoration: none; color: var(--ink); padding: 10px 14px; display: block; border-radius: 8px; border: 1px solid var(--border); font-size: 0.92rem; }
.link-list a:hover { border-color: var(--jade); background: #f0f7f7; }

/* CTA */
.cta-banner { background: var(--jade); color: #fff; text-align: center; padding: 56px 24px; margin-top: 0; }
.cta-banner h2 { font-family: "Noto Serif SC", serif; margin: 0 0 8px; }
.cta-banner p { opacity: .9; margin: 0 0 24px; }
.cta-banner .btn-gold { background: var(--gold); }

/* Content layouts */
.layout-content { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 32px 24px 64px; }
.layout-data { padding: 32px 24px 64px; }
@media (max-width: 900px) { .layout-content { grid-template-columns: 1fr; } }
.content-main h1, .layout-data h1, .data-page h1 { font-family: "Noto Serif SC", serif; font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1.25; margin-top: 0; }
.summary { font-size: 1.05rem; color: var(--muted); }
.prose { max-width: 72ch; }
.prose h2 { font-size: 1.25rem; margin-top: 2em; }

/* Formality */
.meta-grid { display: grid; grid-template-columns: 130px 1fr; gap: 10px 20px; background: var(--surface); padding: 24px; border-radius: 12px; margin: 24px 0; border: 1px solid var(--border); }
.meta-grid dt { font-weight: 600; color: var(--muted); font-size: 0.88rem; }
.meta-grid dd { margin: 0; }
.authority-multilingual .authority-alt { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.tag { display: inline-block; background: #e8f2f2; color: var(--jade); padding: 5px 12px; border-radius: 20px; margin: 4px 6px 0 0; font-size: 0.82rem; }
.related-links ul { list-style: none; padding: 0; }
.related-links li { margin-bottom: 8px; font-size: 0.9rem; }
.cta-consult { background: linear-gradient(180deg, #faf8f3, #fff); border: 1px solid var(--border); border-radius: 12px; padding: 24px; }
.cta-consult h2 { font-size: 1.1rem; margin: 0 0 8px; }

/* Listing */
.listing-page { width: 100%; }
.listing-page-inner { padding: 32px 0 64px; }
.listing-page:not(.listing-page--register) .listing-page-inner { max-width: 1140px; margin: 0 auto; padding-left: 24px; padding-right: 24px; }
.listing-page--register { max-width: none; padding: 0; }
.register-hub { display: grid; grid-template-columns: 1fr 300px; gap: 40px; max-width: 1140px; margin: 0 auto; padding: 32px 24px 64px; align-items: start; }
.register-hub-main { min-width: 0; }
.register-hub-aside { position: sticky; top: 88px; display: flex; flex-direction: column; gap: 20px; }
.register-quick-nav { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px; }
.register-quick-nav h2 { font-size: 1rem; margin: 0 0 12px; color: var(--jade); }
.register-quick-nav ul { list-style: none; padding: 0; margin: 0; }
.register-quick-nav li { margin-bottom: 8px; }
.register-quick-nav a { text-decoration: none; color: var(--ink); font-size: 0.9rem; }
.register-quick-nav a:hover { color: var(--jade); }
.register-section { margin-top: 32px; }
.register-section-title { font-size: 1.1rem; margin: 0 0 16px; color: var(--jade); font-family: "Noto Serif SC", serif; }
.register-section--secondary { margin-top: 40px; padding-top: 24px; border-top: 1px solid var(--border); }
.listing-grid--register { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
.listing-grid--compact { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); }
.listing-card--featured { border-color: #c5ddd8; background: linear-gradient(180deg, #f8fcfc, #fff); }
@media (max-width: 900px) {
  .register-hub { grid-template-columns: 1fr; }
  .register-hub-aside { position: static; }
}
.listing-intro { margin-bottom: 24px; }
.listing-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; margin-top: 24px; }
.listing-grid--lsic { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); }
.listing-card { position: relative; border: 1px solid var(--border); border-radius: 12px; padding: 18px 20px 16px; transition: border-color .2s, box-shadow .2s; background: var(--white); }
.listing-card:hover { border-color: var(--jade); box-shadow: var(--shadow); }
.listing-card h3 { font-size: 0.98rem; margin: 0 0 8px; line-height: 1.4; }
.listing-card h3 a { color: var(--ink); text-decoration: none; }
.listing-card h3 a:hover { color: var(--jade); }
.listing-meta { font-size: 0.86rem; color: var(--muted); margin: 0 0 8px; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.list-meta { color: var(--muted); font-size: 0.9rem; }
.listing-empty { color: var(--muted); padding: 32px; text-align: center; background: var(--surface); border-radius: 12px; }
.lsic-code-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; font-family: ui-monospace, monospace; color: var(--jade); background: #e8f2f2; padding: 2px 8px; border-radius: 6px; margin-bottom: 8px; }
.sector-tag { display: inline-block; font-size: 0.72rem; color: var(--muted); background: var(--surface); padding: 2px 8px; border-radius: 20px; }
.lsic-section-nav { display: flex; flex-wrap: wrap; gap: 8px; margin: 20px 0 8px; }
.section-pill { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; border-radius: 20px; border: 1px solid var(--border); text-decoration: none; color: var(--ink); font-size: 0.82rem; background: var(--white); }
.section-pill span { color: var(--muted); font-size: 0.75rem; }
.section-pill:hover, .section-pill.active { border-color: var(--jade); background: #f0f7f7; color: var(--jade); }
.pagination { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 32px; align-items: center; }
.page-link { padding: 8px 14px; border: 1px solid var(--border); border-radius: 8px; text-decoration: none; color: var(--ink); font-size: 0.88rem; }
.page-link:hover, .page-link.active { border-color: var(--jade); background: var(--jade); color: #fff; }
.lsic-meta { margin-bottom: 24px; }

/* Data tables */
.stats-hub { max-width: 100%; }
.stats-intro { margin-bottom: 24px; }
.stats-kpi { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin: 24px 0 28px; }
.stats-kpi-card { background: var(--surface); border: 1px solid var(--border); border-radius: 12px; padding: 20px 22px; }
.stats-kpi-num { display: block; font-size: 1.75rem; font-weight: 700; color: var(--jade); font-variant-numeric: tabular-nums; }
.stats-kpi-label { display: block; margin-top: 6px; font-size: 0.88rem; color: var(--muted); }
.stats-kpi-sub { display: block; font-size: 0.9rem; color: var(--text); margin-top: 4px; }
.stats-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.stats-tab { padding: 8px 16px; border-radius: 999px; border: 1px solid var(--border); background: #fff; color: var(--text); text-decoration: none; font-size: 0.9rem; transition: .15s; }
.stats-tab:hover { border-color: var(--gold); color: var(--jade); }
.stats-tab.active { background: var(--jade); border-color: var(--jade); color: #fff; }
.stats-panel { background: #fff; border: 1px solid var(--border); border-radius: 14px; padding: 24px; margin-bottom: 32px; }
.stats-panel-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 8px; margin-bottom: 20px; }
.stats-panel-head h2 { margin: 0; font-size: 1.2rem; }
.stats-bars { margin-bottom: 24px; display: grid; gap: 10px; }
.stats-bar-row { display: grid; grid-template-columns: minmax(100px, 140px) 1fr 48px; gap: 12px; align-items: center; font-size: 0.85rem; }
.stats-bar-label { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.stats-bar-track { height: 8px; background: #eee; border-radius: 4px; overflow: hidden; }
.stats-bar-fill { height: 100%; background: linear-gradient(90deg, var(--jade), #3d8b7a); border-radius: 4px; }
.stats-bar-val { text-align: right; font-variant-numeric: tabular-nums; color: var(--muted); }
.stats-table-wrap { overflow-x: auto; }
.stats-table { margin: 0; min-width: 480px; }
.stats-total-row { background: #f0f7f4 !important; }
.stats-total-row td { border-top: 2px solid var(--jade); }
.stats-foot { margin-top: 16px; }
.stats-detail-links { margin-top: 8px; }
.stats-detail-links h2 { font-size: 1.05rem; margin-bottom: 12px; }
.stats-link-grid { display: flex; flex-wrap: wrap; gap: 10px 20px; list-style: none; padding: 0; margin: 0; }
.stats-link-grid a { color: var(--jade); }
.stats-empty { padding: 40px; text-align: center; color: var(--muted); }
/* Data tables */
.data-table { width: 100%; border-collapse: collapse; margin: 20px 0; font-size: 0.9rem; }
.data-table th, .data-table td { border: 1px solid var(--border); padding: 10px 14px; text-align: left; }
.data-table th { background: var(--surface); font-weight: 600; color: var(--jade); }
.data-table tr:nth-child(even) { background: #fafaf8; }

/* Static / contact pages */
.page-shell--static { padding: 48px 0 72px; }
.page-shell--service { padding: 40px 0 72px; }
.service-page { padding: 36px 40px; }
.service-page-head { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--border); }
.service-page-head h1 { font-family: "Noto Serif SC", serif; font-size: clamp(1.6rem, 3.5vw, 2.35rem); margin: 0 0 12px; }
.data-page { min-width: 0; }
.breadcrumb { font-size: 0.85rem; color: var(--muted); margin-bottom: 20px; display: flex; flex-wrap: wrap; align-items: center; gap: 6px 10px; }
.breadcrumb a { color: var(--jade); text-decoration: none; font-weight: 500; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb-sep { color: #b0b8c4; user-select: none; }
.breadcrumb [aria-current="page"] { color: var(--ink); font-weight: 500; }
.static-page { padding: 0; }
.static-page-head { text-align: center; margin-bottom: 32px; }
.static-page-head h1 {
  font-family: "Noto Serif SC", serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  margin: 0;
}
.static-page .glass-card { padding: 36px 40px; }
.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(360px, 1.2fr);
  gap: 28px;
  align-items: start;
}
@media (max-width: 900px) { .contact-page-grid { grid-template-columns: 1fr; } }
.card-icon-head { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; }
.card-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, rgba(26, 138, 143, 0.12), rgba(13, 79, 82, 0.06));
  border-radius: 12px;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-card, .contact-form-section { padding: 32px 36px; }
.contact-info-card h2, .contact-form-section h2 {
  font-family: "Noto Serif SC", serif;
  font-size: 1.2rem;
  margin: 0;
  color: var(--jade);
}
.contact-address-block {
  background: linear-gradient(135deg, rgba(26, 138, 143, 0.08), rgba(255,255,255,0.9));
  border: 1px solid rgba(26, 138, 143, 0.2);
  border-left: 4px solid var(--jade-light);
  border-radius: var(--radius);
  padding: 18px 20px;
  margin-bottom: 22px;
}
.contact-address-label { display: block; font-size: 0.75rem; font-weight: 700; letter-spacing: 0.08em; color: var(--jade-light); text-transform: uppercase; margin-bottom: 6px; }
.contact-address-value { margin: 0; font-size: 1.1rem; font-weight: 700; color: var(--ink); line-height: 1.5; }
.contact-info-list { list-style: none; padding: 0; margin: 0 0 18px; }
.contact-info-list li { display: grid; grid-template-columns: 5.5em 1fr; gap: 8px 12px; margin-bottom: 14px; font-size: 0.95rem; align-items: baseline; }
.contact-info-list strong { color: var(--muted); font-weight: 600; font-size: 0.88rem; }
.contact-info-list span { word-break: break-word; }
.contact-region-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.region-tag {
  display: inline-block;
  padding: 5px 12px;
  border-radius: 999px;
  background: rgba(13, 79, 82, 0.07);
  border: 1px solid rgba(13, 79, 82, 0.12);
  color: var(--jade);
  font-size: 0.8rem;
  font-weight: 500;
}
.footer-regions { font-size: 0.85rem; color: #8a919c; margin-top: 8px; }
.footer-contact p { margin: 0 0 8px; font-size: 0.88rem; }
.footer-contact .small { font-size: 0.8rem; }
.cta-wechat, .cta-phone { font-size: 0.88rem; margin: 0 0 8px; }
.contact-strip { display: flex; flex-wrap: wrap; gap: 12px 20px; font-size: 0.82rem; color: var(--muted); padding: 8px 0 0; }
.contact-item a { color: inherit; }

/* Service page */
.process-steps .steps { list-style: none; padding: 0; }
.process-steps li { display: flex; gap: 16px; margin-bottom: 20px; padding: 16px; background: var(--surface); border-radius: 10px; }
.step-num { width: 36px; height: 36px; background: var(--jade); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; flex-shrink: 0; }
.price-box { background: var(--surface); border: 2px solid var(--gold); border-radius: 12px; padding: 28px; margin-top: 32px; text-align: center; }
.price-value { font-size: 1.25rem; font-weight: 600; color: var(--jade); }
.includes-list ul { padding-left: 1.2em; }
.includes-list li { margin-bottom: 6px; }

/* Content pages */
.content-body h2 { font-size: 1.15rem; margin: 28px 0 12px; color: var(--ink); border-left: 3px solid var(--jade); padding-left: 12px; }
.content-body ul { padding-left: 1.2em; }
.content-body li { margin-bottom: 8px; line-height: 1.6; }
.content-body .lead { font-size: 1.05rem; color: var(--ink); }
.content-body .source-note { margin-top: 32px; color: var(--muted); font-size: 0.85rem; }
.meta-grid { display: grid; grid-template-columns: 120px 1fr; gap: 8px 16px; background: var(--surface); padding: 20px; border-radius: 10px; margin: 20px 0; }
.meta-grid dt { font-weight: 600; color: var(--muted); font-size: 0.88rem; }
.meta-grid dd { margin: 0; }
.authority-multilingual .authority-alt { color: var(--muted); font-size: 0.88rem; line-height: 1.5; }
.doc-note { color: var(--muted); font-size: 0.88rem; }

/* Contact form */
.contact-form { width: 100%; display: flex; flex-direction: column; gap: 18px; }
.contact-form .field { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.contact-form .field-label { font-size: 0.9rem; font-weight: 600; color: var(--ink); }
.contact-form .req { color: #b42318; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 16px;
  border: 1px solid var(--border); border-radius: 10px;
  font: inherit; background: rgba(255,255,255,0.9);
  transition: border-color .15s, box-shadow .15s;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--jade-light);
  box-shadow: 0 0 0 4px rgba(26, 138, 143, 0.12);
}
.contact-form textarea { resize: vertical; min-height: 110px; }
.contact-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 520px) { .contact-form-row { grid-template-columns: 1fr; } }
.contact-prefs {
  margin: 0; padding: 18px 20px;
  border: 1px solid var(--border); border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(240,244,248,0.8), rgba(255,255,255,0.6));
}
.contact-prefs legend { font-size: 0.9rem; font-weight: 600; padding: 0 6px; color: var(--ink); }
.contact-pref-options { display: flex; flex-direction: column; gap: 12px; margin-top: 4px; }
.contact-form .field-check { flex-direction: row; align-items: flex-start; gap: 10px; font-weight: 400; cursor: pointer; }
.contact-form .field-check span { line-height: 1.45; font-size: 0.9rem; color: var(--ink); }
.contact-form .field-check input[type="checkbox"] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; accent-color: var(--jade); cursor: pointer; }
.contact-form-hint { margin: -4px 0 0; font-size: 0.85rem; }
.contact-form .btn { align-self: flex-start; min-width: 140px; }
.form-msg { margin: 0; font-size: 0.92rem; font-weight: 500; }
.form-msg.ok { color: #0d7a4a; }
.form-msg.err { color: #b42318; }

/* Home extras */
.keyword-intro { padding-top: 0; padding-bottom: 16px; }
.keyword-lead { font-size: 0.95rem; color: var(--muted); line-height: 1.85; max-width: 900px; margin: 0 auto; text-align: center; }
.keyword-lead a { font-weight: 500; }
.section-foot-link { text-align: center; margin-top: 20px; font-weight: 600; }
.scenario-card { background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 22px; }
.scenario-card h3 { font-size: 1rem; margin: 0 0 8px; color: var(--jade); }
.scenario-card p { font-size: 0.88rem; color: var(--muted); margin: 0 0 14px; }
.scenario-links { display: flex; gap: 16px; font-size: 0.85rem; font-weight: 600; }
.resource-card { display: block; text-decoration: none; color: inherit; background: var(--white); border: 1px solid var(--border); border-radius: 12px; padding: 22px; transition: border-color .2s, box-shadow .2s; }
.resource-card:hover { border-color: var(--jade); box-shadow: var(--shadow); }
.resource-badge { display: inline-block; font-size: 0.75rem; font-weight: 700; color: var(--gold); margin-bottom: 8px; }
.resource-card h3 { font-size: 1.05rem; margin: 0 0 6px; color: var(--ink); }
.resource-card p { font-size: 0.86rem; color: var(--muted); margin: 0; }
.keyword-pills { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.keyword-pill { display: inline-block; padding: 8px 16px; border-radius: 20px; border: 1px solid var(--border); background: var(--white); text-decoration: none; color: var(--ink); font-size: 0.88rem; transition: all .2s; }
.keyword-pill:hover { border-color: var(--jade); background: #f0f7f7; color: var(--jade); }
.guide-links { list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 12px; }
.guide-links a { display: block; text-decoration: none; color: inherit; border: 1px solid var(--border); border-radius: 10px; padding: 16px 18px; background: var(--white); transition: border-color .2s; }
.guide-links a:hover { border-color: var(--jade); }
.guide-links strong { display: block; font-size: 0.95rem; margin-bottom: 4px; color: var(--ink); }
.guide-links span { font-size: 0.82rem; color: var(--muted); }
.faq-mini-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 10px; }
.faq-mini-card { display: block; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px; text-decoration: none; color: var(--ink); font-size: 0.9rem; background: var(--white); transition: border-color .2s; }
.faq-mini-card:hover { border-color: var(--jade); background: #f0f7f7; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-outline-light { border-color: rgba(255,255,255,.6) !important; color: #fff !important; }
.cta-outline-light:hover { background: rgba(255,255,255,.12) !important; }

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0b1220 0%, #070d16 100%);
  color: #9aa3b5;
  margin-top: 0;
  padding: 56px 0 28px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 32px; margin-bottom: 32px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
.footer-brand { color: #fff; font-size: 1.1rem; }
.site-footer h4 { color: #fff; font-size: 0.9rem; margin: 0 0 12px; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer a { color: #aab0bc; text-decoration: none; font-size: 0.88rem; }
.site-footer a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid #2a3140; padding-top: 20px; font-size: 0.8rem; }
