/* roulang page: index */
:root {
  --primary: #1B6FB8;
  --primary-dark: #135C9A;
  --primary-soft: #E7F1FA;
  --accent: #FFC043;
  --accent-deep: #8A5A00;
  --body-bg: #F2F7FC;
  --white: #FFFFFF;
  --ink: #1F2A37;
  --body: #5B6B7C;
  --muted: #92A1AF;
  --line: #E3EBF3;
  --footer-bg: #16293B;
  --success: #20A575;
  --danger: #E05267;
  --r-card: 12px;
  --r-btn: 8px;
  --r-pill: 999px;
  --shadow-card: 0 1px 2px rgba(20, 40, 60, .06), 0 8px 20px rgba(20, 40, 60, .05);
  --shadow-hover: 0 6px 16px rgba(20, 40, 60, .10), 0 12px 28px rgba(20, 40, 60, .08);
  --section-space: 84px;
}

@media (max-width: 639px) {
  :root {
    --section-space: 56px;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: var(--body);
  background: var(--body-bg);
  -webkit-font-smoothing: antialiased;
  font-variant-numeric: tabular-nums;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--primary);
  text-decoration: none;
  transition: color .2s ease;
}

button {
  font-family: inherit;
}

p {
  margin: 0 0 1em;
}

h1,
h2,
h3,
h4 {
  margin: 0 0 .4em;
  color: var(--ink);
  font-weight: 700;
  line-height: 1.35;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--primary-dark);
  outline-offset: 2px;
}

.grid-container {
  max-width: 1200px;
  padding-left: 20px;
  padding-right: 20px;
}

.section {
  padding: var(--section-space) 0;
}

.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--body-bg);
  border-top: 1px solid #EAF1F8;
  border-bottom: 1px solid #EAF1F8;
}

.section-head {
  margin-bottom: 42px;
}

.section-head .section-label {
  display: inline-block;
  margin-bottom: 12px;
  padding: 4px 14px;
  background: #E5F0F9;
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .05em;
  border-radius: var(--r-pill);
}

.section-head h2 {
  font-size: 27px;
  letter-spacing: -0.01em;
}

.section-head p {
  max-width: 720px;
  margin: 12px 0 0;
  color: var(--body);
  font-size: 15px;
}

.section-head.center {
  text-align: center;
}

.section-head.center p {
  margin-left: auto;
  margin-right: auto;
}

/* ========== Buttons ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 28px;
  border-radius: var(--r-btn);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 8px 20px rgba(27, 111, 184, .22);
}

.btn-primary:hover {
  background: var(--primary-dark);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(27, 111, 184, .30);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}

.btn-secondary {
  background: #fff;
  color: var(--primary);
  border-color: #CEDCE9;
}

.btn-secondary:hover {
  background: #F0F6FB;
  border-color: var(--primary);
  color: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(20, 60, 100, .08);
}

.btn-secondary:active {
  transform: translateY(0);
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .72);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
  color: #fff;
}

.btn-outline:active {
  background: rgba(0, 0, 0, .08);
}

.btn-gold {
  background: var(--accent);
  color: #3A2804;
  box-shadow: 0 8px 22px rgba(255, 192, 67, .38);
}

.btn-gold:hover {
  background: #F4B62E;
  color: #241803;
  transform: translateY(-1px);
  box-shadow: 0 10px 26px rgba(255, 192, 67, .48);
}

.btn-gold:active {
  transform: translateY(0);
}

/* ========== Header & Nav ========== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 10px rgba(20, 50, 80, .03);
}

.header-inner {
  position: relative;
  max-width: 1280px;
  margin: 0 auto;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 24px;
}

.header-links {
  display: flex;
  align-items: center;
  gap: 2px;
  z-index: 2;
}

.header-right {
  justify-content: flex-end;
}

.header-link {
  position: relative;
  display: inline-block;
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #3D4C5C;
  text-decoration: none;
  border-radius: 8px;
  transition: color .2s ease, background .2s ease;
}

.header-link:hover {
  color: var(--primary-dark);
  background: #F5F9FD;
}

.header-link.active {
  color: var(--primary);
  font-weight: 600;
}

.header-link.active::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -2px;
  width: 22px;
  height: 4px;
  border-radius: var(--r-pill);
  background: var(--primary);
}

.header-link.active:hover {
  background: transparent;
}

.header-brand {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  color: var(--ink);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: .02em;
  white-space: nowrap;
  text-decoration: none;
  border-radius: 12px;
  transition: background .2s ease, color .2s ease;
}

.header-brand:hover {
  color: var(--primary);
  background: rgba(225, 238, 249, .65);
}

.logo-mark {
  width: 36px;
  height: 36px;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--primary);
  border-radius: 10px;
  box-shadow: 0 6px 14px rgba(27, 111, 184, .24);
}

.logo-mark svg {
  width: 24px;
  height: 24px;
}

.brand-cn {
  line-height: 1.2;
}

.nav-burger {
  display: none;
  width: 42px;
  height: 42px;
  margin-left: auto;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  padding: 0;
}

.nav-burger span {
  display: block;
  width: 19px;
  height: 2px;
  border-radius: 2px;
  background: var(--ink);
  transition: transform .2s ease, opacity .2s ease;
}

body.menu-open .nav-burger span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.menu-open .nav-burger span:nth-child(2) {
  opacity: 0;
}

body.menu-open .nav-burger span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 34px rgba(20, 50, 80, .10);
  padding: 8px 20px 18px;
}

.mobile-links {
  display: flex;
  flex-direction: column;
}

.mobile-link {
  display: block;
  padding: 14px 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  border-bottom: 1px solid #F0F5FA;
  text-decoration: none;
}

.mobile-link:last-child {
  border-bottom: 0;
}

.mobile-link:hover {
  color: var(--primary);
}

.mobile-link.active {
  color: var(--primary);
  font-weight: 700;
}

@media (max-width: 860px) {
  .header-inner {
    padding: 0 16px;
  }

  .header-links {
    display: none;
  }

  .nav-burger {
    display: inline-flex;
  }

  body.menu-open .mobile-menu {
    display: block;
  }

  .header-brand {
    left: 50%;
    transform: translateX(-50%);
    position: absolute;
    top: 50%;
  }
}

/* ========== Countdown strip ========== */
.countdown-strip {
  background: linear-gradient(90deg, #E3EEF9, #DCEAF5);
  border-bottom: 1px solid #D6E4F0;
}

.countdown-inner {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 24px;
  font-size: 14px;
}

.countdown-left {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #2D4458;
}

.status-dot {
  width: 8px;
  height: 8px;
  background: #21B576;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(33, 181, 118, .15);
  flex: none;
}

.countdown-left strong {
  color: var(--ink);
  font-weight: 700;
}

.cdt-grid {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cdt-item {
  display: flex;
  align-items: baseline;
  gap: 5px;
  background: var(--accent);
  padding: 4px 12px;
  border-radius: 10px;
  border: 1px solid #F6CE7E;
}

.cdt-item strong {
  font-size: 18px;
  color: #6E4300;
  font-weight: 700;
  line-height: 1.3;
}

.cdt-item i {
  color: #8E6010;
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
}

@media (max-width: 860px) {
  .countdown-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 16px;
  }

  .cdt-grid {
    width: 100%;
    justify-content: flex-start;
  }

  .cdt-item {
    flex: 1;
    justify-content: center;
    padding: 6px 8px;
  }
}

/* ========== Hero ========== */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #E8F1F9 0%, #F6FAFD 80%);
}

.hero::before {
  content: "";
  position: absolute;
  width: 680px;
  height: 680px;
  top: -220px;
  right: -160px;
  background: radial-gradient(circle, rgba(27, 111, 184, .09), transparent 65%);
  pointer-events: none;
}

.hero .grid-container {
  position: relative;
  z-index: 2;
  padding-top: 76px;
  padding-bottom: 76px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  padding: 7px 16px;
  background: #E2EDF7;
  color: var(--primary-dark);
  border: 1px solid #C6DCEC;
  font-size: 13px;
  font-weight: 600;
  border-radius: var(--r-pill);
}

.hero-copy h1 {
  margin: 0 0 18px;
  font-size: clamp(30px, 3.2vw, 37px);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 600px;
  margin: 0 0 28px;
  font-size: 16px;
  color: var(--body);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 10px;
  padding-top: 20px;
  border-top: 1px solid #DCE8F1;
  font-size: 13px;
  color: var(--body);
}

.hero-proof span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.hero-proof svg {
  width: 16px;
  height: 16px;
  color: var(--success);
  flex: none;
}

.hero-panel {
  background: rgba(255, 255, 255, .92);
  border: 1px solid #E1EBF3;
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.hero-panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
}

.hero-panel-title h2 {
  font-size: 18px;
  margin: 0;
}

.hero-panel-title span {
  font-size: 12px;
  background: #FFF5DC;
  border: 1px solid #F3DEA4;
  color: #8A5A00;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-item {
  background: #F8FBFE;
  border: 1px solid #E5EEF5;
  border-radius: 14px;
  padding: 18px 14px;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  border-color: #B9D6EA;
  box-shadow: 0 8px 20px rgba(30, 80, 120, .07);
}

.feature-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: #E1EDF8;
  color: var(--primary);
  margin-bottom: 14px;
}

.feature-icon.gold {
  background: #FFF5E0;
  color: #C57A00;
}

.feature-icon svg {
  width: 21px;
  height: 21px;
}

.feature-item h3 {
  font-size: 15px;
  font-weight: 700;
  margin: 0 0 6px;
}

.feature-item p {
  font-size: 13px;
  color: #7A8897;
  margin: 0;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .hero .grid-container {
    padding-top: 50px;
    padding-bottom: 56px;
  }

  .hero-copy {
    margin-bottom: 28px;
  }

  .hero-panel {
    max-width: 620px;
  }
}

