:root {
  --ink: #113f43;
  --ink-deep: #082d31;
  --teal: #219b9b;
  --teal-soft: #76d7d4;
  --mint: #e8f8f2;
  --gold: #e4b946;
  --gold-soft: #fff2b8;
  --paper: #fbfdf9;
  --line: #dce9e4;
  --text: #243b3b;
  --muted: #6d817f;
  --white: #fff;
  --shadow: 0 18px 50px rgba(17, 63, 67, .11);
  --serif: "Noto Serif SC", "Source Han Serif SC", "Songti SC", SimSun, serif;
  --sans: "Noto Sans SC", "Microsoft YaHei", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--text); background: var(--paper); font: 15px/1.72 var(--sans); }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }
.wrap { width: 1200px; margin: 0 auto; }
.skip-link { position: fixed; top: -60px; left: 18px; z-index: 999; padding: 10px 16px; color: #fff; background: var(--ink); }
.skip-link:focus { top: 18px; }

.topbar { height: 38px; color: #d8eeee; background: var(--ink-deep); font-size: 13px; }
.topbar .wrap, .brand-row, .nav .wrap { display: flex; align-items: center; justify-content: space-between; height: 100%; }
.topbar-links { display: flex; align-items: center; height: 100%; gap: 22px; }
.topbar-links > a { display: flex; align-items: center; height: 100%; }
.topbar a:hover { color: var(--gold-soft); }
.top-pop { position: relative; display: flex; align-items: center; height: 38px; }
.top-pop-trigger { height: 38px; padding: 0; color: inherit; border: 0; background: transparent; cursor: pointer; }
.top-pop-trigger:hover, .top-pop.active .top-pop-trigger { color: var(--gold-soft); }
.top-pop-panel { position: absolute; z-index: 40; right: 50%; top: 44px; visibility: hidden; width: 148px; padding: 10px; color: var(--text); background: #fff; box-shadow: var(--shadow); opacity: 0; transform: translate(50%,8px); transition: .2s; pointer-events: none; text-align: center; }
.top-pop-panel::before { content: ""; position: absolute; left: 50%; top: -6px; width: 11px; height: 11px; background: #fff; transform: translateX(-50%) rotate(45deg); }
.top-pop-panel img { width: 126px; height: 126px; margin: 0 auto 5px; object-fit: cover; }
.top-pop-panel small { display: block; white-space: nowrap; }
.top-pop:hover .top-pop-panel, .top-pop:focus-within .top-pop-panel, .top-pop.active .top-pop-panel { visibility: visible; opacity: 1; transform: translate(50%,0); pointer-events: auto; }
.brand-row { height: 104px; }
.brand { display: flex; align-items: center; gap: 15px; }
.brand img { width: 78px; height: 78px; }
.brand-title strong { display: block; color: var(--ink); font: 900 30px/1 var(--serif); letter-spacing: .12em; }
.brand-title span { display: block; margin-top: 9px; color: var(--muted); font-size: 12px; letter-spacing: .24em; }
.header-tools { display: flex; align-items: center; gap: 20px; }
.hotline { padding-left: 46px; position: relative; }
.hotline::before { content: "☎"; position: absolute; left: 0; top: 1px; width: 36px; height: 36px; color: var(--teal); border: 1px solid var(--line); border-radius: 50%; text-align: center; line-height: 36px; }
.hotline small { display: block; color: var(--muted); }
.hotline b { color: var(--ink); font-size: 20px; }
.search { display: flex; width: 300px; height: 42px; border: 1px solid var(--line); background: #fff; }
.search input { min-width: 0; flex: 1; padding: 0 14px; border: 0; outline: 0; }
.search button { width: 48px; border: 0; color: #fff; background: var(--teal); cursor: pointer; }

.nav { height: 58px; color: #fff; background: var(--ink); box-shadow: 0 7px 18px rgba(5, 43, 47, .16); }
.nav .wrap { justify-content: flex-start; }

.nav .wrap > a, .nav-parent > a { position: relative; display: flex; align-items: center; height: 100%; padding: 0 31px; font-weight: 700; letter-spacing: .05em; }
.nav .wrap > a::after, .nav-parent > a::after { content: ""; position: absolute; right: 31px; bottom: 10px; left: 31px; height: 2px; background: var(--gold); transform: scaleX(0); transition: .25s; }
.nav .wrap > a:hover::after, .nav .wrap > a.active::after, .nav-parent > a:hover::after, .nav-parent > a.active::after { transform: scaleX(1); }
.nav-parent { position: relative; display: flex; align-items: center; height: 100%; }
.nav-caret { margin-left: 7px; color: #9bc8c4; font-size: 12px; transition: transform .2s; }
.nav-submenu { position: absolute; z-index: 45; top: 58px; left: 0; visibility: hidden; display: grid; grid-template-columns: repeat(2, minmax(110px,1fr)); width: 270px; padding: 12px; color: var(--text); border-top: 3px solid var(--gold); background: #fff; box-shadow: 0 16px 35px rgba(8,45,49,.18); opacity: 0; transform: translateY(9px); transition: .22s; pointer-events: none; }
.nav-submenu a { display: block; padding: 10px 12px; color: var(--text); border-bottom: 1px dashed var(--line); font-weight: 400; white-space: nowrap; }
.nav-submenu a::after { display: none; }
.nav-submenu a:hover { color: var(--teal); background: var(--mint); }
.nav-parent:hover .nav-submenu, .nav-parent:focus-within .nav-submenu { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
.nav-parent:hover .nav-caret, .nav-parent:focus-within .nav-caret { transform: rotate(180deg); }

.nav .apply { margin-left: auto; color: var(--ink-deep); background: var(--gold); }
.nav .apply::after { display: none; }

.hero { position: relative; min-height: 510px; overflow: hidden; color: #fff; background: linear-gradient(115deg, #07383d 0%, #176e70 55%, #82d7c4 100%); }
.hero::before { content: ""; position: absolute; inset: 0; opacity: .23; background-image: linear-gradient(30deg, transparent 48%, rgba(255,255,255,.16) 49%, rgba(255,255,255,.16) 50%, transparent 51%), linear-gradient(150deg, transparent 48%, rgba(255,255,255,.1) 49%, rgba(255,255,255,.1) 50%, transparent 51%); background-size: 70px 70px; }
.hero::after { content: ""; position: absolute; right: -80px; bottom: -270px; width: 820px; height: 610px; border: 2px solid rgba(255,255,255,.24); border-radius: 48% 52% 0 0; box-shadow: 0 0 0 75px rgba(255,255,255,.05), 0 0 0 150px rgba(255,255,255,.04); transform: rotate(-10deg); }
.hero .wrap { position: relative; z-index: 2; display: grid; grid-template-columns: 1.15fr .85fr; align-items: center; min-height: 510px; }
.eyebrow { display: flex; align-items: center; gap: 13px; color: var(--gold-soft); font-weight: 700; letter-spacing: .24em; }
.eyebrow::before { content: ""; width: 36px; height: 2px; background: var(--gold); }
.hero h1 { max-width: 700px; margin: 20px 0 16px; font: 900 53px/1.24 var(--serif); letter-spacing: .04em; }
.hero h1 em { color: var(--gold-soft); font-style: normal; }
.hero-copy { max-width: 570px; color: #dff4ef; font-size: 18px; }
.hero-actions { display: flex; gap: 14px; margin-top: 34px; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-width: 136px; height: 46px; padding: 0 22px; border: 1px solid rgba(255,255,255,.42); transition: .25s; }
.btn.primary { color: var(--ink-deep); border-color: var(--gold); background: var(--gold); font-weight: 800; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,.16); }
.hero-art { position: relative; height: 400px; }
.sun { position: absolute; right: 36px; top: 15px; width: 105px; height: 105px; border-radius: 50%; background: var(--gold-soft); box-shadow: 0 0 60px rgba(255,240,153,.66); }
.mountain { position: absolute; right: -65px; bottom: 0; width: 510px; height: 260px; clip-path: polygon(0 100%, 20% 45%, 31% 72%, 54% 7%, 72% 58%, 82% 37%, 100% 100%); background: linear-gradient(135deg, #c6f5e6, #289998); opacity: .94; }
.road { position: absolute; right: 120px; bottom: -45px; width: 135px; height: 320px; border-right: 17px solid var(--gold-soft); border-left: 3px solid var(--gold-soft); transform: perspective(260px) rotateX(35deg) rotate(16deg); opacity: .9; }
.hero-card { position: absolute; left: 8px; bottom: 38px; width: 270px; padding: 20px 22px; color: var(--ink); background: rgba(255,255,255,.91); backdrop-filter: blur(8px); box-shadow: var(--shadow); }
.hero-card b { display: block; color: var(--teal); font: 800 24px var(--serif); }

.quick-strip { position: relative; z-index: 3; display: grid; grid-template-columns: 1.1fr repeat(4, 1fr); margin-top: -39px; background: #fff; box-shadow: var(--shadow); }
.quick-title { padding: 24px 28px; color: #fff; background: var(--ink); }
.quick-title b { display: block; font: 800 20px var(--serif); }
.quick-title small { color: #a9cfcc; }
.quick-item { padding: 23px 22px; border-right: 1px solid var(--line); transition: .22s; }
.quick-item:hover { color: var(--teal); background: var(--mint); }
.quick-item strong { display: block; font-size: 16px; }
.quick-item span { color: var(--muted); font-size: 12px; }

.section { padding: 70px 0; }
.section.tint { background: #f1f7f3; }
.section-head { display: flex; align-items: end; justify-content: space-between; margin-bottom: 30px; }
.section-title small { color: var(--teal); font-weight: 800; letter-spacing: .2em; }
.section-title h2 { margin: 5px 0 0; color: var(--ink); font: 900 31px var(--serif); }
.more { color: var(--muted); }
.more:hover { color: var(--teal); }
.news-grid { display: grid; grid-template-columns: 1.04fr .96fr; gap: 34px; }
.lead-news { position: relative; min-height: 368px; overflow: hidden; color: #fff; background: linear-gradient(145deg, #0d5257, #2ab0a5); }
.lead-news::before { content: "云岭\A 备考"; white-space: pre; position: absolute; right: 28px; top: 12px; color: rgba(255,255,255,.1); font: 900 86px/1.08 var(--serif); text-align: right; }
.lead-news-content { position: absolute; right: 0; bottom: 0; left: 0; padding: 36px; background: linear-gradient(transparent, rgba(5,35,38,.92)); }
.tag { display: inline-block; padding: 4px 10px; color: var(--ink); background: var(--gold); font-size: 12px; font-weight: 800; }
.lead-news h3 { margin: 14px 0 8px; font: 800 25px/1.45 var(--serif); }
.lead-news p { margin: 0; color: #cde7e3; }
.news-list { display: grid; gap: 0; }
.news-row { display: grid; grid-template-columns: 74px 1fr 25px; align-items: center; min-height: 91px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.news-row time { color: var(--muted); font-size: 12px; }
.news-row time b { display: block; color: var(--teal); font: 800 25px var(--serif); }
.news-row h3 { margin: 0 0 3px; color: var(--ink); font-size: 16px; }
.news-row p { margin: 0; overflow: hidden; color: var(--muted); text-overflow: ellipsis; white-space: nowrap; }
.news-row i { color: var(--teal); font-style: normal; font-size: 22px; }
.news-row:hover h3 { color: var(--teal); }

.category-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.category-card { position: relative; min-height: 285px; padding: 30px; overflow: hidden; border: 1px solid var(--line); background: #fff; transition: .28s; }
.category-card::after { content: attr(data-num); position: absolute; right: 10px; bottom: -35px; color: #edf4f1; font: 900 105px var(--serif); }
.category-card:hover { transform: translateY(-6px); border-color: #a8d9d2; box-shadow: var(--shadow); }
.category-card .icon { display: grid; width: 45px; height: 45px; place-items: center; color: #fff; background: var(--teal); font: 800 20px var(--serif); }
.category-card h3 { margin: 20px 0 5px; color: var(--ink); font: 800 22px var(--serif); }
.category-card > p { color: var(--muted); }
.category-links { position: relative; z-index: 1; display: flex; flex-wrap: wrap; gap: 9px 15px; margin-top: 21px; }
.category-links a { padding-bottom: 2px; border-bottom: 1px solid transparent; }
.category-links a:hover { color: var(--teal); border-color: var(--teal); }

.feature-band { color: #fff; background: var(--ink-deep); }
.feature-grid { display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 70px; }
.feature-copy h2 { margin: 10px 0 16px; font: 900 38px/1.3 var(--serif); }
.feature-copy p { color: #bad8d4; }
.feature-numbers { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 30px; border-top: 1px solid #386063; }
.feature-numbers div { padding: 22px 0 0; }
.feature-numbers b { display: block; color: var(--gold-soft); font: 800 28px var(--serif); }
.exam-board { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.exam-board a { padding: 18px 20px; border: 1px solid #345d5f; background: #123f43; transition: .2s; }
.exam-board a:hover { color: var(--ink); border-color: var(--gold); background: var(--gold); }
.exam-board small { display: block; color: #88b8b3; }

.school-preview { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.school-column { padding: 24px; border-top: 3px solid var(--teal); background: #fff; box-shadow: 0 8px 28px rgba(17,63,67,.07); }
.school-column:nth-child(even) { border-color: var(--gold); }
.school-column h3 { margin: 0 0 14px; color: var(--ink); font: 800 19px var(--serif); }
.school-column a { display: block; padding: 7px 0; color: var(--muted); border-bottom: 1px dashed var(--line); }
.school-column a:hover { padding-left: 5px; color: var(--teal); }

.page-hero { padding: 52px 0 46px; color: #fff; background: linear-gradient(118deg, var(--ink-deep), var(--teal)); }
.breadcrumb { margin-bottom: 17px; color: #b9dcd8; font-size: 13px; }
.breadcrumb a:hover { color: var(--gold-soft); }
.page-hero h1 { margin: 0; font: 900 38px var(--serif); }
.page-hero p { max-width: 650px; margin: 10px 0 0; color: #d5eeeb; }
.page-layout { display: grid; grid-template-columns: 1fr 300px; gap: 32px; padding: 46px 0 70px; }
.panel { border: 1px solid var(--line); background: #fff; }
.panel-title { display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--line); }
.panel-title h2, .panel-title h3 { margin: 0; color: var(--ink); font: 800 21px var(--serif); }
.tabs { display: flex; gap: 8px; margin-bottom: 24px; padding: 10px; background: #edf5f1; }
.tabs a, .tabs button { padding: 9px 18px; border: 0; background: transparent; cursor: pointer; }
.tabs .active, .tabs a:hover, .tabs button:hover { color: #fff; background: var(--teal); }
.article-list { padding: 0 25px; }
.result-summary { padding: 20px 25px 4px; color: var(--muted); }
.result-summary b { color: var(--teal); }
.result-search { display: flex; width: 100%; height: 48px; margin-bottom: 24px; border: 1px solid var(--line); background: #fff; }
.result-search input { min-width: 0; flex: 1; padding: 0 16px; border: 0; outline: 0; }
.result-search input:focus { box-shadow: inset 0 0 0 1px var(--teal); }
.result-search button { width: 88px; color: #fff; border: 0; background: var(--teal); cursor: pointer; }
.article-item { display: grid; grid-template-columns: 1fr 92px; gap: 20px; padding: 24px 0; border-bottom: 1px solid var(--line); }
.article-item h2 { margin: 0 0 7px; color: var(--ink); font: 800 19px/1.45 var(--serif); }
.article-item p { margin: 0 0 10px; color: var(--muted); }
.article-item .meta { color: #91a09e; font-size: 12px; }
.article-item time { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 75px; color: var(--muted); background: #f2f7f4; }
.article-item time b { color: var(--teal); font: 800 24px var(--serif); }
.article-item:hover h2 { color: var(--teal); }
.pagination { display: flex; justify-content: center; gap: 8px; padding: 30px; }
.pagination a { min-width: 38px; padding: 7px 12px; text-align: center; border: 1px solid var(--line); }
.pagination a.active, .pagination a:hover { color: #fff; border-color: var(--teal); background: var(--teal); }
.sidebar { display: grid; align-content: start; gap: 20px; }
.side-links { padding: 8px 20px 18px; }
.side-links a { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px dashed var(--line); }
.side-links a:last-child { border-bottom: 0; }
.side-links a:hover { color: var(--teal); }
.side-cta { padding: 26px; color: #fff; background: linear-gradient(145deg, var(--ink), var(--teal)); }
.side-cta b { display: block; margin: 8px 0; color: var(--gold-soft); font: 800 26px var(--serif); }

.article { padding: 38px 52px 50px; }
.article h1 { margin: 0 0 14px; color: var(--ink); font: 900 31px/1.45 var(--serif); }
.article-meta { padding-bottom: 18px; color: var(--muted); border-bottom: 1px solid var(--line); }
.article-summary { margin: 27px 0; padding: 18px 22px; color: #456260; border-left: 3px solid var(--teal); background: #eff7f3; }
.article-body { font-size: 16px; line-height: 2; }
.article-body h2 { margin-top: 34px; color: var(--ink); font: 800 23px var(--serif); }
.article-body table { width: 100%; border-collapse: collapse; }
.article-body th, .article-body td { padding: 12px; border: 1px solid var(--line); text-align: left; }
.article-body th { color: var(--ink); background: #eff7f3; }
.article-note { padding: 16px 20px; border: 1px solid #ecd98e; background: #fff9dc; }
.article-nav { display: grid; gap: 9px; margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); }

.directory { padding: 50px 0 75px; }
.directory-intro { display: flex; align-items: center; justify-content: space-between; margin-bottom: 30px; }
.directory-intro h2 { margin: 0; color: var(--ink); font: 800 28px var(--serif); }
.directory-search { display: flex; width: 340px; border-bottom: 2px solid var(--ink); }
.directory-search input { flex: 1; padding: 10px; border: 0; outline: 0; background: transparent; }
.directory-search button { border: 0; color: var(--teal); background: transparent; cursor: pointer; }
.directory-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.directory-card { padding: 28px; border: 1px solid var(--line); background: #fff; transition: .25s; }
.directory-card:hover { border-color: #91cec7; box-shadow: var(--shadow); }
.directory-card h2 { display: flex; align-items: center; gap: 12px; margin: 0 0 17px; color: var(--ink); font: 800 21px var(--serif); }
.directory-card h2 span { display: grid; width: 34px; height: 34px; place-items: center; color: #fff; background: var(--teal); font-size: 14px; }
.directory-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px 15px; }
.directory-links a { padding: 9px 0; color: var(--muted); border-bottom: 1px dashed var(--line); }
.directory-links a:hover { color: var(--teal); }
.practice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.practice-card { position: relative; padding: 28px; overflow: hidden; border: 1px solid var(--line); background: #fff; }
.practice-card::after { content: "题"; position: absolute; right: -10px; bottom: -45px; color: #eef5f2; font: 900 110px var(--serif); }
.practice-card .year { color: var(--teal); font-weight: 800; }
.practice-card h2 { position: relative; z-index: 1; margin: 8px 0 12px; color: var(--ink); font: 800 21px var(--serif); }
.practice-card p { position: relative; z-index: 1; color: var(--muted); }
.practice-card .start { position: relative; z-index: 1; display: inline-block; margin-top: 8px; padding: 8px 15px; color: #fff; background: var(--ink); }
.practice-card:hover .start { color: var(--ink); background: var(--gold); }

.apply-layout { display: grid; grid-template-columns: 1fr 340px; gap: 34px; padding: 50px 0 75px; }
.apply-form { padding: 36px 40px 42px; border: 1px solid var(--line); background: #fff; box-shadow: 0 12px 35px rgba(17,63,67,.07); }
.apply-form-head { margin-bottom: 28px; padding-bottom: 20px; border-bottom: 1px solid var(--line); }
.apply-form-head h2 { margin: 0 0 5px; color: var(--ink); font: 900 27px var(--serif); }
.apply-form-head p { margin: 0; color: var(--muted); }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px 24px; }
.form-field { display: grid; align-content: start; gap: 8px; }
fieldset.form-field { min-width: 0; margin: 0; padding: 0; border: 0; }
.form-field.full { grid-column: 1 / -1; }
.form-field label, .form-field legend { color: var(--ink); font-weight: 700; }
.form-field label em, .form-field legend em { color: #d9573f; font-style: normal; }
.form-field input, .form-field select, .form-field textarea { width: 100%; padding: 11px 13px; color: var(--text); border: 1px solid var(--line); outline: 0; background: #fbfdfb; }
.form-field input, .form-field select { height: 46px; }
.form-field textarea { min-height: 120px; resize: vertical; }
.verify-control { display: flex; }
.verify-control input { min-width: 0; flex: 1; border-right: 0; }
.code-button { flex: 0 0 118px; height: 46px; padding: 0 12px; color: #fff; border: 0; background: var(--teal); cursor: pointer; }
.code-button:disabled { color: #78918e; background: #dce9e4; cursor: not-allowed; }
.form-help { color: var(--muted); font-size: 12px; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--teal); box-shadow: 0 0 0 3px rgba(36,156,155,.1); }
.form-options { display: flex; flex-wrap: wrap; gap: 10px 22px; padding: 10px 0; }
.form-options label { display: flex; align-items: center; gap: 7px; font-weight: 400; cursor: pointer; }
.form-options input { width: auto; height: auto; accent-color: var(--teal); }
.form-consent { display: flex; align-items: flex-start; gap: 9px; margin: 24px 0 20px; color: var(--muted); font-size: 13px; }
.form-consent input { margin-top: 5px; accent-color: var(--teal); }
.form-submit { width: 190px; height: 49px; color: var(--ink-deep); border: 0; background: var(--gold); font-weight: 800; cursor: pointer; transition: .22s; }
.form-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 25px rgba(228,185,70,.28); }
.apply-aside { display: grid; align-content: start; gap: 20px; }
.apply-step { padding: 26px; border: 1px solid var(--line); background: #fff; }
.apply-step h3 { margin: 0 0 18px; color: var(--ink); font: 800 20px var(--serif); }
.apply-step ol { margin: 0; padding: 0; list-style: none; counter-reset: step; }
.apply-step li { position: relative; padding: 0 0 18px 42px; color: var(--muted); counter-increment: step; }
.apply-step li::before { content: counter(step); position: absolute; left: 0; top: -2px; display: grid; width: 27px; height: 27px; place-items: center; color: #fff; border-radius: 50%; background: var(--teal); font-weight: 800; }
.apply-step li:not(:last-child)::after { content: ""; position: absolute; left: 13px; top: 28px; bottom: 1px; border-left: 1px dashed #9bcac4; }
.success-wrap { width: 820px; margin: 0 auto; padding: 65px 0 80px; }
.success-card { position: relative; overflow: hidden; padding: 48px 58px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); text-align: center; }
.success-card::before { content: ""; position: absolute; right: -80px; top: -95px; width: 250px; height: 250px; border: 40px solid var(--mint); border-radius: 50%; }
.success-icon { position: relative; display: grid; width: 76px; height: 76px; margin: 0 auto 22px; place-items: center; color: #fff; border-radius: 50%; background: var(--teal); box-shadow: 0 12px 28px rgba(36,156,155,.25); font-size: 37px; }
.success-card h1 { position: relative; margin: 0 0 12px; color: var(--ink); font: 900 33px var(--serif); }
.success-message { position: relative; max-width: 620px; margin: 0 auto; color: var(--muted); font-size: 17px; }
.success-contact { display: grid; grid-template-columns: 1fr 140px; align-items: center; gap: 30px; margin-top: 35px; padding: 24px 28px; background: #eff7f3; text-align: left; }
.success-contact h2 { margin: 0 0 8px; color: var(--ink); font: 800 20px var(--serif); }
.success-contact p { margin: 4px 0; color: var(--muted); }
.success-contact b { color: var(--teal); font-size: 18px; }
.success-contact img { width: 126px; height: 126px; padding: 4px; object-fit: cover; background: #fff; }
.success-actions { display: flex; justify-content: center; gap: 12px; margin-top: 28px; }
.success-actions a { min-width: 140px; padding: 11px 20px; border: 1px solid var(--line); }
.success-actions a.primary { color: var(--ink-deep); border-color: var(--gold); background: var(--gold); font-weight: 800; }
.download-box { position: relative; display: flex; align-items: center; justify-content: space-between; gap: 25px; margin-top: 34px; padding: 26px 30px; border: 1px solid var(--line); background: #f7fbf8; text-align: left; }
.download-file { min-width: 0; }
.download-file small { display: block; color: var(--muted); }
.download-file b { display: block; overflow: hidden; margin-top: 5px; color: var(--ink); font: 800 20px var(--serif); text-overflow: ellipsis; white-space: nowrap; }
.download-button { flex: 0 0 auto; padding: 12px 24px; color: var(--ink-deep); background: var(--gold); font-weight: 800; }
.download-note { margin-top: 15px; color: var(--muted); font-size: 12px; }

.footer { color: #bdd3d0; background: #082d31; }
.footer-main { display: grid; grid-template-columns: 1.25fr 1fr 1fr .75fr; gap: 46px; padding: 53px 0 38px; }
.footer-brand { display: flex; align-items: center; gap: 14px; }
.footer-brand img { width: 66px; height: 66px; }
.footer-brand b { color: #fff; font: 800 24px var(--serif); }
.footer-slogan { max-width: 320px; color: var(--gold-soft); }
.footer h3 { margin: 5px 0 14px; color: #fff; font: 800 17px var(--serif); }
.footer-links { display: grid; grid-template-columns: repeat(2, 1fr); gap: 7px 12px; }
.footer a:hover { color: var(--gold-soft); }
.qr-group { display: flex; gap: 24px; }
.qr-group figure { margin: 0; text-align: center; font-size: 11px; }
.qr-group img { width: 82px; height: 82px; padding: 4px; object-fit: cover; background: #fff; }
.copyright { padding: 18px 0; border-top: 1px solid #22484b; text-align: center; font-size: 12px; }
.floating { position: fixed; right: 26px; bottom: 28px; z-index: 20; display: grid; gap: 9px; }
.float-item { position: relative; }
.float-trigger, .floating [data-back-top] { display: grid; width: 50px; height: 50px; padding: 0; place-items: center; color: var(--teal); border: 1px solid var(--line); border-radius: 50%; background: #fff; box-shadow: 0 8px 22px rgba(7,45,49,.13); cursor: pointer; transition: .22s; }
.float-trigger:hover, .float-item.active .float-trigger, .floating [data-back-top]:hover { color: #fff; border-color: var(--teal); background: var(--teal); }
.float-panel { position: absolute; right: 62px; top: 50%; visibility: hidden; min-width: 190px; padding: 16px 18px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); opacity: 0; transform: translate(10px,-50%); transition: .22s; pointer-events: none; }
.float-panel::after { content: ""; position: absolute; right: -7px; top: 50%; width: 12px; height: 12px; border-top: 1px solid var(--line); border-right: 1px solid var(--line); background: #fff; transform: translateY(-50%) rotate(45deg); }
.float-panel small { display: block; color: var(--muted); }
.float-panel b { color: var(--ink); font: 800 19px var(--serif); white-space: nowrap; }
.float-panel img { width: 126px; height: 126px; margin: 0 auto 8px; object-fit: cover; }
.float-panel.qr { min-width: 160px; padding: 12px; text-align: center; }
.float-item:hover .float-panel, .float-item:focus-within .float-panel, .float-item.active .float-panel { visibility: visible; opacity: 1; transform: translate(0,-50%); pointer-events: auto; }
.floating [data-back-top] { visibility: hidden; opacity: 0; transform: translateY(10px); pointer-events: none; }
.floating [data-back-top].show { visibility: visible; opacity: 1; transform: none; pointer-events: auto; }
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s, transform .65s; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { * { scroll-behavior: auto !important; animation: none !important; transition: none !important; } .reveal { opacity: 1; transform: none; } }

/* CMS integration */
.brand img,.footer-brand img { object-fit:contain; }
.lead-news-image { position:absolute; inset:0; width:100%; height:100%; object-fit:cover; opacity:.32; }
.lead-news-content { z-index:1; }
.empty-state { padding:48px 20px; color:var(--muted); text-align:center; }
.pagination { align-items:center; }
.pagination .pagination { display:flex; gap:8px; margin:0; padding:0; list-style:none; }
.pagination li { list-style:none; }
.pagination li a,.pagination li span { display:block; min-width:38px; padding:7px 12px; border:1px solid var(--line); text-align:center; }
.pagination li.active span,.pagination li a:hover { color:#fff; border-color:var(--teal); background:var(--teal); }
.article-keywords { display:flex; flex-wrap:wrap; gap:8px; margin-top:28px; padding-top:20px; border-top:1px solid var(--line); }
.article-keywords a { padding:3px 10px; color:var(--teal); background:var(--mint); }
.article-body img { height:auto; margin:20px auto; }
.article-body a { color:var(--teal); text-decoration:underline; text-underline-offset:3px; }
.result-summary { padding:14px 0; color:var(--muted); }
.result-summary b { color:var(--teal); }
.form-field.full { grid-column:1/-1; }
.upload-control { display:flex; flex-wrap:wrap; align-items:center; gap:10px; }
.upload-control input[type=file] { position:absolute; width:1px; height:1px; padding:0; opacity:0; pointer-events:none; }
.upload-button,.upload-clear { display:inline-flex; align-items:center; justify-content:center; min-height:42px; padding:0 16px; border:0; cursor:pointer; }
.upload-button { color:#fff; background:var(--teal); }
.upload-clear { color:#b63d2f; background:#fbeae6; }
.upload-preview { display:none; width:120px; height:120px; object-fit:cover; border:1px solid var(--line); }
.upload-status,.form-status { color:var(--muted); font-size:13px; }
.form-status { min-height:24px; margin-top:12px; }
.form-status.error { color:#b63d2f; }
.form-status.success { color:#167768; }
.form-submit:disabled { opacity:.6; cursor:wait; transform:none; }
.apply-banner { width:100%; max-height:360px; margin-bottom:24px; object-fit:cover; }
.success-picture { max-width:560px; max-height:420px; margin:28px auto 0; object-fit:contain; }
@media (max-width:768px) {
  .success-wrap { width:auto; margin:0 16px; padding:34px 0 48px; }
  .success-card { padding:34px 20px 28px; }
  .success-card h1 { font-size:26px; }
  .success-message { font-size:15px; }
  .download-box { display:grid; gap:18px; padding:20px; }
  .download-button { text-align:center; }
  .success-actions { display:grid; grid-template-columns:1fr; }
}
