:root {
  --bg: #f7f0e4;
  --surface: #fffaf0;
  --surface-strong: #ffffff;
  --ink: #191817;
  --muted: #6f6a61;
  --line: #e7dccb;
  --gold: #f5d061;
  --gold-deep: #c89b2e;
  --dark: #26211b;
  --danger: #9d2f2f;
  --ok: #4f7c55;
  --shadow: 0 18px 45px rgba(64, 45, 19, 0.11);
  --radius: 8px;
  --header: 76px;
  font-family: "Microsoft YaHei", "PingFang SC", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  min-width: 1180px;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  height: var(--header);
  background: rgba(255, 250, 240, 0.98);
  border-bottom: 1px solid rgba(231, 220, 203, 0.86);
  backdrop-filter: none;
}

.nav-inner,
.wrap {
  width: 1120px;
  margin: 0 auto;
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0;
}

.brand-mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2a241e, #6a5324);
  color: var(--gold);
  font-size: 18px;
  box-shadow: 0 10px 22px rgba(28, 22, 16, 0.16);
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text small {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-weight: 400;
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #413b33;
  font-size: 15px;
}

.nav-links a {
  position: relative;
  padding: 28px 0;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 18px;
  height: 2px;
  background: var(--gold-deep);
}

.nav-actions {
  display: flex;
  gap: 10px;
}

.btn {
  border: 0;
  border-radius: 6px;
  padding: 11px 18px;
  cursor: pointer;
  color: var(--dark);
  background: #eee3d0;
  transition: transform 0.18s ease-out;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn.gold {
  background: linear-gradient(135deg, #f8dc80, #d4a941);
  color: #211b14;
  font-weight: 700;
}

.btn.dark {
  background: #2c261f;
  color: #fff7e8;
}

.btn.ghost {
  background: transparent;
  border: 1px solid var(--line);
}

.btn.danger {
  background: #fff1ed;
  color: var(--danger);
  border: 1px solid #ecc6bd;
}

.hero {
  position: relative;
  min-height: calc(100vh - var(--header));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #ebe0cf;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(31, 25, 19, 0.72), rgba(31, 25, 19, 0.32) 42%, rgba(247, 240, 228, 0.08)),
    url("/assets/images/hero-business-399d8bae8fd7faf0d7446e34e02ab536.png") center / cover no-repeat;
}

.hero .wrap {
  position: relative;
  color: #fffaf0;
}

.eyebrow {
  color: #8d6a1d;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
}

.hero .eyebrow {
  color: var(--gold);
}

.hero h1 {
  width: 640px;
  margin: 18px 0 18px;
  font-size: 58px;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero p {
  width: 570px;
  margin: 0 0 30px;
  color: #f2eadc;
  font-size: 18px;
  line-height: 1.8;
}

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

.hero-search,
.service-search {
  display: flex;
  gap: 10px;
  align-items: center;
}

.hero-search {
  width: min(640px, 100%);
  margin: 24px 0 14px;
  padding: 8px;
  border: 1px solid rgba(214, 179, 90, 0.42);
  border-radius: 8px;
  background: rgba(255, 250, 240, 0.92);
  box-shadow: 0 14px 34px rgba(64, 45, 19, 0.12);
}

.hero-search input,
.service-search input {
  flex: 1;
  height: 42px;
  border: 0;
  border-radius: 6px;
  padding: 0 14px;
  background: #fffaf0;
  color: #1f1a15;
  outline: none;
}

.hero-search input:focus,
.service-search input:focus {
  box-shadow: 0 0 0 3px rgba(245, 208, 97, 0.28);
}

.hero-search input::placeholder,
.service-search input::placeholder {
  color: #7a7064;
}

.hero-search .btn,
.service-search .btn {
  height: 42px;
  white-space: nowrap;
}

.hero-note {
  margin-top: 22px;
  color: #d9cfbd;
  font-size: 13px;
}

.section {
  padding: 78px 0;
}

.section.tight {
  padding: 48px 0;
}

.section.white {
  background: var(--surface);
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 30px;
}

.section-head h2,
.page-title h1 {
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1.25;
}

.section-head p,
.page-title p {
  color: var(--muted);
  line-height: 1.8;
  margin: 8px 0 0;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: -54px;
  position: relative;
  z-index: 2;
}

.stat {
  background: rgba(255, 250, 240, 0.96);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}

.stat strong {
  display: block;
  font-size: 36px;
  margin-bottom: 8px;
}

.stat span {
  color: var(--muted);
}

.module-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.module-card,
.info-card,
.client-card,
.news-card,
.panel {
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(64, 45, 19, 0.08);
}

.module-card {
  padding: 18px;
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.18s ease-out;
  position: relative;
  overflow: hidden;
  color: #fffaf0;
  border: 0;
  background: #2c261f;
}

.module-card:hover {
  transform: translateY(-4px);
}

.module-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 22, 16, 0.25), rgba(28, 22, 16, 0.82)),
    var(--module-bg) center / cover no-repeat;
  transition: transform 0.18s ease-out;
}