@media (max-width: 559px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-actions .btn + .btn {
    margin-left: 0;
  }

  .hero-copy h1 {
    font-size: 30px;
  }
}

/* ========== Gallery / 亮点图墙 ========== */
.gallery-section {
  background: #fff;
}

.gallery-card {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: var(--shadow-card);
  background: linear-gradient(135deg, #D9E7F2, #C3D9E8);
  text-decoration: none;
  transition: box-shadow .3s ease, transform .3s ease;
}

.gallery-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.gallery-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.gallery-card:hover img {
  transform: scale(1.03);
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 70%;
  background: linear-gradient(to bottom, rgba(10, 25, 38, 0), rgba(7, 20, 32, .72));
  pointer-events: none;
}

.gallery-card-lg {
  height: 348px;
}

.gallery-stack-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
  height: 348px;
}

.gallery-card-sm {
  flex: 1;
  min-height: 120px;
}

.gallery-bottom {
  margin-top: 16px;
}

.gallery-card-bottom {
  height: 220px;
}

.gallery-caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
}

.g-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 24px;
  padding: 0 8px;
  background: var(--accent);
  color: #513500;
  font-size: 12px;
  font-weight: 700;
  border-radius: var(--r-pill);
  box-shadow: none;
}

.gallery-caption span:last-child {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .02em;
  text-shadow: 0 1px 6px rgba(0, 0, 0, .4);
}

@media (max-width: 1023px) {
  .gallery-stack-col {
    margin-top: 16px;
    height: auto;
    flex-direction: row;
  }

  .gallery-card-sm {
    flex: 1;
    height: 220px;
  }

  .gallery-card-lg,
  .gallery-card-bottom {
    height: 260px;
  }
}

@media (max-width: 559px) {
  .gallery-stack-col {
    flex-direction: column;
    margin-top: 0;
  }

  .gallery-card-sm {
    margin-top: 16px;
  }

  .gallery-bottom .cell {
    margin-bottom: 16px;
  }

  .gallery-bottom .cell:last-child {
    margin-bottom: 0;
  }
}

/* ========== CTA ========== */
.cta-section {
  background: var(--body-bg);
}

.cta-inner {
  background: linear-gradient(135deg, #1B6FB8 0%, #1767AB 74%);
  border-radius: 24px;
  padding: 52px 50px;
  color: rgba(255, 255, 255, .9);
  box-shadow: 0 18px 44px rgba(27, 111, 184, .24);
  position: relative;
  overflow: hidden;
}

.cta-inner::before {
  content: "";
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
  top: -220px;
  right: -80px;
}

.cta-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.cta-kicker {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #FFE1A2;
  margin: 0 0 10px;
}

.cta-left h2 {
  color: #fff;
  font-size: 27px;
  margin: 0 0 12px;
  line-height: 1.4;
}

.cta-left p {
  max-width: 700px;
  margin: 0;
  color: rgba(255, 255, 255, .88);
  font-size: 15px;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 34px;
  border-top: 1px solid rgba(255, 255, 255, .18);
  padding-top: 30px;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, .84);
  font-size: 14px;
}

.step-num {
  width: 28px;
  height: 28px;
  flex: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

@media (max-width: 1023px) {
  .cta-actions {
    margin-top: 20px;
  }
}

@media (max-width: 639px) {
  .cta-inner {
    padding: 36px 24px;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .cta-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .step-item {
    font-size: 14px;
  }
}

/* ========== FAQ ========== */
.faq-section {
  background: #fff;
}

.faq-wrap {
  max-width: 860px;
  margin: 0 auto;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 34px;
}

.faq-item {
  border: 1px solid #DEE7F0;
  background: #fff;
  border-radius: 16px;
  padding: 4px 20px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.faq-item[open] {
  border-color: var(--primary);
  box-shadow: 0 6px 18px rgba(27, 111, 184, .09);
}

.faq-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  cursor: pointer;
  list-style: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
}

.faq-summary::-webkit-details-marker {
  display: none;
}

.faq-summary:hover {
  color: var(--primary-dark);
}

.faq-plus {
  position: relative;
  width: 28px;
  height: 28px;
  flex: none;
  display: block;
  border-radius: 50%;
  background: #EBF3F9;
  transition: background .2s ease, transform .2s ease;
}

.faq-plus::before,
.faq-plus::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: var(--primary);
  border-radius: 2px;
  transform: translate(-50%, -50%);
}

.faq-plus::before {
  width: 12px;
  height: 2px;
}

.faq-plus::after {
  width: 2px;
  height: 12px;
}

details[open] .faq-plus {
  background: var(--primary);
}

details[open] .faq-plus::before,
details[open] .faq-plus::after {
  background: #fff;
}

details[open] .faq-plus::after {
  opacity: 0;
}

.faq-answer {
  padding: 0 0 20px;
  color: var(--body);
  font-size: 16px;
  line-height: 1.8;
}

.faq-answer p {
  margin: 0;
}

/* ========== News / CMS list ========== */
.news-section {
  background: var(--body-bg);
}

.news-feature-md {
  display: block;
  background: #fff;
  border: 1px solid #E2EAF2;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  box-shadow: var(--shadow-card);
  text-decoration: none;
  transition: box-shadow .25s ease, transform .25s ease;
}

.news-feature-md:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.news-feature-md:hover .news-media img {
  transform: scale(1.02);
}

.news-media {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.news-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}

.news-media .badge {
  position: absolute;
  left: 16px;
  top: 16px;
  z-index: 2;
  padding: 5px 14px;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  border-radius: var(--r-pill);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(27, 111, 184, .22);
}

.news-feature-body {
  padding: 24px;
}

.news-feature-body h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-feature-body p {
  color: var(--body);
  font-size: 14px;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.news-read {
  color: var(--primary);
  font-weight: 600;
}

.news-mini-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid #E2EAF2;
  border-radius: 16px;
  padding: 14px;
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}

.news-mini-item:hover {
  box-shadow: var(--shadow-hover);
  transform: translateX(2px);
}

.news-mini-thumb {
  width: 148px;
  height: 92px;
  flex: none;
  background: #E3EEF7;
  border-radius: 12px;
  overflow: hidden;
}

.news-mini-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.news-mini-item:hover .news-mini-thumb img {
  transform: scale(1.04);
}

.news-mini-content {
  min-width: 0;
  font-size: 15px;
}

.news-mini-badge {
  display: inline-block;
  padding: 3px 10px;
  background: #EAF3FB;
  color: var(--primary-dark);
  border-radius: var(--r-pill);
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 7px;
}

.news-mini-content h3 {
  font-size: 15px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 8px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  color: var(--ink);
}

.news-mini-time {
  font-size: 12px;
  color: var(--muted);
}

.news-side-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.news-empty {
  background: #fff;
  border: 1px dashed #C7D7E4;
  border-radius: 18px;
  padding: 56px 20px;
  text-align: center;
  color: var(--muted);
  font-size: 15px;
}

@media (max-width: 1023px) {
  .news-feature-md {
    margin-bottom: 18px;
  }
}

@media (max-width: 639px) {
  .news-mini-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .news-mini-thumb {
    width: 100%;
    height: 180px;
  }
}

/* ========== Footer ========== */
.site-footer {
  background: var(--footer-bg);
  color: #9FB4C8;
}

.footer-main {
  padding: 72px 0 36px;
}

.footer-grid .cell {
  margin-bottom: 30px;
}

.footer-brand .logo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #fff;
  font-size: 19px;
  font-weight: 700;
  text-decoration: none;
}

.footer-logo-mark {
  width: 36px;
  height: 36px;
  flex: none;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-logo-mark svg {
  width: 24px;
  height: 24px;
}

.footer-brand p {
  max-width: 400px;
  font-size: 14px;
  line-height: 1.9;
  margin: 0 0 18px;
}

.footer-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 14px;
  letter-spacing: .03em;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a {
  color: #9FB4C8;
  text-decoration: none;
  font-size: 14px;
  transition: color .2s ease, padding-left .2s ease;
}

.footer-links a:hover {
  color: #fff;
  padding-left: 3px;
}

.footer-note {
  font-size: 14px;
  line-height: 1.8;
  color: #99AFC2;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding: 20px 0;
}

.footer-bottom .grid-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  font-size: 13px;
  color: #7E96AC;
}

.legal-domain {
  display: inline-block;
}

@media (max-width: 639px) {
  .footer-main {
    padding-top: 52px;
  }

  .footer-bottom .grid-container {
    flex-direction: column;
    text-align: center;
  }
}

/* ========== Misc ========== */
.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
}

.arrow-link:hover {
  color: var(--primary-dark);
}

/* roulang page: article */
:root {
    --brand: #1B6FB8;
    --brand-deep: #135C9A;
    --brand-soft: #EEF5FB;
    --accent: #FFC043;
    --accent-soft: #FDF6E3;
    --page-bg: #F2F7FC;
    --card-bg: #ffffff;
    --text-main: #1F2A37;
    --text-body: #5B6B7C;
    --text-aux: #92A1AF;
    --line: #E3EBF3;
    --success: #20A575;
    --error: #E05267;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-pill: 999px;
    --shadow-sm: 0 1px 2px rgba(20,40,60,.06), 0 8px 20px rgba(20,40,60,.05);
    --shadow-hover: 0 6px 16px rgba(20,40,60,.10), 0 12px 28px rgba(20,40,60,.08);
    --font: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  }

  *, *::before, *::after { box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    margin: 0;
    font-family: var(--font);
    background: var(--page-bg);
    color: var(--text-body);
    line-height: 1.75;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
  }

  a { color: var(--brand); text-decoration: none; transition: color .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease, transform .25s ease; }
  a:hover { color: var(--brand-deep); }
  img { max-width: 100%; height: auto; display: block; }
  button { font-family: inherit; cursor: pointer; }
  ul, ol, p { margin-top: 0; }

  h1, h2, h3, h4, h5, h6 {
    color: var(--text-main);
    line-height: 1.35;
    margin: 0 0 .4em;
    letter-spacing: .01em;
  }
  h1 { font-size: 30px; font-weight: 700; }
  h2 { font-size: 24px; font-weight: 700; }
  h3 { font-size: 18px; font-weight: 600; }
  h4 { font-size: 15px; font-weight: 600; }

  :focus-visible {
    outline: 3px solid rgba(27,111,184,.28);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .grid-container { max-width: 1200px; }

  /* ===== 顶部导航 ===== */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    height: 78px;
    background: rgba(255,255,255,.96);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 2px 14px rgba(20,40,60,.04);
  }

  .header-inner {
    position: relative;
    height: 100%;
  }

  .header-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 78px;
  }

  .header-links {
    display: flex;
    align-items: center;
    gap: 6px;
    height: 100%;
  }

  .header-links-left { justify-content: flex-start; grid-column: 1; }
  .header-links-right { justify-content: flex-end; grid-column: 3; }

  .header-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 500;
    color: var(--text-body);
    position: relative;
    white-space: nowrap;
  }
  .header-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 2px;
    width: 20px;
    height: 4px;
    border-radius: var(--radius-pill);
    background: transparent;
    transform: translateX(-50%);
    transition: background .25s ease, width .25s ease;
  }
  .header-link.active {
    color: var(--brand);
    font-weight: 600;
  }
  .header-link.active::after { background: var(--brand); }
  .header-link:hover { color: var(--brand-deep); background: var(--brand-soft); }
  .header-link:hover::after { background: linear-gradient(90deg, rgba(27,111,184,.1), rgba(27,111,184,.85), rgba(27,111,184,.1)); width: 24px; }

  .logo-row {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: .01em;
  }
  .logo-row:hover { color: var(--brand); }

  .logo-mark {
    flex: none;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  .logo-mark svg { width: 100%; height: 100%; border-radius: 10px; }

  .logo-center { grid-column: 2; justify-self: center; font-size: 21px; }

  .mobile-toggle,
  .mobile-menu-panel {
    display: none;
  }

  /* ===== 页脚 ===== */
  .site-footer {
    background: #16293B;
    color: #A9BCD0;
    font-size: 14px;
    line-height: 1.8;
  }
  .footer-main {
    padding: 62px 0 50px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }
  .footer-grid { row-gap: 34px; }
  .footer-brand .logo-row { color: #fff; font-size: 20px; margin-bottom: 14px; }
  .footer-brand .logo-row:hover { color: #fff; opacity: .9; }
  .footer-logo-mark { display: inline-flex; }
  .footer-logo-mark svg { width: 36px; height: 36px; border-radius: 10px; }
  .footer-brand p { margin: 14px 0 0; max-width: 340px; color: #92A7C0; }
  .footer-title {
    color: #F5F8FC;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 16px;
    letter-spacing: .04em;
  }
  .footer-links { display: flex; flex-direction: column; gap: 12px; }
  .footer-links a { color: #A9BCD0; width: fit-content; }
  .footer-links a:hover { color: #fff; padding-left: 4px; }
  .footer-note {
    background: rgba(255,255,255,.05);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: var(--radius);
    padding: 16px 18px;
    color: #92A7C0;
    font-size: 13px;
    margin-top: 2px;
  }
  .footer-bottom {
    padding: 18px 0;
    background: #10222F;
    font-size: 13px;
    color: #7490A5;
  }
  .footer-bottom .grid-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
  }
  .legal-domain { font-size: 12px; opacity: .7; }

  /* ===== 通用 ===== */
  .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 13px;
    border-radius: var(--radius-pill);
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .02em;
    white-space: nowrap;
  }
  .badge-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--brand);
  }
  .badge-light {
    background: rgba(255,255,255,.16);
    color: #fff;
  }
  .badge-light .badge-dot { background: var(--accent); }
  .badge-gold { background: var(--accent); color: var(--text-main); }
  .badge-gold .badge-dot { background: var(--text-main); }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 46px;
    padding: 0 28px;
    border-radius: var(--radius-sm);
    border: 1px solid transparent;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease, color .25s ease;
    white-space: nowrap;
  }
  .btn:active { transform: translateY(1px); }
  .btn-primary { background: var(--brand); color: #fff; box-shadow: 0 6px 16px rgba(27,111,184,.18); }
  .btn-primary:hover { background: var(--brand-deep); color: #fff; box-shadow: 0 8px 20px rgba(27,111,184,.28); transform: translateY(-1px); }
  .btn-ghost { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
  .btn-ghost:hover { background: rgba(255,255,255,.12); color: #fff; border-color: #fff; transform: translateY(-1px); }
  .btn-soft { background: #fff; color: var(--brand); border-color: var(--line); box-shadow: var(--shadow-sm); }
  .btn-soft:hover { color: var(--brand-deep); border-color: #C6D8E8; box-shadow: var(--shadow-hover); transform: translateY(-1px); }
  .btn-gold { background: var(--accent); color: var(--text-main); box-shadow: 0 6px 16px rgba(255,192,67,.25); }
  .btn-gold:hover { background: #ffb31f; color: var(--text-main); transform: translateY(-1px); }
  .btn-lg { height: 54px; padding: 0 38px; font-size: 16px; border-radius: 10px; }

  .section { padding: 76px 0; }

  /* ===== 文章页顶部导航条区 ===== */
  .article-lead {
    background: #fff;
    border-bottom: 1px solid var(--line);
    padding: 28px 0 22px;
  }
  .breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-aux);
    margin-bottom: 26px;
  }
  .breadcrumb a { color: var(--text-aux); position: relative; }
  .breadcrumb a:hover { color: var(--brand); }
  .breadcrumb .breadcrumb-sep { opacity: .5; font-size: 12px; }
  .breadcrumb .current { color: var(--text-body); max-width: 480px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }

  .article-lead-body { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
  .article-lead-copy { max-width: 620px; }
  .article-lead-copy p { margin: 8px 0 0; color: var(--text-body); }

  /* ===== 正文 ===== */
  .article-wrap {
    padding: 58px 0;
  }
  .article-main-col {
    margin: 0 auto;
    float: none;
  }
  .article-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: var(--shadow-sm);
    padding: clamp(28px, 4vw, 52px);
    margin-bottom: 36px;
    border: 1px solid rgba(227,235,243,.7);
  }

  .article-header { margin-bottom: 24px; }
  .article-header h1 {
    font-size: clamp(27px, 3.2vw, 36px);
    line-height: 1.36;
    margin: 18px 0 16px;
    letter-spacing: .005em;
    font-weight: 700;
  }

  .article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 10px;
    color: var(--text-aux);
    font-size: 13px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--line);
  }
  .meta-block { display: inline-flex; align-items: center; gap: 8px; }
  .meta-sep { width: 4px; height: 4px; background: #CBD7E3; border-radius: 50%; display: inline-block; }

  .article-content {
    color: var(--text-body);
    font-size: 16px;
    line-height: 1.95;
    word-break: break-word;
  }
  .article-content > *:last-child { margin-bottom: 0; }
  .article-content p { margin-bottom: 1.35em; }
  .article-content h2 {
    font-size: 21px;
    font-weight: 700;
    margin: 1.7em 0 .7em;
    padding-left: 14px;
    border-left: 4px solid var(--brand);
    line-height: 1.4;
  }
  .article-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 1.6em 0 .6em;
    color: var(--text-main);
  }
  .article-content h4 {
    font-size: 16px;
    font-weight: 600;
    margin: 1.4em 0 .4em;
  }
  .article-content ul,
  .article-content ol { margin-bottom: 1.35em; padding-left: 1.2em; }
  .article-content li { margin-bottom: .45em; }
  .article-content img, .article-content video, .article-content iframe {
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    margin: 1.5em auto;
    max-width: 100%;
  }
  .article-content blockquote {
    background: var(--brand-soft);
    border-left: 4px solid var(--brand);
    border-radius: 0 10px 10px 0;
    padding: 18px 22px;
    color: var(--text-main);
    margin: 1.5em 0;
  }
  .article-content blockquote p { margin-bottom: 6px; }
  .article-content a { color: var(--brand); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
  .article-content a:hover { color: var(--brand-deep); }
  .article-content table { width: 100%; border-collapse: collapse; margin: 1.5em 0; font-size: 14px; }
  .article-content th, .article-content td { border: 1px solid var(--line); padding: 10px 14px; text-align: left; }
  .article-content th { background: var(--brand-soft); color: var(--text-main); font-weight: 600; }
  .article-content figure { margin: 1.5em 0; }
  .article-content figcaption {
    font-size: 13px;
    color: var(--text-aux);
    text-align: center;
    margin-top: 10px;
  }
  .article-content code {
    background: var(--brand-soft);
    color: var(--brand-deep);
    border-radius: 6px;
    padding: 2px 8px;
    font-size: .9em;
  }
  .article-content hr { border: none; border-top: 1px solid var(--line); margin: 2.6em auto; width: 60%; }
  .article-content strong { color: var(--text-main); font-weight: 700; }

  .article-extra {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-top: 40px;
    padding-top: 26px;
    border-top: 1px solid var(--line);
    flex-wrap: wrap;
  }
  .tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
  .tag-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: var(--radius-pill);
    background: var(--brand-soft);
    color: var(--brand);
    font-size: 13px;
    font-weight: 500;
  }
  .tag-chip:hover { background: var(--brand); color: #fff; }

  .empty-state {
    background: #fff;
    border-radius: 16px;
    padding: 70px 40px;
    text-align: center;
    box-shadow: var(--shadow-sm);
  }
  .empty-state-icon {
    width: 68px;
    height: 68px;
    margin: 0 auto 18px;
    background: var(--brand-soft);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .empty-state h2 { font-size: 22px; margin-bottom: 8px; }
  .empty-state p { margin-bottom: 22px; max-width: 360px; margin-left: auto; margin-right: auto; }
  .empty-state .btn { margin: 4px 6px; }

  /* ===== 页中 CTA ===== */
  .inline-cta {
    background: var(--brand);
    background-image: linear-gradient(105deg, #1B6FB8 0%, #1B6FB8 60%, #135C9A 100%);
    border-radius: 18px;
    padding: clamp(28px, 4vw, 44px);
    color: #fff;
    display: flex;
    align-items: center;
    gap: 28px;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-top: 40px;
    box-shadow: 0 12px 26px rgba(18,80,135,.18);
  }
  .inline-cta h3 { color: #fff; font-size: 22px; margin-bottom: 6px; }
  .inline-cta p { color: rgba(255,255,255,.82); margin: 0; max-width: 540px; }
  .inline-cta-actions { display: flex; gap: 12px; flex-wrap: wrap; }
  .btn-gold-ghost { background: #fff; color: var(--brand); }
  .btn-gold-ghost:hover { color: var(--brand-deep); transform: translateY(-1px); box-shadow: 0 8px 18px rgba(0,0,0,.16); }

  /* ===== 相关阅读 ===== */
  .related-block { padding: 0 0 70px; }
  .related-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 30px;
  }
  .related-head h2 { font-size: 23px; margin: 12px 0 0; }
  .related-head small { color: var(--text-aux); font-size: 14px; }
  .related-grid { row-gap: 28px; }

  .related-card {
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-sm);
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform .3s ease, box-shadow .3s ease;
  }
  .related-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
    border-color: #C6D8E8;
  }
  .related-thumb {
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--brand-soft);
    position: relative;
  }
  .related-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
  .related-card:hover .related-thumb img { transform: scale(1.05); }
  .related-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
  .related-title { font-size: 17px; font-weight: 700; color: var(--text-main); line-height: 1.55; margin: 0; }
  .related-card a.related-title:hover { color: var(--brand); }
  .related-desc { font-size: 13px; color: var(--text-aux); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; padding-right: 4px; }
  .related-footer { margin-top: auto; display: flex; flex-wrap: wrap; gap: 7px; align-items: center; }

  .bottom-back-band {
    background: var(--brand-soft);
    border-top: 1px solid var(--line);
    padding: 32px 0 24px;
  }

  /* ===== 响应式 ===== */
  @media (max-width: 1023.98px) {
    .site-header { height: 64px; }
    .header-grid { height: 64px; grid-template-columns: 1fr auto; }
    .header-links-left,
    .header-links-right,
    .header-link:hover::after,
    .header-link::after { display: none; }

    .header-links { display: none; }

    .mobile-toggle {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      position: absolute;
      left: 6px;
      top: 50%;
      transform: translateY(-50%);
      width: 44px;
      height: 44px;
      border: 0;
      background: transparent;
      border-radius: 10px;
      color: var(--text-main);
      z-index: 30;
      padding: 0;
    }
    .mobile-toggle:hover { background: var(--brand-soft); }
    .mobile-toggle svg { width: 26px; height: 26px; }
    .mobile-toggle .close-icon { display: none; }
    .logo-mark { width: 32px; height: 32px; }
    .logo-center { grid-column: 1 / -1; font-size: 19px; justify-self: center; }
    .mobile-menu-open .mobile-toggle .menu-icon { display: none; }
    .mobile-menu-open .mobile-toggle .close-icon { display: block; }

    .mobile-menu-panel {
      display: none;
      position: absolute;
      top: 64px;
      left: 0;
      right: 0;
      background: #fff;
      border-bottom: 1px solid var(--line);
      box-shadow: 0 16px 30px rgba(20,40,60,.08);
      padding: 14px 20px 22px;
    }
    .mobile-menu-open .mobile-menu-panel { display: block; }
    .mobile-menu-panel a {
      display: flex;
      align-items: center;
      min-height: 48px;
      padding: 6px 4px;
      color: var(--text-main);
      font-size: 15px;
      font-weight: 500;
      border-bottom: 1px solid #F0F5FA;
    }
    .mobile-menu-panel a:last-child { border-bottom: 0; }
    .mobile-menu-panel a:hover, .mobile-menu-panel a.active { color: var(--brand); padding-left: 8px; }
    .mobile-panel-note { margin: 18px 0 6px; padding: 12px; background: var(--brand-soft); border-radius: var(--radius-sm); font-size: 13px; color: var(--brand); }
  }

  @media (max-width: 767.98px) {
    h1 { font-size: 25px; }
    .section { padding: 48px 0; }
    .site-header { height: 60px; }
    .mobile-menu-panel { top: 60px; }
    .header-grid { height: 60px; }
    .mobile-toggle { top: 50%; }
    .logo-center { font-size: 18px; }
    .article-wrap { padding: 30px 0; }
    .article-card { padding: 22px 18px; border-radius: 12px; }
    .article-header h1 { font-size: 23px; margin-top: 14px; }
    .article-content { font-size: 15px; }
    .article-content h2 { font-size: 18px; padding-left: 10px; }
    .article-content h3 { font-size: 16px; }
    .inline-cta { flex-direction: column; align-items: flex-start; }
    .inline-cta-actions .btn { width: 100%; }
    .related-head { flex-direction: column; align-items: flex-start; }
    .footer-main { padding: 42px 0 30px; }
    .footer-bottom .grid-container { flex-direction: column; align-items: flex-start; }
    .breadcrumb { margin-bottom: 18px; }
    .article-meta { gap: 8px; }
    .tag-chip { font-size: 12px; }
    .article-extra { flex-direction: column; align-items: flex-start; }
    .btn-lg { height: 48px; padding: 0 26px; }
  }

  @media (max-width: 520px) {
    body { font-size: 15px; }
    .article-meta .meta-sep { margin: 0 2px; }
    .article-meta { font-size: 12px; line-height: 1.6; }
    .article-content { line-height: 1.85; }
    .article-content blockquote { padding: 13px 16px; }
    .related-body { padding: 16px 16px 20px; }
    .related-title { font-size: 15px; }
  }

  @media print {
    .site-header, .site-footer, .inline-cta, .related-block, .bottom-back-band { display: none !important; }
    .article-card { box-shadow: none; padding: 24px; }
  }

/* roulang page: category1 */
:root {
  --brand-blue: #1B6FB8;
  --brand-deep: #135C9A;
  --brand-bg: #F2F7FC;
  --brand-line: #E3EBF3;
  --brand-gold: #FFC043;
  --heading-color: #1F2A37;
  --body-color: #5B6B7C;
  --muted-color: #92A1AF;
  --success: #20A575;
  --error: #E05267;
  --white: #FFFFFF;
  --radius-lg: 12px;
  --radius-md: 8px;
  --radius-pill: 999px;
  --shadow-card: 0 1px 2px rgba(20,40,60,.06), 0 8px 20px rgba(20,40,60,.05);
  --shadow-card-hover: 0 6px 16px rgba(20,40,60,.10), 0 12px 28px rgba(20,40,60,.08);
  --shadow-btn: 0 8px 18px rgba(27,111,184,.24);
  --font-sans: "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  --max-width: 1200px;
  --section-pad: 88px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
  background: var(--white);
  font-family: var(--font-sans);
  color: var(--body-color);
  line-height: 1.75;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
img {
  max-width: 100%;
  display: block;
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
button {
  border: 0;
  font-family: inherit;
  cursor: pointer;
  transition: all .2s ease;
}
ul, ol {
  margin: 0;
  padding: 0;
}
p {
  margin: 0 0 1em;
}
h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
  line-height: 1.3;
}
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}
.section {
  padding: var(--section-pad) 0;
}
.section-soft {
  background: var(--brand-bg);
}
[data-visible="true"] {
  display: none !important;
}

/* ============ Header ============ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid var(--brand-line);
  backdrop-filter: blur(8px);
}
.header-inner {
  position: relative;
  max-width: var(--max-width);
  height: 76px;
  margin: 0 auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.header-left {
  display: flex;
  justify-content: flex-start;
  min-width: 0;
}
.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  min-width: 0;
}
.header-nav-group {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 15px;
  border-radius: 8px;
  position: relative;
  font-size: 15px;
  font-weight: 600;
  color: var(--heading-color);
  white-space: nowrap;
  outline: none;
}
.header-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  border-radius: var(--radius-pill);
  background: transparent;
  transition: all .25s ease;
}
.header-link:hover {
  color: var(--brand-deep);
}
.header-link:focus-visible {
  box-shadow: 0 0 0 3px rgba(27,111,184,.25);
  color: var(--brand-deep);
}
.header-link.active {
  color: var(--brand-blue);
}
.header-link.active::after {
  width: 24px;
  background: var(--brand-blue);
}
.header-link.btn-faq {
  border: 1px solid var(--brand-line);
  margin-left: 12px;
  color: var(--brand-blue);
}
.header-link.btn-faq:hover {
  background: var(--brand-bg);
  border-color: transparent;
}
.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  justify-self: center;
  outline: none;
  border-radius: 8px;
}
.brand-logo:focus-visible {
  box-shadow: 0 0 0 4px rgba(27,111,184,.22);
}
.brand-logo-mark {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue);
  border-radius: 9px;
  box-shadow: 0 6px 12px rgba(27,111,184,.25);
}
.brand-logo-mark svg {
  width: 28px;
  height: 28px;
}
.brand-logo-name {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: .5px;
  color: var(--heading-color);
  line-height: 1.1;
}
.brand-logo:hover .brand-logo-name {
  color: var(--brand-blue);
}
.mobile-menu-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid var(--brand-line);
}
.mobile-menu-btn span,
.mobile-menu-btn span::before,
.mobile-menu-btn span::after {
  content:"";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--heading-color);
  border-radius: 2px;
  transition: all .25s ease;
}
.mobile-menu-btn span {
  position: relative;
}
.mobile-menu-btn span::before {
  position: absolute;
  top: -6px;
  left: 0;
}
.mobile-menu-btn span::after {
  position: absolute;
  top: 6px;
  left: 0;
}
.mobile-drop {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--brand-line);
  padding: 10px 20px 20px;
}
.mobile-drop.open {
  display: block;
}
.mobile-drop a {
  display: block;
  padding: 12px 6px;
  font-weight: 600;
  color: var(--heading-color);
  border-bottom: 1px solid #F0F5F9;
}
.mobile-drop a:last-child {
  border-bottom: 0;
}
.mobile-drop a:focus {
  color: var(--brand-blue);
}

/* ============ Buttons ============ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  padding: 0 26px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  border: 1px solid transparent;
  outline: none;
  transition: all .2s ease;
}
.btn-primary {
  background: var(--brand-blue);
  color: #fff;
  box-shadow: var(--shadow-btn);
}
.btn-primary:hover {
  background: var(--brand-deep);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(27,111,184,.28);
  color: #fff;
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: none;
}
.btn-ghost {
  background: transparent;
  color: var(--heading-color);
  border-color: #D3DEE8;
}
.btn-ghost:hover {
  background: var(--brand-bg);
  border-color: var(--brand-blue);
  color: var(--brand-blue);
}
.btn-ghost:focus-visible,
.btn-primary:focus-visible {
  box-shadow: 0 0 0 4px rgba(27,111,184,.25);
}
.btn-white {
  background: #fff;
  color: var(--brand-blue);
  border: 1px solid #fff;
}
.btn-white:hover {
  background: #F0F8FF;
  color: var(--brand-deep);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.8);
}
.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255,255,255,.14);
}
.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--brand-blue);
  font-weight: 700;
  font-size: 14px;
}
.btn-text-link::after {
  content: "→";
  transition: transform .2s ease;
}
.btn-text-link:hover::after {
  transform: translateX(4px);
}

/* ============ Hero ============ */
.category-hero {
  position: relative;
  background-color: var(--brand-bg);
  background-image:
    linear-gradient(94deg, rgba(242,247,252,.98) 0%, rgba(242,247,252,.86) 58%, rgba(255,255,255,.52) 100%),
    url('/assets/images/backpic/back-1.webp');
  background-size: cover;
  background-position: center 35%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.category-hero-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 76px 20px 88px;
}
.breadcrumb-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted-color);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.breadcrumb-wrap a {
  color: var(--muted-color);
  font-weight: 600;
}
.breadcrumb-wrap a:hover {
  color: var(--brand-blue);
}
.breadcrumb-wrap i {
  font-style: normal;
  color: #C3CED8;
}
.breadcrumb-current {
  color: var(--brand-blue);
  font-weight: 600;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  background: #fff;
  border: 1px solid var(--brand-line);
  box-shadow: var(--shadow-card);
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.hero-eyebrow::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--brand-gold);
}
.hero-title {
  font-size: 40px;
  line-height: 1.25;
  font-weight: 800;
  letter-spacing: .5px;
  max-width: 760px;
  color: var(--heading-color);
}
.hero-title .accent {
  color: var(--brand-blue);
}
.hero-lead {
  max-width: 720px;
  margin-top: 22px;
  font-size: 17px;
  line-height: 1.85;
  color: var(--body-color);
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-tags {
  margin-top: 44px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.hero-tag {
  padding: 5px 14px;
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,.88);
  border: 1px solid var(--brand-line);
  color: var(--body-color);
  font-size: 13px;
  font-weight: 600;
}
.hero-tag:first-child {
  background: #EEF5FB;
  border-color: #C9E2F2;
  color: var(--brand-deep);
}

/* ============ Section heading ============ */
.section-head {
  margin-bottom: 44px;
}
.section-head.center {
  text-align: center;
}
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-blue);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.section-kicker::before {
  content:"";
  width: 8px;
  height: 24px;
  border-radius: 4px;
  background: linear-gradient(180deg, var(--brand-gold), #F5A800);
}
.section-kicker.center::before {
  margin: 0 auto;
}
.section-head h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.35;
  letter-spacing: .3px;
}
.section-head .lead {
  max-width: 680px;
  margin-top: 12px;
  color: var(--body-color);
  font-size: 15px;
}
.section-head.center .lead {
  margin-left: auto;
  margin-right: auto;
}

/* ============ Intro ============ */
.intro-section {
  margin-top: -28px;
  position: relative;
  z-index: 2;
}
.intro-cardstack {
  background: var(--white);
  box-shadow: var(--shadow-card);
  border: 1px solid #EDF3F8;
  border-radius: var(--radius-lg);
  padding: 50px 48px;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 56px;
}
.intro-head h2 {
  font-size: 28px;
  line-height: 1.4;
}
.intro-head p {
  margin-top: 18px;
  font-size: 15px;
  line-height: 1.9;
}
.intro-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.intro-feature {
  min-height: 156px;
  padding: 20px 20px 18px;
  background: #FFFFFF;
  border: 1px solid #EAF1F7;
  border-radius: var(--radius-lg);
  transition: all .25s ease;
}
.intro-feature:hover {
  border-color: #CDE4F5;
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-3px);
}
.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EAF2FA;
  margin-bottom: 14px;
}
.feature-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--brand-blue);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.intro-feature:nth-child(2) .feature-icon {
  background: #FDF6E3;
}
.intro-feature:nth-child(2) .feature-icon svg {
  stroke: #D98A00;
}
.feature-icon.gold-icon {
  background: #FDF6E3;
}
.feature-icon.gold-icon svg {
  stroke: #D98A00;
}
.intro-feature h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 6px;
}
.intro-feature p {
  font-size: 13px;
  line-height: 1.7;
  color: var(--muted-color);
  margin: 0;
}