.module-card:hover::before {
  transform: scale(1.04);
}

.module-card > * {
  position: relative;
  z-index: 1;
}

.module-life { --module-bg: url("/assets/images/category-life-d0e85ece5d753dea1ac39c7bc9c90051.png"); }
.module-entertainment { --module-bg: url("/assets/images/category-entertainment-1123dbf6140b934c54f2c1bf76391772.png"); }
.module-travel { --module-bg: url("/assets/images/category-travel-584321c8af64b22b4a037955d76d4717.png"); }
.module-shopping { --module-bg: url("/assets/images/category-shopping-bf8379f84a78cfb18fa40ccd3016efeb.png"); }
.module-office { --module-bg: url("/assets/images/category-office-d4f1dd531898837185cf257ab9b7d557.png"); }

.icon-box {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #2c261f;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.module-card h3,
.info-card h3,
.panel h3 {
  margin: 0 0 12px;
}

.module-card p,
.module-card li,
.info-card p,
.panel p,
.news-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.module-card p {
  color: #f3eadb;
}

.module-card span {
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}

.module-card ul {
  padding-left: 18px;
  margin: 12px 0 0;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  margin: 18px 0;
}

.focus-grid span {
  display: grid;
  place-items: center;
  min-height: 72px;
  border-radius: 6px;
  border: 1px solid var(--line);
  background: #fff7e7;
  color: #4d3f2b;
  font-weight: 700;
}

.compact-list {
  grid-template-columns: repeat(2, 1fr);
}

.article-detail {
  max-width: 860px;
  margin: 0 auto;
}

.article-detail h1 {
  margin: 8px 0 12px;
  font-size: 34px;
  line-height: 1.32;
}

.article-detail p {
  font-size: 16px;
  color: #3f3931;
  line-height: 2;
}

.advantage-list {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}

.advantage-list .panel {
  padding: 26px;
}

.process-line {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-band {
  position: relative;
  overflow: hidden;
}

.image-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(247, 240, 228, 0.96), rgba(247, 240, 228, 0.82) 48%, rgba(247, 240, 228, 0.58)),
    var(--band-bg) center / cover no-repeat;
  opacity: 0.92;
}

.image-band > .wrap {
  position: relative;
  z-index: 1;
}

.process-band { --band-bg: url("/assets/images/section-process-0bb748e2c6bf2137ab610db65f5193db.png"); }
.audit-band { --band-bg: url("/assets/images/section-audit-33017699b07f56ad5bca8d331cd21494.png"); }

.process-line.point-flow {
  grid-template-columns: repeat(4, 1fr);
  margin-top: 18px;
}

.process-step {
  background: #fffaf0;
  padding: 28px 22px;
  min-height: 220px;
}

.process-step span {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2c261f;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 18px;
}

.process-step h3 {
  margin: 0 0 12px;
}

.process-step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: 14px;
}

.rights-layout {
  display: grid;
  grid-template-columns: 1.35fr 0.8fr;
  gap: 18px;
  align-items: stretch;
}

.benefits-zone {
  position: relative;
  overflow: hidden;
}

.benefits-zone::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.94), rgba(244, 226, 187, 0.82)),
    url("/assets/images/hero-business-399d8bae8fd7faf0d7446e34e02ab536.png") center / cover no-repeat;
  opacity: 0.86;
}

.benefits-zone .wrap {
  position: relative;
  z-index: 1;
}

.benefit-zone-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 18px;
  align-items: stretch;
}

.benefit-rule-panel,
.benefit-option-grid article {
  border: 1px solid rgba(216, 195, 151, 0.78);
  border-radius: var(--radius);
  background: rgba(255, 252, 244, 0.9);
  box-shadow: 0 16px 36px rgba(64, 45, 19, 0.08);
}

.benefit-rule-panel {
  padding: 26px;
}

.benefit-rule-panel h3,
.benefit-option-grid h3 {
  margin: 0 0 12px;
}

.benefit-option-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.benefit-option-grid article {
  min-height: 168px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.benefit-option-grid span {
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  background: #2c261f;
  color: var(--gold);
  font-weight: 800;
  font-size: 13px;
}

.benefit-option-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 14px;
}

.benefit-actions {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.rights-main {
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.95), rgba(244, 226, 187, 0.92)),
    url("/assets/images/hero-business-399d8bae8fd7faf0d7446e34e02ab536.png") center / cover no-repeat;
}

.rule-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.rule-grid div {
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 18px;
}

.rule-grid strong {
  display: block;
  color: #1f1a15;
  font-size: 28px;
  margin-bottom: 8px;
}

.rule-grid span {
  color: var(--muted);
  font-size: 14px;
}

.audit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}

.partner-image {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: var(--shadow);
}

.industry-grid,
.capability-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.about-intro {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 24px;
  align-items: stretch;
}