/* ============ Gallery ============ */
.gallery-wrap {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 190px;
  gap: 16px;
}
.gallery-item {
  position: relative;
  grid-column: auto / span 4;
  grid-row: span 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  background: #dce8f2;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.gallery-item:hover img {
  transform: scale(1.04);
}
.gallery-main {
  grid-column: span 7;
  grid-row: span 2;
}
.gallery-vert {
  grid-column: span 5;
  grid-row: span 1;
}
.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.16) 100%);
}
.gallery-foot {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 20px;
  color: #fff;
  background: linear-gradient(0deg, rgba(14,32,45,.8) 0%, rgba(14,32,45,.28) 55%, transparent 100%);
}
.gallery-no {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--brand-gold);
}
.gallery-title {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
}
.gallery-main .gallery-title {
  font-size: 18px;
  font-weight: 800;
}
@media (max-width: 767px) {
  .gallery-wrap {
    display: block;
  }
  .gallery-item {
    width: 100%;
    height: 210px;
    margin-bottom: 16px;
  }
  .gallery-vert {
    height: 190px;
  }
}

/* ============ Watch board ============ */
.note-board {
  padding: 64px 0 0;
}
.board-head {
  max-width: 700px;
  margin: 0 auto 40px;
  text-align: center;
}
.board-head h2 {
  font-size: 30px;
}
.board-head p {
  margin-top: 12px;
  color: var(--muted-color);
}
.phase-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.phase-card {
  background: #fff;
  border: 1px solid #EAF1F7;
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  box-shadow: var(--shadow-card);
  position: relative;
  overflow: hidden;
  transition: all .25s ease;
}
.phase-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--brand-gold);
}
.phase-card:nth-child(2)::before {
  background: var(--brand-blue);
}
.phase-card:nth-child(3)::before {
  background: linear-gradient(90deg, var(--brand-blue), #4CA2DE);
}
.phase-card:hover {
  box-shadow: var(--shadow-card-hover);
  transform: translateY(-4px);
  border-color: #d7e6f2;
}
.phase-num {
  font-size: 26px;
  font-weight: 800;
  color: #DCE5EC;
  letter-spacing: .5px;
  display: block;
  line-height: 1;
}
.phase-card h3 {
  font-size: 18px;
  margin: 14px 0 12px;
}
.phase-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted-color);
  margin: 0 0 18px;
}
.phase-point {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-blue);
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  background: #F0F6FB;
}