.about-metrics {
  display: grid;
  gap: 14px;
}

.about-metrics .stat {
  margin: 0;
}

.auth-wrap {
  width: 760px;
}

.auth-page {
  min-height: calc(100vh - var(--header));
  display: flex;
  align-items: center;
  padding: 64px 0;
  background:
    linear-gradient(90deg, rgba(247, 240, 228, 0.96), rgba(247, 240, 228, 0.72)),
    url("/assets/images/section-process-0bb748e2c6bf2137ab610db65f5193db.png") center / cover no-repeat;
}

.admin-auth-page {
  background:
    linear-gradient(90deg, rgba(247, 240, 228, 0.95), rgba(247, 240, 228, 0.76)),
    url("/assets/images/section-audit-33017699b07f56ad5bca8d331cd21494.png") center / cover no-repeat;
}

.auth-shell {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 48px;
  align-items: center;
}

.auth-visual {
  padding: 18px 0;
}

.auth-visual h1 {
  width: 640px;
  margin: 14px 0 18px;
  font-size: 46px;
  line-height: 1.16;
}

.auth-visual p {
  width: 560px;
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
  font-size: 17px;
}

.auth-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.auth-points span {
  padding: 9px 13px;
  border: 1px solid rgba(200, 155, 46, 0.42);
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.76);
  color: #5f4a18;
  font-weight: 700;
  font-size: 13px;
}

.auth-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.96);
  box-shadow: var(--shadow);
}

.auth-card-head {
  margin-bottom: 22px;
}

.auth-card-head h2 {
  margin: 8px 0 0;
  font-size: 28px;
}

.auth-form {
  grid-template-columns: 1fr;
  gap: 16px;
}

.auth-actions {
  align-items: flex-start;
}

.auth-actions .btn {
  width: 180px;
}

.auth-actions p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.auth-actions a {
  color: #8d6a1d;
  font-weight: 700;
}

.success-section {
  min-height: calc(100vh - var(--header));
  display: flex;
  align-items: center;
}

.success-panel {
  text-align: center;
  padding: 46px 42px;
}

.success-panel h1 {
  margin: 10px 0 14px;
  font-size: 34px;
}

.success-panel p {
  color: var(--muted);
  line-height: 1.8;
}

.success-panel .form-actions {
  justify-content: center;
  margin-top: 20px;
}

.admin-layout {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 24px;
  align-items: start;
}

.admin-sidebar {
  position: sticky;
  top: calc(var(--header) + 18px);
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px;
  box-shadow: 0 10px 28px rgba(64, 45, 19, 0.08);
}

.admin-sidebar button {
  width: 100%;
  border: 0;
  background: transparent;
  color: #4d463c;
  text-align: left;
  padding: 12px 14px;
  border-radius: 6px;
  cursor: pointer;
}

.admin-sidebar button.active,
.admin-sidebar button:hover {
  background: #f3e5c8;
  color: #17120e;
  font-weight: 700;
}

.admin-main {
  min-width: 0;
  overflow: hidden;
}

.admin-panel {
  display: none;
}

.admin-panel.active {
  display: block;
}

.admin-stats {
  margin: 0;
}

.service-group {
  margin-bottom: 54px;
}

.service-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 28px;
  align-items: start;
}

.service-sidebar {
  position: sticky;
  top: calc(var(--header) + 18px);
  display: grid;
  gap: 10px;
}

.service-sidebar a {
  display: block;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: 0 8px 22px rgba(64, 45, 19, 0.06);
}

.service-sidebar a.active,
.service-sidebar a:hover {
  border-color: #d6b35a;
  background: #fbefd2;
}

.service-sidebar strong {
  display: block;
  margin-bottom: 5px;
}

.service-sidebar span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}

.service-main {
  min-width: 0;
}

.service-search {
  margin: 0 0 18px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.9);
  box-shadow: 0 8px 22px rgba(64, 45, 19, 0.06);
}

.service-cards {
  grid-template-columns: 1fr;
  gap: 14px;
}

.service-cards .info-card {
  min-height: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  column-gap: 20px;
  align-items: stretch;
  background: #fffaf0;
  transition: transform 0.18s ease-out;
}

.service-cards .info-card:hover {
  border-color: rgba(197, 158, 57, 0.45);
  transform: translateY(-2px);
}

.service-cards .info-card img {
  width: 168px;
  height: 132px;
  margin: 0;
  align-self: stretch;
}

.service-cards .info-card-body {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "tags actions"
    "title actions"
    "summary actions"
    "meta actions";
  column-gap: 18px;
  align-content: start;
}