/* ============ Focus list ============ */
.update-focus {
  margin-top: 76px;
}
.update-focus-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 30px;
}
.update-focus-head h3 {
  font-size: 24px;
}
.update-focus-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.focus-card {
  background: #fff;
  border: 1px solid #EAF1F7;
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: all .25s ease;
}
.focus-card:hover {
  border-color: #cfe3f0;
  box-shadow: var(--shadow-card-hover);
}
.focus-icon-num {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: linear-gradient(135deg, #EDF5FC, #E3F0FA);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--brand-blue);
  font-size: 17px;
  margin-bottom: 16px;
}
.focus-card h4 {
  font-size: 16px;
  margin-bottom: 8px;
}
.focus-card p {
  font-size: 13px;
  line-height: 1.75;
  color: var(--muted-color);
  margin: 0;
}
.focus-tag {
  display: inline-block;
  margin-top: 14px;
  font-size: 12px;
  color: var(--brand-deep);
  background: #EFF6FC;
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

/* ============ CTA ============ */
.cta-box {
  position: relative;
  background: linear-gradient(120deg, #1B6FB8 0%, #135C9A 100%);
  border-radius: 18px;
  padding: 60px 54px;
  overflow: hidden;
  color: #fff;
  box-shadow: 0 20px 40px rgba(27,111,184,.22);
}
.cta-box::before {
  content: "";
  position: absolute;
  top: -70px;
  right: -30px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
}
.cta-box::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: 30%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255,192,67,.08);
}
.cta-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-copy h2 {
  color: #fff;
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 12px;
}
.cta-copy p {
  color: rgba(255,255,255,.86);
  font-size: 15px;
  margin: 0;
  max-width: 580px;
}
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  flex: 0 0 auto;
}

/* ============ FAQ ============ */
.faq-panel {
  max-width: 860px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  border: 1px solid var(--brand-line);
  border-radius: var(--radius-lg);
  margin-bottom: 14px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(20,40,60,.03);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.faq-item.open {
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-card);
}
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: transparent;
  padding: 20px 22px;
  border-radius: 0;
  text-align: left;
  font-size: 15px;
  font-weight: 700;
  color: var(--heading-color);
}
.faq-q::after {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 22px;
  margin-left: 18px;
  border-radius: 50%;
  background: #EFF6FC;
  border: 1px solid #D1E3F0;
  position: relative;
  transition: transform .25s ease, background .25s ease;
}
.faq-q::before {
  content: "";
  position: absolute;
  right: 32px;
  width: 8px;
  height: 8px;
  border-right: 2px solid var(--brand-blue);
  border-bottom: 2px solid var(--brand-blue);
  transform: rotate(45deg) translateY(-3px);
  transition: transform .25s ease;
  z-index: 1;
}
.faq-item.open .faq-q::before {
  transform: rotate(225deg) translateY(2px);
}
.faq-q:hover {
  color: var(--brand-blue);
}
.faq-q:focus-visible {
  outline: 3px solid rgba(27,111,184,.24);
  outline-offset: -3px;
}
.faq-a {
  display: none;
  padding: 0 24px 24px;
  font-size: 14px;
  line-height: 1.9;
  color: var(--body-color);
}
.faq-item.open .faq-a {
  display: block;
}

/* ============ Bottom helper ============ */
.bottom-switch {
  padding: 24px 0 76px;
}
.switch-card {
  border-radius: var(--radius-lg);
  background: #F2F7FC;
  border: 1px dashed #C9D9E6;
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.switch-card .sw-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 4px;
}
.switch-card .sw-sub {
  font-size: 14px;
  color: var(--muted-color);
}
.sw-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.sw-links .btn {
  height: 40px;
  padding: 0 20px;
  font-size: 14px;
}

/* ============ Footer ============ */
.site-footer {
  background: #16293B;
  color: #A9BCCD;
  font-size: 14px;
}
.footer-main {
  padding: 62px 0 38px;
}
.footer-grid {
  row-gap: 34px;
}
.footer-brand .logo-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  line-height: 1.25;
  border-radius: 8px;
}
.footer-brand .logo-row:hover {
  color: #fff;
}
.footer-logo-mark {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-blue);
  border-radius: 9px;
}
.footer-logo-mark svg {
  width: 32px;
  height: 32px;
}
.site-footer p {
  color: #9BB2C5;
  font-size: 14px;
  line-height: 1.8;
}
.footer-brand p {
  max-width: 300px;
  margin: 18px 0 0;
}
.footer-title {
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .4px;
  margin-bottom: 22px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.footer-links a {
  color: #9BB2C5;
  font-size: 14px;
  padding: 4px 0;
  width: fit-content;
  transition: color .2s ease;
}
.footer-links a:hover {
  color: #fff;
}
.footer-links a:focus-visible {
  outline: 2px solid rgba(255,255,255,.6);
  outline-offset: 3px;
  border-radius: 4px;
}
.footer-note p {
  margin: 0;
  color: #9BB2C5;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 18px 0;
  font-size: 13px;
  color: #748DA2;
}
.footer-bottom .grid-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.legal-domain {
  color: #667F93;
}

/* ============ Foundation overrides ============ */
.grid-container {
  max-width: var(--max-width);
}
.cell {
  min-width: 0;
}
.foundation-fix {
  border: none;
}

/* ============ Responsive ============ */
@media (max-width: 1200px) {
  .container {
    max-width: 1000px;
  }
  .header-inner {
    max-width: 1120px;
  }
}
@media (max-width: 1023px) {
  :root {
    --section-pad: 68px;
  }
  .header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 16px;
  }
  .header-left,
  .header-right {
    display: none;
  }
  .brand-logo {
    margin: 0 auto;
  }
  .brand-logo-mark {
    width: 30px;
    height: 30px;
    flex-basis: 30px;
  }
  .brand-logo-mark svg {
    width: 24px;
    height: 24px;
  }
  .brand-logo-name {
    font-size: 16px;
  }
  .mobile-menu-btn {
    display: inline-flex;
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
  }
  .mobile-drop.open {
    display: block;
  }
  .hero-title {
    font-size: 32px;
  }
  .intro-cardstack {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 42px 34px;
  }
}
@media (max-width: 767px) {
  :root {
    --section-pad: 58px;
  }
  body {
    font-size: 15px;
  }
  .container {
    padding-left: 16px;
    padding-right: 16px;
  }
  .section-head h2 {
    font-size: 23px;
  }
  .hero-title {
    font-size: 28px;
  }
  .category-hero-inner {
    padding: 52px 16px 66px;
  }
  .hero-actions {
    flex-direction: column;
  }
  .hero-actions .btn {
    width: 100%;
  }
  .intro-cardstack {
    padding: 28px 20px;
    box-shadow: var(--shadow-card);
    border-radius: 14px;
    margin-top: -8px;
  }
  .intro-feature-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .intro-feature {
    min-height: 0;
  }
  .phase-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .update-focus {
    margin-top: 40px;
  }
  .update-focus-head {
    align-items: flex-start;
    flex-direction: column;
  }
  .focus-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .faq-q {
    align-items: flex-start;
    padding-right: 46px;
  }
  .cta-box {
    padding: 34px 24px;
  }
  .cta-actions {
    flex-direction: column;
    width: 100%;
  }
  .cta-actions .btn {
    width: 100%;
  }
  .switch-card {
    padding: 22px 20px;
  }
  .sw-links {
    flex-direction: column;
    width: 100%;
  }
  .sw-links .btn {
    width: 100%;
  }
  .footer-main {
    padding: 42px 0 20px;
  }
  .footer-bottom .grid-container {
    justify-content: center;
    text-align: center;
  }
  .footer-brand p {
    max-width: 100%;
  }
}
@media (max-width: 520px) {
  .hero-lead {
    font-size: 15px;
    line-height: 1.8;
  }
  .section-head h2 {
    font-size: 21px;
  }
  .brand-logo-name {
    font-size: 15px;
    letter-spacing: 0;
  }
  .phase-card {
    padding: 24px 20px;
  }
}