.service-cards .info-card-tags {
  grid-area: tags;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.service-cards .info-card-actions {
  grid-area: actions;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  min-width: 104px;
}

.service-cards .info-card h3 {
  grid-area: title;
  margin: 10px 0 6px;
  font-size: 20px;
  line-height: 1.35;
}

.service-cards .info-card p {
  grid-area: summary;
  margin: 0;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.service-cards .info-card .meta {
  grid-area: meta;
  margin: 7px 0 10px;
}

.service-cards .info-card .btn {
  padding: 8px 11px;
  font-size: 13px;
  margin-right: 0;
  text-align: center;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 28px;
  color: var(--muted);
}

.pagination .disabled {
  opacity: 0.45;
  pointer-events: none;
}

.logo-item {
  height: 84px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  display: grid;
  place-items: center;
  color: #5e554a;
  font-weight: 700;
}

.page-hero {
  padding: 72px 0 44px;
  background: linear-gradient(135deg, #fff8ea, #ead8b8);
  border-bottom: 1px solid var(--line);
}

.news-hero {
  padding: 86px 0 56px;
  background:
    linear-gradient(90deg, rgba(28, 22, 16, 0.78), rgba(28, 22, 16, 0.38)),
    url("/assets/images/hero-business-399d8bae8fd7faf0d7446e34e02ab536.png") center / cover no-repeat;
  color: #fffaf0;
}

.news-hero .eyebrow {
  color: var(--gold);
}

.news-hero h1 {
  width: 680px;
  margin: 12px 0 16px;
  font-size: 48px;
  line-height: 1.15;
}

.news-hero p {
  width: 620px;
  color: #f1e6d4;
  line-height: 1.8;
}

.news-section {
  padding-top: 58px;
}

.news-layout {
  display: grid;
  grid-template-columns: 1.45fr 0.85fr;
  gap: 24px;
  align-items: stretch;
  margin-bottom: 26px;
}

.news-lead {
  min-height: 360px;
  padding: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 250, 240, 0.96), rgba(244, 226, 187, 0.9)),
    url("/assets/images/category-office-d4f1dd531898837185cf257ab9b7d557.png") right center / cover no-repeat;
  box-shadow: var(--shadow);
}

.news-lead h2 {
  width: 720px;
  max-width: 100%;
  margin: 12px 0 16px;
  font-size: 32px;
  line-height: 1.32;
}

.news-lead p {
  width: 620px;
  max-width: 100%;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 22px;
}

.news-meta {
  margin-bottom: 18px;
  color: #8d6a1d;
  font-weight: 700;
}

.news-side {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: #fffaf0;
  box-shadow: 0 10px 28px rgba(64, 45, 19, 0.07);
}

.side-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}

.news-side-item {
  display: block;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.news-side-item span,
.news-row time {
  color: #8d6a1d;
  font-size: 13px;
  font-weight: 700;
}

.news-side-item strong {
  display: block;
  margin-top: 6px;
  line-height: 1.55;
}

.news-list {
  display: grid;
  gap: 12px;
}

.news-row {
  display: grid;
  grid-template-columns: 120px 1fr 54px;
  gap: 20px;
  align-items: center;
  padding: 20px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 250, 240, 0.88);
  transition: transform 0.18s ease-out;
}

.news-row:hover {
  transform: translateY(-1px);
  border-color: #d6b35a;
}

.news-row h3 {
  margin: 0 0 8px;
  font-size: 19px;
  line-height: 1.45;
}

.news-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.news-row > span {
  color: #8d6a1d;
  font-weight: 700;
}

.page-title {
  width: 760px;
}

.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card,
.news-card,
.client-card,
.panel {
  padding: 24px;
}

.info-card img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 6px;
  background: #eadfcd;
  margin-bottom: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  height: 26px;
  padding: 0 10px;
  border-radius: 14px;
  background: #f4e3ba;
  color: #7d5d11;
  font-size: 12px;
  font-weight: 700;
}

.meta {
  color: var(--muted);
  font-size: 13px;
  margin: 10px 0;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

.form-actions {
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
}

.form-actions .btn {
  min-width: 128px;
  width: auto;
}

.inner-panel {
  margin-top: 22px;
  box-shadow: none;
  background: #fffdf8;
}

.admin-detail {
  margin-top: 22px;
}

.admin-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.admin-detail-head h3 {
  margin: 6px 0 0;
  font-size: 24px;
  line-height: 1.35;
}

.admin-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 18px;
}

.admin-detail-grid div {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  padding: 14px;
}

.admin-detail-grid strong {
  display: block;
  color: #756548;
  font-size: 13px;
  margin-bottom: 6px;
}

.admin-detail-grid p {
  margin: 0;
  color: #2f2922;
  line-height: 1.65;
}

.benefit-tag {
  margin-left: 8px;
  background: #2c261f;
  color: var(--gold);
}

.password-reset-row {
  display: grid;
  grid-template-columns: 280px auto;
  gap: 12px;
  align-items: center;
  margin: 16px 0;
}

.password-modal {
  display: grid;
  gap: 18px;
}

.modal-backdrop {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: rgba(31, 26, 20, 0.42);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 36px;
}

.modal-panel {
  position: relative;
  width: min(920px, 92vw);
  max-height: 86vh;
  overflow: auto;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(31, 26, 20, 0.24);
  padding: 28px;
}

.modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: #fffdf8;
  color: #4d4033;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.table-pager-row td {
  background: #fffaf0;
}

.admin-pagination {
  margin-top: 8px;
}

label {
  color: #3f3931;
  font-weight: 700;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  color: var(--ink);
  padding: 12px 13px;
  outline: none;
}

textarea {
  min-height: 118px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--gold-deep);
  box-shadow: 0 0 0 3px rgba(245, 208, 97, 0.22);
}

.captcha-row {
  display: grid;
  grid-template-columns: 1fr 126px;
  gap: 10px;
  align-items: center;
}

.captcha-refresh {
  width: 126px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
}

.captcha-refresh:focus-visible {
  outline: 2px solid var(--gold-deep);
  outline-offset: 2px;
}

.captcha-row img {
  width: 126px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff8e8;
  display: block;
}

.layout-2 {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 24px;
  align-items: start;
}

.side-nav {
  position: sticky;
  top: calc(var(--header) + 18px);
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
}

.side-nav button,
.side-nav a {
  width: 100%;
  border: 0;
  text-align: left;
  background: transparent;
  padding: 13px 14px;
  border-radius: 6px;
  cursor: pointer;
  color: #4d463c;
  display: block;
}

.side-nav button.active,
.side-nav a.active,
.side-nav button:hover,
.side-nav a:hover {
  background: #f3e5c8;
  color: #17120e;
  font-weight: 700;
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.admin-main .table {
  table-layout: fixed;
}

.table th,
.table td {
  text-align: left;
  padding: 13px 10px;
  border-bottom: 1px solid var(--line);
  color: #403a32;
  vertical-align: top;
}

.table .cell-code {
  width: 160px;
  white-space: nowrap;
  color: #5f5448;
}

.table .cell-main {
  width: 42%;
  min-width: 0;
}

.table .cell-title {
  width: 250px;
  min-width: 0;
}

.table .cell-title strong {
  display: block;
  line-height: 1.55;
}

.table .cell-category {
  width: 110px;
}

.table .cell-main strong {
  display: block;
  line-height: 1.45;
  margin-bottom: 6px;
}

.table .cell-main p,
.table .cell-company p {
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}

.table .cell-company {
  width: 220px;
  min-width: 0;
}

.table .cell-status {
  width: 150px;
  min-width: 0;
}

.compact-actions {
  width: 128px;
  min-width: 0;
  display: table-cell;
}

.admin-main .table th,
.admin-main .table td {
  overflow-wrap: anywhere;
}

.benefit-state {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 13px;
  background: #f1e7d7;
  color: #6c5d4f;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 8px;
}

.benefit-state.active {
  background: #2c261f;
  color: var(--gold);
}

.benefit-state + small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.table-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-width: 0;
}

.action-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.table-actions .btn,
.action-stack .btn {
  padding: 7px 10px;
  font-size: 13px;
}

.table th {
  color: #181512;
  background: #fbf1df;
}

.redemption-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.redemption-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: 0 8px 22px rgba(64, 45, 19, 0.06);
}

.redemption-main {
  min-width: 0;
  display: grid;
  gap: 16px;
}

.redemption-title h3 {
  margin: 10px 0 6px;
  font-size: 20px;
  line-height: 1.35;
}

.redemption-title p,
.redemption-reply {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}

.redemption-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.redemption-meta div {
  padding: 12px;
  border-radius: 6px;
  background: #fffdf8;
  border: 1px solid rgba(216, 195, 151, 0.7);
}

.redemption-meta span {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 5px;
}