/* roulang page: category2 */
:root{
--primary:#1B6FB8;
--primary-dark:#135C9A;
--primary-soft:#E8F2FB;
--accent:#FFC043;
--accent-soft:#FDF6E3;
--bg:#F2F7FC;
--white:#FFFFFF;
--title:#1F2A37;
--text:#5B6B7C;
--muted:#92A1AF;
--line:#E3EBF3;
--success:#20A575;
--error:#E05267;
--radius-lg:12px;
--radius-md:8px;
--shadow-sm:0 1px 2px rgba(20,40,60,.06),0 8px 20px rgba(20,40,60,.05);
--shadow-md:0 6px 16px rgba(20,40,60,.10),0 12px 28px rgba(20,40,60,.08);
--shadow-lg:0 12px 30px rgba(20,40,60,.14);
--font:"PingFang SC","Hiragino Sans GB","Microsoft YaHei","Noto Sans CJK SC",sans-serif;
--container:1200px;
}
*{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
font-family:var(--font);
background:var(--bg);
color:var(--text);
font-size:15px;
line-height:1.75;
-webkit-font-smoothing:antialiased;
text-rendering:optimizeLegibility;
}
a{color:inherit;text-decoration:none;transition:color .2s ease,background .2s ease,border-color .2s ease,box-shadow .2s ease,transform .2s ease}
img{max-width:100%;display:block}
ul,ol{list-style:none}
button,input,select,textarea{font-family:inherit}
::selection{background:var(--primary);color:#fff}
.container,.grid-container{max-width:var(--container);padding-left:20px;padding-right:20px}
.site-header{
position:sticky;top:0;z-index:60;
background:#fff;
border-bottom:1px solid var(--line);
height:78px;
}
.desktop-nav{height:78px;background:transparent}
.header-grid{
display:grid;
grid-template-columns:1fr auto 1fr;
align-items:center;
height:78px;
gap:24px;
}
.header-side{display:flex;align-items:center}
.header-side-left{justify-content:flex-start}
.header-side-right{justify-content:flex-end;gap:6px}
.header-link{
position:relative;
display:inline-flex;
align-items:center;
justify-content:center;
padding:8px 12px;
font-size:15px;
font-weight:500;
color:var(--text);
border-radius:10px;
line-height:1.4;
white-space:nowrap;
}
.header-link:hover{color:var(--primary);background:var(--bg)}
.header-link:focus-visible{outline:3px solid rgba(27,111,184,.3);outline-offset:2px}
.header-link.active{color:var(--primary);font-weight:700;background:var(--primary-soft)}
.header-link.active::after{
content:"";
position:absolute;
left:50%;
bottom:2px;
transform:translateX(-50%);
width:18px;
height:4px;
border-radius:999px;
background:var(--primary);
}
.logo-row{
display:inline-flex;
align-items:center;
justify-content:center;
gap:10px;
padding:4px 6px;
border-radius:12px;
transition:background .2s ease,box-shadow .2s ease;
}
.logo-row:hover{background:#fff;box-shadow:var(--shadow-sm)}
.logo-mark{flex:none;width:34px;height:34px;border-radius:10px;display:block}
.logo-text{
font-size:19px;
font-weight:800;
color:var(--title);
letter-spacing:.02em;
white-space:nowrap;
line-height:1.2;
}
.mobile-nav{background:#fff;border-bottom:1px solid var(--line)}
.mobile-nav-inner{
display:flex;
align-items:center;
justify-content:space-between;
height:60px;
padding:0 16px;
}
.mobile-logo .logo-text{font-size:17px}
.mobile-burger{
width:44px;
height:44px;
border:1px solid var(--line);
background:#fff;
border-radius:10px;
position:relative;
cursor:pointer;
display:inline-flex;
flex-direction:column;
align-items:center;
justify-content:center;
gap:5px;
transition:border-color .2s ease,background .2s ease;
}
.mobile-burger:hover{border-color:#B9D3E7;background:var(--bg)}
.mobile-burger:focus-visible{outline:3px solid rgba(27,111,184,.25)}
.mobile-burger .bar{
display:block;
width:18px;
height:2px;
background:var(--title);
border-radius:2px;
transition:transform .25s ease,opacity .25s ease;
}
.mobile-burger.open .bar:nth-child(1){transform:translateY(7px) rotate(45deg)}
.mobile-burger.open .bar:nth-child(2){opacity:0}
.mobile-burger.open .bar:nth-child(3){transform:translateY(-7px) rotate(-45deg)}
.mobile-panel{
display:none;
padding:6px 16px 18px;
border-top:1px solid var(--line);
background:#fff;
}
.mobile-panel.open{display:block}
.mobile-link{
display:block;
padding:13px 14px;
border-radius:10px;
font-size:15px;
font-weight:600;
color:var(--title);
margin-bottom:4px;
transition:background .2s ease,color .2s ease;
}
.mobile-link:hover{background:var(--bg);color:var(--primary)}
.mobile-link.active{background:var(--primary-soft);color:var(--primary)}
.section{
padding:84px 0;
}
.section-soft{background:#EEF5FB}
.section-head{margin-bottom:38px;max-width:760px}
.section-head.center{margin-left:auto;margin-right:auto;text-align:center}
.section-tag{
display:inline-flex;
align-items:center;
background:var(--primary-soft);
color:var(--primary-dark);
font-size:12px;
font-weight:700;
letter-spacing:.06em;
padding:7px 16px;
border-radius:999px;
margin-bottom:16px;
}
.section-head h2{
font-size:28px;
font-weight:800;
line-height:1.3;
color:var(--title);
letter-spacing:-0.01em;
}
.section-head p{
font-size:15px;
color:var(--text);
margin-top:14px;
max-width:680px;
}
.section-head.center p{margin-left:auto;margin-right:auto}
.btn{
position:relative;
display:inline-flex;
align-items:center;
justify-content:center;
height:46px;
padding:0 26px;
font-size:15px;
font-weight:700;
line-height:1;
border:1px solid transparent;
border-radius:var(--radius-md);
cursor:pointer;
white-space:nowrap;
transition:transform .2s ease,box-shadow .2s ease,background .2s ease,color .2s ease,border-color .2s ease;
}
.btn:hover{transform:translateY(-2px)}
.btn:active{transform:translateY(0)}
.btn:focus-visible{outline:3px solid rgba(27,111,184,.3);outline-offset:2px}
.btn-primary{background:var(--primary);color:#fff}
.btn-primary:hover{background:var(--primary-dark);box-shadow:0 12px 22px rgba(27,111,184,.28)}
.btn-outline{background:transparent;color:var(--primary-dark);border-color:#AECDE6}
.btn-outline:hover{background:var(--primary-soft);border-color:var(--primary);color:var(--primary-dark)}
.btn-white{background:#fff;color:var(--primary-dark);border-color:#fff}
.btn-white:hover{box-shadow:0 10px 24px rgba(20,40,60,.16)}
.btn-gold{background:var(--accent);color:#2B230F;border-color:var(--accent)}
.btn-gold:hover{filter:brightness(.97);box-shadow:0 12px 24px rgba(255,192,67,.3)}
.btn-xl{height:52px;padding:0 34px;font-size:16px}
.category-banner{
position:relative;
padding:88px 0 78px;
background:linear-gradient(120deg,#FFFFFF 0%,#F2F7FC 55%,#E3F0FA 100%);
border-bottom:1px solid var(--line);
overflow:hidden;
}
.category-banner::before{
content:"";
position:absolute;
inset:0;
background-image:url('/assets/images/backpic/back-2.png');
background-size:cover;
background-position:center 20%;
opacity:.08;
pointer-events:none;
}
.banner-inner{position:relative;z-index:2}
.breadcrumb-row{
display:flex;
align-items:center;
gap:8px;
flex-wrap:wrap;
font-size:12px;
font-weight:500;
color:var(--muted);
margin-bottom:28px;
}
.breadcrumb-row a{color:var(--muted);transition:color .2s ease}
.breadcrumb-row a:hover{color:var(--primary)}
.separator-dot{width:3px;height:3px;border-radius:50%;background:#B6C7D6}
.hero-eyebrow{
display:inline-flex;
align-items:center;
gap:8px;
background:#fff;
border:1px solid #C8DFF1;
box-shadow:var(--shadow-sm);
border-radius:999px;
padding:6px 16px;
font-size:13px;
font-weight:600;
color:var(--primary-dark);
}
.hero-eyebrow::before{
content:"";
width:6px;
height:6px;
border-radius:50%;
background:var(--accent);
box-shadow:0 0 0 4px rgba(255,192,67,.18);
}
.banner-title{
font-size:44px;
line-height:1.22;
font-weight:800;
color:var(--title);
margin:20px 0 16px;
letter-spacing:-.02em;
}
.banner-desc{
font-size:16px;
line-height:1.8;
color:var(--text);
max-width:570px;
margin-bottom:30px;
}
.banner-actions{
display:flex;
flex-wrap:wrap;
gap:14px;
}
.hero-card{
position:relative;
background:#fff;
border:1px solid var(--line);
border-radius:18px;
box-shadow:var(--shadow-lg);
padding:18px;
overflow:hidden;
transition:transform .3s ease,box-shadow .3s ease;
}
.hero-card:hover{transform:translateY(-3px);box-shadow:0 18px 40px rgba(20,40,60,.16)}
.hero-card-img{border-radius:12px;overflow:hidden;position:relative}
.hero-card-img img{width:100%;height:260px;object-fit:cover;transition:transform .5s ease}
.hero-card:hover .hero-card-img img{transform:scale(1.025)}
.hero-card-float{
position:absolute;
left:18px;bottom:16px;
right:18px;
background:linear-gradient(180deg,rgba(0,0,0,0),rgba(15,25,38,.72));
color:#fff;
padding:30px 16px 12px;
border-radius:0 0 12px 12px;
}
.hero-card-float h3{
font-size:16px;
font-weight:600;
margin-bottom:2px;
}
.hero-card-float span{font-size:12px;color:rgba(255,255,255,.8)}
.hero-stats{
display:grid;
grid-template-columns:repeat(2,1fr);
gap:10px;
margin-top:16px;
}
.hero-stat{
background:var(--bg);
border-radius:12px;
padding:12px 14px;
border:1px solid #E9F1F8;
}
.hero-stat b{
display:block;
font-size:20px;
font-weight:800;
color:var(--primary-dark);
line-height:1.3;
font-variant-numeric:tabular-nums;
}
.hero-stat span{font-size:12px;color:var(--text)}
.activity-card{
background:#fff;
border:1px solid var(--line);
border-radius:var(--radius-lg);
overflow:hidden;
box-shadow:var(--shadow-sm);
display:flex;
flex-direction:column;
transition:transform .3s ease,box-shadow .3s ease,border-color .3s ease;
height:100%;
}
.activity-card:hover{
transform:translateY(-5px);
box-shadow:var(--shadow-md);
border-color:#B9D5EC;
}
.activity-card-image{position:relative;overflow:hidden;aspect-ratio:16/10}
.activity-card-image img{width:100%;height:100%;object-fit:cover;transition:transform .45s ease}
.activity-card:hover .activity-card-image img{transform:scale(1.05)}
.activity-card-tag{
position:absolute;
top:14px;
left:14px;
background:rgba(255,255,255,.94);
backdrop-filter:blur(4px);
box-shadow:var(--shadow-sm);
color:var(--primary-dark);
font-size:12px;
font-weight:700;
padding:6px 13px;
border-radius:999px;
border:none;
}
.activity-card-body{display:flex;flex-direction:column;flex:1;padding:20px 18px 16px}
.activity-card-body h3{
font-size:18px;
font-weight:700;
color:var(--title);
line-height:1.45;
margin-bottom:10px;
}
.activity-card-body p{
font-size:14px;
line-height:1.75;
color:var(--text);
flex:1;
margin-bottom:14px;
}
.activity-card-meta{
display:flex;
flex-wrap:wrap;
gap:8px;
border-top:1px solid #EEF4F9;
padding-top:14px;
margin-top:auto;
}
.meta-chip{
background:#F4F8FC;
border:1px solid #E7F0F7;
color:var(--primary-dark);
font-size:12px;
font-weight:600;
border-radius:999px;
padding:4px 10px;
}
.schedule-cards{
margin-top:14px;
}
.schedule-card{
background:#fff;
border:1px solid var(--line);
border-top:4px solid var(--accent);
border-radius:var(--radius-lg);
box-shadow:var(--shadow-sm);
padding:24px;
height:100%;
transition:transform .3s ease,box-shadow .3s ease;
}
.schedule-card:hover{transform:translateY(-4px);box-shadow:var(--shadow-md)}
.schedule-num{
font-size:13px;
font-weight:800;
letter-spacing:.08em;
color:var(--primary);
background:var(--primary-soft);
display:inline-block;
padding:5px 12px;
border-radius:999px;
margin-bottom:18px;
}
.schedule-card h3{font-size:18px;color:var(--title);font-weight:700;margin-bottom:10px}
.schedule-card p{font-size:14px;color:var(--text);line-height:1.75;margin-bottom:0}
.steps-section{
background:#fff;
border-top:1px solid var(--line);
border-bottom:1px solid var(--line);
}
.steps-layout{
display:grid;
grid-template-columns:1.05fr .95fr;
gap:44px;
align-items:center;
}
.steps-intro .section-head{margin-bottom:24px}
.steps-list{display:flex;flex-direction:column;gap:16px;margin-top:6px}
.step-card{
display:flex;
gap:18px;
align-items:flex-start;
background:#fff;
border:1px solid var(--line);
border-radius:var(--radius-lg);
box-shadow:var(--shadow-sm);
padding:22px 18px;
transition:transform .25s ease,box-shadow .25s ease,border-color .25s ease;
}
.step-card:hover{transform:translateX(4px);border-color:#BBD7EC;box-shadow:var(--shadow-md)}
.step-num{
flex:none;
width:46px;
height:46px;
border-radius:14px;
background:var(--primary-soft);
color:var(--primary-dark);
font-size:18px;
font-weight:800;
display:flex;
align-items:center;
justify-content:center;
line-height:1;
font-variant-numeric:tabular-nums;
}
.step-card h3{
font-size:17px;
font-weight:700;
color:var(--title);
margin-bottom:6px;
line-height:1.4;
}
.step-card p{font-size:14px;color:var(--text);margin-bottom:0}
.steps-visual{
position:relative;
border-radius:18px;
overflow:hidden;
box-shadow:var(--shadow-lg);
min-height:420px;
}
.steps-visual img{width:100%;height:100%;min-height:420px;object-fit:cover}
.steps-visual::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(180deg,rgba(12,22,34,0) 55%,rgba(12,22,34,.55) 100%);
pointer-events:none;
}
.steps-visual-caption{
position:absolute;
left:20px;
right:20px;
bottom:20px;
z-index:3;
color:#fff;
}
.steps-visual-caption h3{font-size:18px;font-weight:700;margin-bottom:6px}
.steps-visual-caption p{font-size:13px;color:rgba(255,255,255,.85);max-width:280px;margin-bottom:0}
.notice-wrap{
background:var(--accent-soft);
border:1px solid #F1DDB0;
border-radius:14px;
padding:16px 18px;
margin-top:18px;
}
.notice-wrap h4{font-size:14px;color:#3A2E0E;font-weight:700;margin-bottom:8px}
.notice-wrap p{font-size:13px;color:#5C4B1F;margin-bottom:0;line-height:1.7}
.faq-section{
background:#fff;
padding:88px 0;
}
.faq-wrap{max-width:860px;margin:0 auto}
.faq-disclaimer{
text-align:center;
font-size:13px;
color:var(--muted);
margin-top:20px;
}
.faq-list details{
background:#fff;
border:1px solid var(--line);
border-radius:var(--radius-lg);
box-shadow:var(--shadow-sm);
margin-bottom:14px;
padding:0;
overflow:hidden;
transition:border-color .25s ease,box-shadow .25s ease;
}
.faq-list details[open]{border-color:#8DBFE3;box-shadow:var(--shadow-md)}
.faq-list summary{
list-style:none;
cursor:pointer;
position:relative;
padding:19px 58px 19px 22px;
font-size:16px;
font-weight:600;
color:var(--title);
line-height:1.5;
user-select:none;
transition:background .2s ease;
}
.faq-list summary::-webkit-details-marker{display:none}
.faq-list summary:hover{background:var(--bg)}
.faq-list summary::after{
content:"+";
position:absolute;
right:20px;
top:50%;
transform:translateY(-50%);
width:28px;
height:28px;
border-radius:50%;
background:var(--primary-soft);
color:var(--primary-dark);
display:flex;
align-items:center;
justify-content:center;
font-size:18px;
font-weight:500;
line-height:1;
transition:transform .3s ease,background .3s ease,color .3s ease;
}
.faq-list details[open] summary::after{
content:"";
transform:translateY(-50%) rotate(135deg);
background:var(--primary);
color:#fff;
}
.faq-answer{padding:2px 22px 20px}
.faq-answer p{
color:var(--text);
font-size:14px;
line-height:1.8;
margin-bottom:0;
}
.cta-section{padding:76px 0 88px}
.cta-box{
position:relative;
background:var(--primary);
border-radius:20px;
padding:56px 52px;
overflow:hidden;
color:#fff;
box-shadow:0 24px 48px rgba(27,111,184,.18);
}
.cta-box::before{
content:"";
position:absolute;
right:-80px;
top:-80px;
width:300px;height:300px;
background:radial-gradient(circle,rgba(255,255,255,.16),transparent 65%);
}
.cta-box::after{
content:"";
position:absolute;
right:60px;
bottom:-130px;
width:260px;height:260px;
background:radial-gradient(circle,rgba(255,192,67,.22),transparent 65%);
}
.cta-copy{position:relative;z-index:2;max-width:720px}
.cta-copy span{font-size:13px;font-weight:700;letter-spacing:.08em;color:var(--accent);text-transform:uppercase}
.cta-copy h2{font-size:30px;font-weight:800;line-height:1.3;margin:14px 0 12px;color:#fff}
.cta-copy p{font-size:15px;color:rgba(255,255,255,.9);max-width:580px;margin-bottom:0}
.cta-actions{position:relative;z-index:3;display:flex;flex-wrap:wrap;gap:14px;margin-top:30px}
.bottom-nav{
background:#fff;
border-bottom:1px solid var(--line);
padding:28px 0;
}
.bottom-nav-inner{
display:flex;
align-items:center;
justify-content:center;
flex-wrap:wrap;
gap:14px;
}
.bottom-nav-divider{width:1px;height:18px;background:#C9D9E6}
.site-footer{background:#16293B;color:#AFC2D2}
.footer-main{padding:58px 0 36px}
.footer-grid{gap:28px 12px}
.footer-brand .footer-logo-text{
font-size:21px;
font-weight:800;
color:#fff;
letter-spacing:.02em;
}
.footer-brand .logo-mark{
width:34px;
height:34px;
opacity:1;
}
.footer-brand p{
font-size:14px;
line-height:1.8;
color:#8FA5B6;
max-width:420px;
margin-top:18px;
margin-bottom:0;
}
.footer-title{
font-size:14px;
font-weight:700;
color:#fff;
letter-spacing:.03em;
margin-bottom:18px;
}
.footer-links{
display:flex;
flex-direction:column;
gap:2px;
}
.footer-links a{
display:inline-flex;
align-items:center;
font-size:14px;
color:#9DB0C1;
padding:7px 0;
line-height:1.4;
transition:color .2s ease,padding-left .2s ease;
}
.footer-links a:hover{color:var(--accent);padding-left:5px}
.footer-note p{font-size:13px;line-height:1.8;color:#8FA5B6;margin-bottom:0;max-width:280px}
.footer-bottom{border-top:1px solid #253D51;padding:22px 0}
.footer-bottom-inner{
display:flex;
flex-wrap:wrap;
align-items:center;
justify-content:space-between;
gap:10px;
font-size:13px;
color:#7E95A8;
}
.legal-domain{font-size:12px;color:#6A8399}
.legal-domain::before{content:"｜";margin-right:8px}
@media (max-width:1023.98px){
.desktop-nav{display:none!important}
.mobile-nav{display:block!important}
.site-header{height:auto}
.section{padding:64px 0}
.banner-title{font-size:34px;line-height:1.3}
.category-banner{padding:60px 0 58px}
.section-head h2{font-size:24px}
.cta-box{padding:40px 28px}
.footer-main{padding-top:44px}
.footer-grid .cell{margin-bottom:18px}
.footer-links a{font-size:15px}
.hero-card{margin-top:34px}
.steps-layout{grid-template-columns:1fr;gap:32px}
.steps-visual{min-height:340px}
.steps-visual img{min-height:340px}
}
@media (min-width:1024px){
.mobile-nav{display:none!important}
}
@media (max-width:639.98px){
body{font-size:15px}
.grid-container,.container{padding-left:16px;padding-right:16px}
.section{padding:52px 0}
.section-head{margin-bottom:28px}
.section-head h2{font-size:21px;line-height:1.4}
.banner-title{font-size:28px;line-height:1.3;margin-top:16px}
.banner-desc{font-size:15px}
.banner-actions{flex-direction:column;align-items:stretch}
.banner-actions .btn{width:100%}
.category-banner{padding:40px 0 48px}
.breadcrumb-row{margin-bottom:20px}
.hero-stats{grid-template-columns:1fr 1fr;gap:8px}
.hero-card-img img,.hero-card-float{width:auto}
.hero-card-floatleft{font-size:13px}
.activity-card{margin-bottom:16px}
.activity-card-body{padding:16px}
.schedule-card{margin-bottom:16px;padding:20px 16px}
.steps-list{gap:12px}
.step-card{padding:18px 14px;gap:14px}
.step-card h3{font-size:16px}
.step-num{width:42px;height:42px;font-size:16px;border-radius:12px}
.steps-visual{min-height:300px}
.steps-visual img{min-height:300px}
.faq-section{padding:56px 0}
.faq-list summary{font-size:15px;padding:16px 52px 16px 16px}
.faq-list summary::after{right:14px;width:26px;height:26px}
.cta-section{padding:48px 0 60px}
.cta-box{padding:34px 22px;border-radius:16px}
.cta-copy h2{font-size:22px}
.cta-actions{flex-direction:column;align-items:stretch;margin-top:24px}
.cta-actions .btn{width:100%}
.footer-logo-text{font-size:18px}
.footer-bottom-inner{flex-direction:column;align-items:center;text-align:center}
.legal-domain::before{content:"";display:none}
.bottom-nav-inner{flex-direction:column;gap:10px}
.bottom-nav-divider{display:none}
}