.redemption-meta strong {
  display: block;
  color: #1f1a15;
  font-size: 15px;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.redemption-side {
  display: grid;
  align-content: start;
  gap: 10px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.redemption-points {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.redemption-points strong {
  font-size: 28px;
  color: #8d6a1d;
}

.redemption-points span {
  color: var(--muted);
}

.redemption-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.redemption-actions .btn {
  min-width: 74px;
  padding: 9px 13px;
}

.status {
  display: inline-flex;
  padding: 5px 9px;
  border-radius: 13px;
  background: #efe5d4;
  color: #5c5145;
  font-size: 12px;
  font-weight: 700;
}

.status.ok {
  background: #e8f1e8;
  color: var(--ok);
}

.status.wait {
  background: #fff3c7;
  color: #7c5b00;
}

.status.reject {
  background: #fae6e1;
  color: var(--danger);
}

.tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 18px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.notice {
  padding: 14px 16px;
  border-radius: 6px;
  background: #fff6df;
  border: 1px solid #efd38d;
  color: #685022;
  line-height: 1.7;
}

.detail-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 24px;
  align-items: start;
}

.company-card {
  position: sticky;
  top: calc(var(--header) + 24px);
  padding: 28px;
}

.company-card-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.company-card-head .tag {
  margin-bottom: 12px;
}

.company-card-head h3 {
  margin: 0;
  color: #1f1a15;
  font-size: 24px;
  line-height: 1.35;
}

.company-meta-list {
  display: grid;
  gap: 10px;
  margin: 18px 0 22px;
}

.company-meta-list div {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 11px 0;
  border-bottom: 1px solid rgba(222, 208, 181, 0.72);
}

.company-meta-list div:last-child {
  border-bottom: 0;
}

.company-meta-list span {
  color: #8b7b62;
  font-size: 13px;
}

.company-meta-list strong {
  min-width: 0;
  color: #2d261f;
  font-size: 14px;
  line-height: 1.55;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.company-actions {
  display: grid;
  gap: 10px;
}

.company-actions .btn {
  width: 100%;
  min-height: 44px;
  padding: 11px 12px;
}

.company-actions .primary {
  font-size: 16px;
}

.company-actions > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.detail-image {
  display: block;
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--radius);
  background: #eee3d0;
}

.detail-content p {
  color: #3f3931;
  font-size: 16px;
  line-height: 2;
  margin: 0 0 16px;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 22px 0;
}

.detail-facts div {
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffdf8;
  padding: 14px;
}

.detail-facts strong {
  display: block;
  color: #756548;
  font-size: 13px;
  margin-bottom: 6px;
}

.detail-facts span {
  color: #2f2922;
  line-height: 1.5;
}

.site-footer {
  background: #211b15;
  color: #f2eadc;
  padding: 42px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 30px;
}

.site-footer p,
.site-footer a {
  color: #cfc3b2;
  line-height: 1.8;
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.empty {
  color: var(--muted);
  padding: 28px;
  text-align: center;
  border: 1px dashed var(--line);
  border-radius: var(--radius);
}

.toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 40;
  background: #231e18;
  color: #fff7e8;
  padding: 13px 18px;
  border-radius: 6px;
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.fade-up {
  animation: fadeUp 0.18s ease-out both;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .fade-up {
    animation: none;
  }

  .btn,
  .module-card,
  .module-card::before,
  .service-cards .info-card,
  .news-row,
  .toast {
    transition: none;
  }
}

.content-grid.service-cards {
  grid-template-columns: 1fr;
  gap: 14px;
}

.content-grid.service-cards .info-card {
  min-height: 0;
  padding: 14px;
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  column-gap: 20px;
  align-items: stretch;
}

.content-grid.service-cards .info-card img {
  width: 168px;
  height: 132px;
  margin: 0;
}

.content-grid.service-cards .info-card-body {
  min-width: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  grid-template-areas:
    "tags actions"
    "title actions"
    "summary actions"
    "meta actions";
  column-gap: 18px;
}

.content-grid.service-cards .info-card h3 {
  max-width: 100%;
  white-space: normal;
  word-break: normal;
  overflow-wrap: break-word;
}

.content-grid.service-cards .info-card-actions {
  align-self: center;
}

.section-intro {
  max-width: 820px;
  margin: -8px 0 22px;
  color: var(--muted);
  line-height: 1.8;
}

.service-sidebar a[href*="category=redeem"] {
  margin-top: 10px;
}

.service-sidebar a[href*="category=redeem"].active,
.service-sidebar a[href*="category=redeem"]:hover {
  background: linear-gradient(135deg, #fff6dc, #f8e4a7);
  border-color: rgba(197, 158, 57, 0.48);
}

@media (max-width: 1200px) {
  body {
    min-width: 1180px;
  }
}

/* Visual refinement override: restrained enterprise information platform style. */
:root {
  --bg: #f4f6f8;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --ink: #17202a;
  --muted: #65717f;
  --line: #d9e0e7;
  --gold: #c69a35;
  --gold-deep: #8b6418;
  --dark: #1f2933;
  --danger: #b42318;
  --ok: #2f7d4f;
  --shadow: 0 10px 24px rgba(31, 41, 51, 0.07);
  --radius: 6px;
  --header: 72px;
}

body {
  background:
    linear-gradient(180deg, #f8fafc 0, #f4f6f8 260px),
    var(--bg);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.65;
}

.nav-inner,
.wrap {
  width: min(1120px, calc(100vw - 48px));
}

.site-header {
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(217, 224, 231, 0.92);
  box-shadow: 0 1px 0 rgba(31, 41, 51, 0.03);
  backdrop-filter: saturate(1.1) blur(12px);
}

.brand {
  gap: 10px;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: #17202a;
  color: #d7ad52;
  box-shadow: none;
}

.brand-text small {
  color: #7a8794;
}

.nav-links {
  gap: 24px;
  color: #384656;
}

.nav-links a {
  padding: 26px 0;
}

.nav-links a.active::after,
.nav-links a:hover::after {
  bottom: 17px;
  height: 2px;
  background: #2c5f8f;
}

.btn {
  min-height: 42px;
  border: 1px solid transparent;
  border-radius: 5px;
  padding: 10px 16px;
  background: #eef2f6;
  color: #1f2933;
  font-weight: 600;
  transition: background 0.16s ease, border-color 0.16s ease, color 0.16s ease, box-shadow 0.16s ease;
}

.btn:hover {
  transform: none;
  box-shadow: 0 4px 12px rgba(31, 41, 51, 0.08);
}

.btn.gold {
  background: #244f7a;
  border-color: #244f7a;
  color: #ffffff;
}

.btn.gold:hover {
  background: #1d4166;
  border-color: #1d4166;
}

.btn.dark {
  background: #17202a;
  border-color: #17202a;
  color: #ffffff;
}

.btn.ghost {
  background: #ffffff;
  border-color: #cfd8e3;
  color: #2d3a49;
}

.btn.ghost:hover {
  border-color: #9aa8b6;
  background: #f8fafc;
}

.btn.danger {
  background: #fff5f2;
  color: var(--danger);
  border-color: #f4c7bd;
}

.hero {
  min-height: 560px;
  background: #17202a;
}

.hero::before {
  background:
    linear-gradient(90deg, rgba(15, 23, 32, 0.86), rgba(15, 23, 32, 0.62) 48%, rgba(15, 23, 32, 0.18)),
    url("/assets/images/hero-business-399d8bae8fd7faf0d7446e34e02ab536.png") center / cover no-repeat;
}

.hero .wrap {
  padding: 72px 0 78px;
  color: #ffffff;
}

.eyebrow,
.hero .eyebrow,
.news-hero .eyebrow {
  color: #2c5f8f;
  font-size: 12px;
  font-weight: 700;
}

.hero .eyebrow,
.news-hero .eyebrow {
  color: #d7ad52;
}

.hero h1 {
  width: min(700px, 100%);
  margin: 16px 0;
  font-size: 45px;
  line-height: 1.16;
  font-weight: 700;
}

.hero p {
  width: min(620px, 100%);
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.85;
}

.hero-search,
.service-search {
  border: 1px solid #cfd8e3;
  border-radius: 6px;
  background: #ffffff;
  box-shadow: var(--shadow);
}

.hero-search {
  width: min(640px, 100%);
  border-color: rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.14);
}

.hero-search input,
.service-search input {
  background: #ffffff;
  color: #17202a;
}

.hero-search input::placeholder,
.service-search input::placeholder {
  color: #8a96a3;
}

.hero-note {
  color: rgba(255, 255, 255, 0.68);
}

.section {
  padding: 68px 0;
}

.section.white {
  background: #ffffff;
}

.section-head {
  align-items: flex-end;
  margin-bottom: 26px;
}

.section-head h2,
.page-title h1,
.article-detail h1 {
  color: #17202a;
  font-size: 31px;
  font-weight: 700;
  line-height: 1.3;
}

.section-head p,
.page-title p,
.article-detail p,
.detail-content p {
  color: var(--muted);
}

.stats {
  gap: 14px;
  margin-top: -38px;
}

.stat {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 24px;
  box-shadow: var(--shadow);
}

.stat strong {
  color: #17202a;
  font-size: 32px;
}

.module-grid {
  gap: 14px;
}

.module-card,
.info-card,
.client-card,
.news-card,
.panel,
.news-side,
.news-row,
.service-sidebar a,
.admin-sidebar,
.side-nav,
.redemption-card,
.benefit-rule-panel,
.benefit-option-grid article {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: none;
}

.module-card {
  min-height: 172px;
  padding: 18px;
  color: #ffffff;
  background: #17202a;
}

.module-card::before {
  background:
    linear-gradient(180deg, rgba(23, 32, 42, 0.28), rgba(23, 32, 42, 0.86)),
    var(--module-bg) center / cover no-repeat;
}

.module-card:hover,
.service-cards .info-card:hover,
.news-row:hover {
  transform: none;
  border-color: #b8c5d2;
  box-shadow: 0 8px 20px rgba(31, 41, 51, 0.08);
}

.module-card:hover::before {
  transform: scale(1.02);
}

.module-card p {
  color: rgba(255, 255, 255, 0.78);
}

.module-card span {
  color: #d7ad52;
}

.icon-box,
.process-step span,
.benefit-option-grid span,
.benefit-state.active,
.benefit-tag {
  background: #eef4fa;
  color: #244f7a;
}

.module-card .icon-box {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
}

.focus-grid span,
.rule-grid div,
.admin-detail-grid div,
.redemption-meta div,
.detail-facts div,
.inner-panel {
  background: #f8fafc;
  border-color: var(--line);
}

.process-line {
  gap: 0;
  background: var(--line);
  border: 1px solid var(--line);
  box-shadow: none;
}

.process-step {
  background: #ffffff;
  min-height: 210px;
}

.image-band::before,
.benefits-zone::before,
.rights-main,
.auth-page,
.admin-auth-page,
.news-lead {
  background-color: #f8fafc;
}

.image-band::before {
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0.86)),
    var(--band-bg) center / cover no-repeat;
}

.benefits-zone::before,
.rights-main {
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0.86)),
    url("/assets/images/hero-business-399d8bae8fd7faf0d7446e34e02ab536.png") center / cover no-repeat;
}

.auth-page {
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0.86)),
    url("/assets/images/section-process-0bb748e2c6bf2137ab610db65f5193db.png") center / cover no-repeat;
}

.admin-auth-page {
  background:
    linear-gradient(90deg, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0.86)),
    url("/assets/images/section-audit-33017699b07f56ad5bca8d331cd21494.png") center / cover no-repeat;
}

.news-lead {
  background:
    linear-gradient(135deg, rgba(248, 250, 252, 0.96), rgba(248, 250, 252, 0.86)),
    url("/assets/images/category-office-d4f1dd531898837185cf257ab9b7d557.png") right center / cover no-repeat;
}

.benefits-zone::before {
  opacity: 1;
}

.benefit-rule-panel,
.benefit-option-grid article {
  background: rgba(255, 255, 255, 0.94);
}

.rule-grid strong,
.company-card-head h3,
.detail-facts span,
.admin-detail-grid p,
.redemption-meta strong {
  color: #17202a;
}

.partner-image,
.logo-item {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: none;
}

.page-hero {
  padding: 58px 0 38px;
  background: #eef2f6;
  border-bottom: 1px solid var(--line);
}

.news-hero {
  padding: 72px 0 48px;
  background:
    linear-gradient(90deg, rgba(15, 23, 32, 0.86), rgba(15, 23, 32, 0.54)),
    url("/assets/images/hero-business-399d8bae8fd7faf0d7446e34e02ab536.png") center / cover no-repeat;
}

.news-hero h1 {
  font-size: 42px;
}

.news-hero p {
  color: rgba(255, 255, 255, 0.78);
}

.news-lead {
  min-height: 320px;
  border-color: var(--line);
  box-shadow: none;
}

.news-meta,
.news-side-item span,
.news-row time,
.news-row > span,
.auth-actions a,
.redemption-points strong {
  color: #2c5f8f;
}

.content-grid {
  gap: 16px;
}

.info-card,
.news-card,
.client-card,
.panel {
  padding: 22px;
}

.info-card img,
.detail-image {
  background: #e9eef4;
}

.tag,
.status,
.benefit-state {
  height: auto;
  min-height: 24px;
  background: #eef2f6;
  color: #384656;
  border-radius: 4px;
}

.status.ok {
  background: #e9f7ef;
  color: #246b43;
}

.status.wait {
  background: #fff7df;
  color: #7a5900;
}

.status.reject {
  background: #fff1ef;
  color: var(--danger);
}

.auth-card,
.success-panel {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: var(--shadow);
}

.auth-visual h1 {
  font-size: 40px;
}

.auth-points span {
  border-color: #cfd8e3;
  background: #ffffff;
  color: #384656;
}

.admin-sidebar button,
.side-nav button,
.side-nav a {
  color: #384656;
}

.admin-sidebar button.active,
.admin-sidebar button:hover,
.side-nav button.active,
.side-nav a.active,
.side-nav button:hover,
.side-nav a:hover,
.service-sidebar a.active,
.service-sidebar a:hover {
  background: #eef4fa;
  color: #17202a;
  font-weight: 700;
}

.service-sidebar a.active,
.service-sidebar a:hover {
  border-color: #b8c5d2;
}

.service-cards .info-card {
  background: #ffffff;
}

.service-cards .info-card p {
  color: var(--muted);
}

label {
  color: #263341;
  font-size: 13px;
}

input,
select,
textarea {
  border-color: #cfd8e3;
  border-radius: 5px;
  background: #ffffff;
  color: #17202a;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #2c5f8f;
  box-shadow: 0 0 0 3px rgba(44, 95, 143, 0.13);
}

.captcha-row img {
  background: #ffffff;
}

.table {
  border-collapse: separate;
  border-spacing: 0;
}

.table th {
  background: #f2f5f8;
  color: #263341;
  font-weight: 700;
}

.table th,
.table td {
  border-bottom: 1px solid var(--line);
  color: #384656;
}

.table tr:last-child td {
  border-bottom: 0;
}

.notice {
  background: #f8fafc;
  border-color: #cfd8e3;
  color: #465565;
}

.modal-backdrop {
  background: rgba(15, 23, 32, 0.52);
}

.modal-panel {
  background: #ffffff;
  border-color: var(--line);
  box-shadow: 0 24px 60px rgba(15, 23, 32, 0.24);
}

.modal-close {
  background: #ffffff;
  color: #263341;
}

.site-footer {
  background: #17202a;
  color: #edf2f7;
}

.site-footer p,
.site-footer a {
  color: #b9c3cf;
}

.toast {
  background: #17202a;
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 32, 0.2);
}

.service-sidebar a[href*="category=redeem"].active,
.service-sidebar a[href*="category=redeem"]:hover {
  background: #eef4fa;
  border-color: #b8c5d2;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
