/* roulang page: index */
:root{
  --page-bg:#eef5f8;
  --card-bg:#ffffff;
  --panel:#f5f9fb;
  --brand:#227a9c;
  --brand-deep:#175e7b;
  --brand-soft:#e4f0f5;
  --accent:#ea9540;
  --accent-deep:#d17b28;
  --heading:#183247;
  --text:#445e70;
  --muted:#7a90a0;
  --line:#dce8ee;
  --shadow:0 12px 34px rgba(15,60,80,.08);
  --shadow-lg:0 20px 44px rgba(15,60,80,.16);
  --radius-lg:16px;
  --radius-md:12px;
  --radius-sm:10px;
  --transition:.22s ease;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--page-bg);
  font-family:"PingFang SC","Noto Sans SC","Microsoft YaHei",-apple-system,BlinkMacSystemFont,sans-serif;
  color:var(--text);
  line-height:1.75;
  -webkit-font-smoothing:antialiased;
}
body,html{overflow-x:hidden}
h1,h2,h3,h4,h5,p{margin:0}
h1,h2,h3{line-height:1.3;color:var(--heading)}
a{color:var(--brand);text-decoration:none;transition:color var(--transition)}
a:focus-visible,button:focus-visible,input:focus-visible,select:focus-visible,textarea:focus-visible{
  outline:2px solid var(--brand);
  outline-offset:2px;
}
img{max-width:100%;display:block}
ul{list-style:none;margin:0;padding:0}
i[class*="fa-"]{line-height:1}

.grid-container{
  max-width:1240px;
  padding-left:24px;
  padding-right:24px;
}
.grid-margin-x > .cell{margin-bottom:24px}

.section{
  padding:88px 0 80px;
  position:relative;
}
.section .section-content-inner{position:relative;z-index:2}
.section-tint{background:var(--card-bg)}
.section-shade{background:#f2f8fa}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  font-size:13px;
  font-weight:700;
  color:var(--brand);
  letter-spacing:.14em;
  text-transform:uppercase;
}
.eyebrow::before{
  content:"";
  width:38px;height:2px;
  background:var(--accent);
  border-radius:999px;
}
.section-header{
  margin-bottom:38px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:28px;
  flex-wrap:wrap;
}
.section-header h2{font-size:clamp(26px,3vw,34px);margin:10px 0 10px}
.section-header p{font-size:15px;color:var(--muted);max-width:680px}
.section-header .header-action{flex:0 0 auto}

.text-arrow{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-weight:600;
  font-size:14px;
  color:var(--brand-deep);
}
.text-arrow i{transition:transform var(--transition)}
.text-arrow:hover{color:var(--brand)}
.text-arrow:hover i{transform:translateX(4px)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:9px;
  min-height:48px;
  padding:0 26px;
  border:0;
  border-radius:999px;
  font-size:15px;
  font-weight:600;
  font-family:inherit;
  cursor:pointer;
  transition:background .2s,color .2s,transform .2s,box-shadow .2s,border-color .2s;
}
.btn:active{transform:translateY(1px)}
.btn i{font-size:15px}
.btn-primary{
  background:var(--brand);
  color:#fff;
  box-shadow:0 10px 24px rgba(34,122,156,.22);
}
.btn-primary:hover{background:var(--brand-deep);color:#fff;transform:translateY(-2px)}
.btn-accent{
  background:var(--accent);
  color:#fff;
  box-shadow:0 10px 24px rgba(234,149,64,.2);
}
.btn-accent:hover{background:var(--accent-deep);color:#fff;transform:translateY(-2px)}
.btn-outline{
  background:#fff;
  color:var(--brand-deep);
  border:1px solid #b9d5e2;
  box-shadow:none;
}
.btn-outline:hover{
  background:#f3f9fc;
  border-color:var(--brand);
  transform:translateY(-2px);
}
.btn-light{
  background:#fff;
  color:var(--heading);
  border:1px solid var(--line);
}
.btn-light:hover{background:var(--panel);transform:translateY(-2px)}
.btn-sm{min-height:42px;padding:0 20px;font-size:14px}

/* ========= top navigation ========= */
.site-top{padding-top:18px}
.header-card{
  background:var(--card-bg);
  border:1px solid rgba(220,232,238,.9);
  border-radius:18px;
  box-shadow:var(--shadow);
  padding:12px 18px;
  display:flex;
  align-items:center;
  gap:17px;
  min-height:72px;
}
.brand-lock{
  display:inline-flex;
  align-items:center;
  gap:11px;
  flex:0 0 auto;
  margin-right:6px;
}
.brand-icon{
  width:42px;height:42px;
  border-radius:13px;
  background:var(--brand);
  color:#fff;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:18px;
  box-shadow:0 6px 16px rgba(34,122,156,.32);
}
.brand-name{
  font-weight:700;
  color:var(--heading);
  font-size:17px;
  line-height:1.2;
}
.brand-name strong{
  display:block;
  color:var(--brand-deep);
  font-weight:800;
  font-size:19px;
  letter-spacing:.02em;
}
.brand-name span{
  font-size:12px;
  font-weight:500;
  color:var(--muted);
  display:block;
  margin-top:2px;
}

.nav-center{
  margin-left:auto;
  margin-right:auto;
  display:flex;
  align-items:center;
  gap:8px;
  flex-wrap:nowrap;
}
.nav-pill{
  display:inline-flex;
  align-items:center;
  gap:7px;
  padding:8px 14px;
  border-radius:999px;
  background:#f5f9fb;
  border:1px solid transparent;
  font-size:13.5px;
  font-weight:600;
  color:var(--text);
  transition:all var(--transition);
  white-space:nowrap;
}
.nav-pill i{color:var(--brand);font-size:14px}
.nav-pill:hover{
  background:#fff;
  border-color:#cce2ec;
  box-shadow:0 8px 20px rgba(15,60,80,.08);
  color:var(--brand-deep);
  transform:translateY(-2px);
}
.nav-pill.is-active{
  background:#ffffff;
  border-color:#bfd8e5;
  color:var(--brand-deep);
  box-shadow:inset 0 -3px 0 var(--brand),0 9px 22px rgba(15,60,80,.1);
}
.nav-pill.is-active i{color:var(--accent)}
.header-cta{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  gap:9px;
}
.btn-header{
  display:inline-flex;
  align-items:center;
  gap:8px;
  min-height:46px;
  padding:0 20px;
  border-radius:999px;
  background:var(--accent);
  color:#fff;
  font-weight:600;
  font-size:14px;
  border:0;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(234,149,64,.26);
  transition:all var(--transition);
}
.btn-header:hover{background:var(--accent-deep);color:#fff;transform:translateY(-2px)}
.mobile-menu-btn{
  display:none;
  width:46px;height:46px;
  background:var(--panel);
  color:var(--heading);
  border:1px solid var(--line);
  border-radius:12px;
  font-size:19px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition:all var(--transition);
}
.mobile-menu-btn:hover{border-color:var(--brand)}

.mobile-drop{
  display:none;
  background:#fff;
  margin:12px auto 0;
  max-width:1180px;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:var(--shadow);
  padding:18px;
}
.mobile-drop.is-open{display:block}
.mobile-drop-inner{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:10px;
}

/* ========= hero ========= */
.hero-wrap{
  padding-top:24px;
  position:relative;
}
.hero-kv{
  position:relative;
  border-radius:24px;
  background:
    linear-gradient(180deg,rgba(238,245,248,.91),rgba(239,248,250,.94)),
    url('/assets/images/backpic/back-1.png') center/cover no-repeat;
  border:1px solid rgba(204,222,232,.8);
  box-shadow:var(--shadow);
  padding:34px 34px 22px;
  overflow:hidden;
}
.hero-kv::before{
  content:"";
  position:absolute;
  right:-60px;top:-80px;
  width:260px;height:260px;
  border:68px solid rgba(34,122,156,.035);
  border-radius:50%;
  pointer-events:none;
}
.hero-kv .grid-container{max-width:100%;padding:0}
.hero-copy{padding-left:14px}
.hero-tagline{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:rgba(255,255,255,.88);
  border:1px solid rgba(204,222,232,.7);
  color:var(--brand-deep);
  font-weight:600;
  padding:6px 15px;
  border-radius:999px;
  font-size:13px;
  letter-spacing:.08em;
  margin-bottom:22px;
  box-shadow:0 5px 15px rgba(15,60,80,.05);
}
.hero-kv h1{
  font-size:clamp(34px,4.6vw,47px);
  font-weight:800;
  line-height:1.24;
  color:var(--heading);
  margin-bottom:18px;
  max-width:760px;
  letter-spacing:.01em;
}
.hero-lead{
  font-size:16.5px;
  color:#455f73;
  max-width:720px;
  margin-bottom:28px;
  padding-right:4px;
}
.hero-buttons{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:26px;
}
.hero-proof{
  display:flex;
  align-items:center;
  gap:10px;
  color:var(--muted);
  font-size:14px;
  padding-bottom:14px;
}
.hero-proof i{color:var(--brand)}

.hero-media{
  position:relative;
  padding-right:12px;
  padding-left:24px;
}
.media-card{
  border-radius:22px;
  background:#cedee7;
  box-shadow:0 24px 52px rgba(15,60,80,.18);
  padding:11px;
  transform:rotate(.5deg);
  border:4px solid #fff;
}
.media-box{
  position:relative;
  height:300px;
  border-radius:16px;
  overflow:hidden;
  background:linear-gradient(135deg,#d9ebf1,#c5dce8);
}
.media-box img{
  width:100%;height:100%;
  object-fit:cover;
  position:absolute;
  inset:0;
}
.media-float-card{
  position:absolute;
  left:-20px;bottom:18px;
  background:#fff;
  border:1px solid #e4eef2;
  padding:12px 16px;
  border-radius:15px;
  box-shadow:0 14px 38px rgba(15,60,80,.13);
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:600;
  color:var(--heading);
}
.media-float-card i{
  width:32px;height:32px;
  background:var(--brand-soft);
  color:var(--brand);
  display:inline-flex;
  border-radius:10px;
  align-items:center;
  justify-content:center;
}
.media-float-card small{
  display:block;
  color:var(--muted);
  font-weight:400;
}

/* official info strip */
.info-strip{
  padding:18px 22px;
  background:#fff;
  border-radius:16px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  margin-top:-28px;
  position:relative;
  z-index:2;
}
.info-item{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:15px 8px;
}
.info-icon{
  width:46px;height:46px;
  flex:0 0 46px;
  border-radius:14px;
  background:var(--panel);
  color:var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  border:1px solid #edf3f6;
}
.info-item h3{font-size:17px;margin-bottom:3px}
.info-item p{font-size:14px;color:var(--muted);line-height:1.65}

/* timeline */
.timeline-panel{
  background:#f9fcfd;
  border-radius:20px;
  border:1px solid #e1ebf0;
  padding:36px 34px 14px;
  position:relative;
}
.timeline-list{margin:8px 0 0}
.timeline-item{
  position:relative;
  display:flex;
  gap:22px;
  padding:0 0 32px 22px;
  border-left:1px dashed #b6d2df;
}
.timeline-item:last-child{border-left-color:transparent;padding-bottom:12px}
.timeline-dot{
  position:absolute;
  left:-11px;top:1px;
  width:22px;height:22px;
  border-radius:50%;
  background:#fff;
  border:5px solid var(--brand);
  box-shadow:0 0 0 5px rgba(34,122,156,.1);
}
.timeline-item.is-done .timeline-dot{border-color:var(--accent)}
.timeline-content-card{
  background:#fff;
  flex:1;
  border:1px solid #e5eef2;
  border-radius:14px;
  padding:18px 22px;
  box-shadow:0 8px 18px rgba(15,60,80,.04);
  transition:box-shadow var(--transition),transform var(--transition);
}
.timeline-content-card:hover{transform:translateY(-3px);box-shadow:var(--shadow)}
.timeline-meta{
  display:inline-flex;
  font-size:12px;
  color:var(--brand-deep);
  font-weight:700;
  background:var(--brand-soft);
  padding:3px 11px;
  border-radius:999px;
  margin-bottom:8px;
}
.timeline-content-card h3{font-size:18px;margin-bottom:4px}
.timeline-content-card p{font-size:14px;color:var(--muted)}

/* highlight / feature */
.feature-card-main{
  background:#fff;
  border:1px solid var(--line);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
  height:100%;
  transition:transform var(--transition),box-shadow var(--transition);
}
.feature-card-main:hover{transform:translateY(-4px);box-shadow:var(--shadow-lg)}
.feature-main-media{
  height:228px;
  position:relative;
  background:#d7e8ef;
  overflow:hidden;
}
.feature-main-media img{
  width:100%;height:100%;
  object-fit:cover;
}
.feature-main-body{padding:26px 26px 28px}
.feature-main-body h3{font-size:22px;margin-bottom:9px}
.feature-main-body p{color:var(--muted);font-size:15px;margin-bottom:18px}
.feature-main-tag{
  font-size:12px;
  display:inline-flex;
  align-items:center;
  gap:8px;
  color:var(--brand-deep);
  font-weight:600;
  background:#f0f7fa;
  border:1px solid #d9e9ef;
  padding:5px 12px;
  border-radius:999px;
  margin-bottom:12px;
}

.feature-mini-list{
  display:grid;
  gap:18px;
}
.feature-mini-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  padding:22px 24px;
  display:flex;
  gap:16px;
  align-items:flex-start;
  box-shadow:0 6px 18px rgba(15,60,80,.03);
  transition:border var(--transition),transform var(--transition),box-shadow var(--transition);
}
.feature-mini-card:hover{
  border-color:#cbdfe9;
  transform:translateY(-3px);
  box-shadow:var(--shadow);
}
.feature-mini-icon{
  width:50px;height:50px;
  flex:0 0 50px;
  background:var(--brand-soft);
  color:var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:14px;
  font-size:21px;
}
.feature-mini-card h4{font-size:17px;margin-bottom:5px}
.feature-mini-card p{font-size:14px;color:var(--muted);margin-bottom:5px}

/* roles / compare */
.ticket-panel{
  background:#f9fcfd;
  border:1px solid #deeaef;
  border-radius:22px;
  padding:46px 30px 38px;
}
.ticket-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:26px 26px 28px;
  height:100%;
  display:flex;
  flex-direction:column;
  box-shadow:0 9px 24px rgba(15,60,80,.06);
  transition:transform var(--transition),box-shadow var(--transition);
}
.ticket-card:hover{transform:translateY(-5px);box-shadow:var(--shadow-lg)}
.ticket-card h3{font-size:23px;margin-bottom:5px}
.ticket-sub{font-size:14px;color:var(--muted);margin-bottom:22px}
.ticket-list{flex:1;margin-bottom:26px}
.ticket-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:8px 0;
  border-bottom:1px dashed #e7eef2;
  font-size:14.5px;
}
.ticket-list li:last-child{border:0}
.ticket-list i{color:var(--brand);padding-top:4px}
.ticket-tag{
  font-size:12px;
  color:var(--brand);
  background:var(--brand-soft);
  padding:3px 10px;
  border-radius:999px;
  margin-left:5px;
  font-weight:600;
}
.ticket-highlight{
  border:2px solid var(--accent);
  box-shadow:0 24px 46px rgba(234,149,64,.13);
}
.ticket-highlight .ticket-sub{color:#5c7891}
.ticket-highlight h3{color:var(--heading)}
.ticket-card .btn{width:100%}

/* apply / cta */
.apply-section{
  padding:80px 0 46px;
}
.apply-card{
  position:relative;
  border-radius:22px;
  background:
    linear-gradient(98deg,#ffffff 45%,rgba(233,242,247,.94)),
    url('/assets/images/backpic/back-2.png') center/cover no-repeat;
  border:1px solid var(--line);
  box-shadow:var(--shadow-lg);
  overflow:hidden;
  padding:42px 46px 46px;
}
.apply-form-title{
  font-size:clamp(26px,3vw,34px);
  font-weight:800;
  color:var(--heading);
  margin-bottom:8px;
}
.apply-form-sub{color:var(--muted);font-size:15px;margin-bottom:30px}
.form-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px 18px;
}
.form-grid .full{grid-column:1/-1}
.field-label{
  display:block;
  font-size:13px;
  font-weight:700;
  color:var(--heading);
  margin-bottom:7px;
}
.field-input,.field-select,.field-area{
  width:100%;
  height:48px;
  border:1px solid #ccdde6;
  background:#fff;
  border-radius:10px;
  padding:0 14px;
  font-size:14px;
  color:var(--heading);
  transition:border var(--transition),box-shadow var(--transition);
  font-family:inherit;
}
.field-area{height:86px;padding:14px}
.field-input:focus,.field-select:focus,.field-area:focus{
  outline:0;
  border-color:var(--brand);
  box-shadow:0 0 0 3px rgba(34,122,156,.12);
}
.form-privacy{
  grid-column:1/-1;
  font-size:12.5px;
  color:var(--muted);
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:5px;
}
.form-privacy i{color:var(--brand)}
.apply-aside{
  border-left:1px solid #dce8ee;
  padding-left:34px;
  display:flex;
  flex-direction:column;
  gap:20px;
}
.apply-aside h4{font-size:18px;margin-bottom:8px}
.apply-note{
  display:flex;
  gap:12px;
  align-items:flex-start;
}
.apply-note i{
  width:38px;height:38px;
  flex:0 0 38px;
  border-radius:11px;
  background:var(--brand-soft);
  color:var(--brand);
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:17px;
}
.apply-note p{font-size:13.5px;color:var(--muted)}
.apply-note strong{color:var(--heading);font-size:14px;display:block;margin-bottom:2px}

/* latest news area */
.news-section-inner{
  background:var(--page-bg);
}
.latest-card{
  background:#fff;
  border-radius:20px;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  overflow:hidden;
}
.latest-primary{
  height:100%;
  padding:32px;
  display:flex;
  flex-direction:column;
}
.latest-primary .news-kicker{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:center;
  margin-bottom:20px;
}
.badge-tag{
  display:inline-block;
  background:var(--accent);
  color:#fff;
  font-size:12px;
  font-weight:700;
  padding:5px 14px;
  border-radius:999px;
}
.date-tag{
  font-size:13px;
  color:var(--muted);
  font-variant-numeric:tabular-nums;
}
.latest-primary h3{
  font-size:clamp(22px,2.2vw,27px);
  margin-bottom:14px;
  line-height:1.45;
}
.latest-primary h3 a{color:var(--heading)}
.latest-primary h3 a:hover{color:var(--brand)}
.latest-excerpt{
  color:var(--text);
  font-size:15px;
  line-height:1.85;
  margin-bottom:20px;
  flex:1;
}
.news-meta{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
  margin-bottom:8px;
}
.chip-cat{
  font-weight:600;
  font-size:12px;
  color:var(--brand-deep);
  background:var(--brand-soft);
  border-radius:999px;
  padding:5px 13px;
}
.latest-list-container{
  padding:18px 14px 10px;
  display:flex;
  flex-direction:column;
}
.latest-line{
  display:flex;
  gap:14px;
  align-items:flex-start;
  padding:16px 16px;
  border-radius:14px;
  transition:all var(--transition);
}
.latest-line:hover{
  background:#f7fbfc;
}
.latest-no{
  flex:0 0 30px;
  height:30px;
  border-radius:9px;
  background:var(--panel);
  border:1px solid #e1edf1;
  color:var(--brand);
  font-size:12.5px;
  font-weight:700;
  display:flex;
  align-items:center;
  justify-content:center;
  font-variant-numeric:tabular-nums;
}
.latest-line-body{flex:1;min-width:0}
.latest-line h4{
  font-size:15.5px;
  font-weight:600;
  margin-bottom:5px;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;
}
.latest-line h4 a{color:var(--heading)}
.latest-line h4 a:hover{color:var(--brand)}
.latest-line p{
  color:var(--muted);
  font-size:13px;
  overflow:hidden;
  display:-webkit-box;
  -webkit-line-clamp:1;
  -webkit-box-orient:vertical;
  margin-bottom:6px;
}
.latest-line-meta{
  display:flex;
  gap:10px;
  align-items:center;
  font-size:12px;
  color:var(--muted);
  font-variant-numeric:tabular-nums;
}
.latest-arrow{
  flex:0 0 34px;
  width:34px;height:34px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--line);
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--brand);
  font-size:13px;
  transition:background .2s,border .2s;
}
.latest-line:hover .latest-arrow{background:var(--brand);color:#fff;border-color:var(--brand)}
.empty-state{
  border:1px dashed #bad2dc;
  background:#f5fafc;
  color:var(--muted);
  border-radius:16px;
  padding:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  width:100%;
  margin-top:18px;
}

/* faq */
.faq-accordion{
  max-width:920px;
  margin:0 auto;
  background:transparent;
}
.accordion-item{
  background:#fff;
  border:1px solid var(--line) !important;
  border-radius:16px !important;
  margin-bottom:14px;
  padding:0 4px;
  overflow:hidden;
  box-shadow:0 6px 16px rgba(15,60,80,.04);
  transition:border var(--transition),box-shadow var(--transition);
}
.accordion-item.is-active{border-color:#bed9e5 !important;box-shadow:var(--shadow)}
.accordion-title{
  padding:19px 24px !important;
  display:flex;
  align-items:center;
  gap:14px;
  font-size:15.5px;
  line-height:1.5;
  font-weight:700;
  color:var(--heading) !important;
  border-bottom:1px solid transparent;
  position:relative;
  background:transparent;
}
.accordion-item.is-active .accordion-title{border-bottom:1px solid var(--line)}
.faq-q-icon{
  flex:0 0 32px;
  width:32px;height:32px;
  border-radius:9px;
  background:var(--brand-soft);
  color:var(--brand);
  font-size:13px;
  font-weight:800;
  display:flex;
  align-items:center;
  justify-content:center;
}
.faq-plus{
  margin-left:auto;
  width:32px;height:32px;
  border-radius:50%;
  border:1px solid #d5e5ec;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--brand);
  flex:0 0 auto;
  font-size:13px;
}
.accordion-content{
  background:#fbfdfe !important;
  border-bottom-left-radius:14px;
  border-bottom-right-radius:14px;
  padding:16px 24px 24px 70px !important;
  color:var(--text);
  font-size:15px;
  line-height:1.9;
}
.accordion-content p{color:inherit}

/* footer */
.site-footer{
  background:#163543;
  color:#b8ced8;
  padding:54px 0 28px;
  margin-top:44px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1fr 1.3fr;
  gap:42px;
  align-items:start;
}
.footer-brand-title{
  color:#fff;
  font-size:22px;
  font-weight:800;
  margin-bottom:13px;
  line-height:1.4;
}
.footer-desc{font-size:14px;color:#9cbac7;max-width:390px;margin-bottom:22px}
.footer-nav-head{
  font-size:12px;
  color:#7fa0af;
  letter-spacing:.12em;
  font-weight:700;
  margin-bottom:15px;
  text-transform:uppercase;
}
.footer-link-list{
  display:flex;
  flex-wrap:wrap;
  gap:11px 14px;
}
.footer-link-list a{
  font-size:14px;
  color:#d2e2e9;
  display:inline-flex;
  align-items:center;
  gap:8px;
  transition:color var(--transition);
}
.footer-link-list a:hover{color:#fff}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:36px;
  padding-top:22px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  font-size:13px;
  color:#829eaa;
  flex-wrap:wrap;
}
.footer-bottom a{color:#b9d5df}

/* responsive */
@media(max-width:1023.98px){
  .nav-center,.header-cta{display:none}
  .mobile-menu-btn{display:inline-flex}
  .brand-name{font-size:15px;max-width:230px}
  .brand-name strong{font-size:16px}
  .hero-kv{padding:28px 20px}
  .media-card{margin-top:24px}
  .hero-media{padding-left:8px;padding-right:0}
  .section{padding:64px 0}
  .apply-card{padding:32px}
  .apply-aside{border-left:0;padding-left:0;border-top:1px solid var(--line);padding-top:24px}
  .footer-grid{grid-template-columns:1fr}
}
@media(max-width:639.98px){
  .grid-container{padding-left:16px;padding-right:16px}
  .header-card{padding:10px 12px}
  .brand-icon{width:38px;height:38px;font-size:16px}
  .brand-name strong{font-size:15px}
  .brand-name span{font-size:11px}
  .mobile-drop-inner{grid-template-columns:1fr}
  .hero-kv{border-radius:18px;padding:24px 16px 20px}
  .hero-kv h1{font-size:30px}
  .hero-kv .grid-container{padding:0}
  .hero-buttons .btn{width:100%;justify-content:center}
  .hero-proof{flex-wrap:wrap;font-size:13px}
  .media-box{height:220px}
  .media-float-card{left:8px;bottom:8px}
  .info-strip{padding:10px 14px;margin-top:-16px}
  .info-item{padding:12px 4px}
  .section{padding:52px 0 44px}
  .section-header{flex-direction:column;align-items:flex-start;gap:16px}
  .timeline-panel{padding:28px 16px 10px}
  .timeline-item{gap:14px;padding-left:18px}
  .timeline-content-card{padding:15px 15px}
  .feature-main-body,.ticket-card,.latest-primary{padding:22px 20px}
  .form-grid{grid-template-columns:1fr}
  .apply-card{padding:26px 19px 30px}
  .latest-list-container{display:block;padding:0}
  .latest-line{margin:0 14px 8px;background:#fafdff;border:1px solid #edf5f7;padding:14px}
  .accordion-title{gap:8px;padding:16px 14px !important;font-size:14.5px}
  .accordion-content{padding:16px 16px 20px 20px !important}
  .footer-grid{gap:28px}
  .footer-bottom{flex-direction:column;text-align:left}
}

/* roulang page: article */
:root {
            --page-bg: #EEF5F8;
            --panel-bg: #FFFFFF;
            --soft-bg: #F5F9FB;
            --brand: #227A9C;
            --brand-deep: #175E7B;
            --accent: #EA9540;
            --accent-deep: #D17B28;
            --title-color: #183247;
            --text-color: #445E70;
            --muted-color: #7A90A0;
            --line-color: #DCE8EE;
            --shadow-sm: 0 8px 26px rgba(15, 60, 80, 0.08);
            --shadow-md: 0 14px 38px rgba(15, 60, 80, 0.14);
            --radius-lg: 14px;
            --radius-md: 12px;
            --radius-sm: 10px;
            --spacing-section: 88px;
            --content-width: 1200px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", system-ui, Arial, sans-serif;
            background: var(--page-bg);
            color: var(--text-color);
            line-height: 1.8;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: var(--brand-deep);
            text-decoration: none;
            transition: color .2s;
        }

        a:hover {
            color: var(--brand);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .grid-container {
            max-width: 1200px;
            margin: 0 auto;
            padding-left: 22px;
            padding-right: 22px;
        }

        .skip-link {
            position: absolute;
            left: -999px;
            top: 10px;
            background: var(--brand);
            color: #fff;
            padding: 8px 16px;
            border-radius: 8px;
            z-index: 1000;
        }

        .skip-link:focus {
            left: 16px;
        }

        /* ===== Header & nav panel ===== */
        .site-header {
            padding-top: 18px;
            position: relative;
            z-index: 60;
        }

        .header-card {
            background: rgba(255, 255, 255, 0.92);
            border: 1px solid var(--line-color);
            box-shadow: var(--shadow-sm);
            border-radius: 18px;
            padding: 12px 14px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
        }

        .brand-mark {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
            font-size: 19px;
            font-weight: 800;
            color: var(--title-color);
            letter-spacing: -.2px;
        }

        .brand-mark:hover {
            color: var(--title-color);
        }

        .brand-mark .mark-icon {
            color: var(--brand);
            font-size: 21px;
        }

        .nav-center {
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }

        .nav-pill {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--soft-bg);
            border: 1px solid transparent;
            color: var(--text-color);
            font-size: 14px;
            font-weight: 600;
            border-radius: 999px;
            padding: 8px 16px;
            line-height: 1;
            transition: all .2s;
            white-space: nowrap;
        }

        .nav-pill i {
            color: var(--brand);
            font-size: 15px;
        }

        .nav-pill:hover {
            color: var(--brand-deep);
            border-color: #cce1ea;
            box-shadow: 0 4px 12px rgba(34, 122, 156, .08);
            transform: translateY(-2px);
        }

        .nav-pill.is-active {
            background: rgba(34, 122, 156, .1);
            border-color: rgba(34, 122, 156, .28);
            color: var(--brand-deep);
            box-shadow: inset 0 -3px 0 var(--brand);
        }

        .header-cta {
            margin-left: 8px;
            flex-shrink: 0;
        }

        .btn-accent {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            background: var(--accent);
            color: #fff;
            font-weight: 700;
            border-radius: 999px;
            padding: 11px 22px;
            font-size: 14px;
            line-height: 1;
            box-shadow: 0 8px 18px rgba(234, 149, 64, .18);
            transition: all .25s;
            border: 0;
            cursor: pointer;
        }

        .btn-accent:hover {
            background: var(--accent-deep);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 24px rgba(234, 149, 64, .28);
        }

        .btn-accent:focus-visible,
        .nav-pill:focus-visible,
        .btn-outline-dark:focus-visible,
        .footer-link-list a:focus-visible {
            outline: 2px solid var(--brand);
            outline-offset: 3px;
        }

        .menu-toggle {
            display: none;
            background: var(--soft-bg);
            border: 1px solid var(--line-color);
            color: var(--brand-deep);
            width: 44px;
            height: 44px;
            border-radius: 12px;
            cursor: pointer;
            font-size: 19px;
        }

        .header-nav-holder {
            display: flex;
            flex: 1;
            justify-content: center;
        }

        /* ===== Article layout ===== */
        .article-shell {
            padding-top: 34px;
            padding-bottom: var(--spacing-section);
        }

        .crumb {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 13px;
            color: var(--muted-color);
            margin-bottom: 22px;
        }

        .crumb a {
            color: var(--brand-deep);
            font-weight: 500;
        }

        .crumb i {
            font-size: 12px;
            color: #9db4c1;
        }

        .article-single-card {
            background: var(--panel-bg);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            padding: clamp(22px, 4vw, 52px);
            border: 1px solid #edf2f5;
            margin-bottom: 38px;
        }

        .article-cover-frame {
            border-radius: var(--radius-md);
            overflow: hidden;
            margin-bottom: 36px;
            position: relative;
            background: linear-gradient(120deg, #e7f1f6, #f6fafc);
        }

        .article-cover-frame img {
            width: 100%;
            height: 320px;
            object-fit: cover;
        }

        .article-cover-frame .cover-over {
            position: absolute;
            left: 18px;
            bottom: 18px;
            background: rgba(24, 50, 71, .55);
            color: #fff;
            padding: 5px 14px;
            border-radius: 999px;
            backdrop-filter: blur(6px);
            font-size: 12px;
            bottom: 14px;
            right: 14px;
            left: auto;
        }

        .post-category-line {
            display: flex;
            align-items: center;
            gap: 14px;
            flex-wrap: wrap;
            margin-bottom: 12px;
        }

        .tag-solid {
            display: inline-block;
            background: rgba(34, 122, 156, .08);
            color: var(--brand-deep);
            padding: 5px 15px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 700;
        }

        .post-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 18px;
            color: var(--muted-color);
            font-size: 13px;
            margin-top: 12px;
            border-top: 1px solid #edf0f4;
            padding-top: 16px;
        }

        .post-meta i {
            margin-right: 5px;
            color: #6d9db8;
        }

        h1.article-title {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: var(--title-color);
            line-height: 1.32;
            letter-spacing: -.3px;
            margin: 0 0 16px 0;
        }

        .article-content-block {
            max-width: 760px;
            margin: 34px auto 0;
        }

        .cms-content {
            font-size: 16.5px;
            line-height: 2;
            color: var(--text-color);
            word-break: break-word;
        }

        .cms-content h2 {
            font-size: 26px;
            color: var(--title-color);
            margin: 40px 0 16px;
            font-weight: 800;
            position: relative;
            padding-bottom: 12px;
            border-bottom: 1px solid var(--line-color);
        }

        .cms-content h3 {
            font-size: 20px;
            color: var(--title-color);
            margin: 28px 0 12px;
            font-weight: 700;
        }

        .cms-content p {
            margin-bottom: 18px;
        }

        .cms-content img {
            border-radius: var(--radius-md);
            margin: 22px 0 10px;
        }

        .cms-content blockquote {
            background: var(--soft-bg);
            border-left: 4px solid var(--brand);
            padding: 16px 22px;
            border-radius: 0 10px 10px 0;
            margin: 24px 0;
            color: var(--text-color);
        }

        .cms-content ul,
        .cms-content ol {
            margin: 0 0 20px 22px;
        }

        .cms-content li {
            margin-bottom: 6px;
        }

        .cms-content a {
            font-weight: 600;
            text-decoration: underline;
        }

        .post-bottom-nav {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 14px;
            border-top: 1px solid var(--line-color);
            margin-top: 42px;
            padding-top: 26px;
            flex-wrap: wrap;
        }

        .back-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--soft-bg);
            border: 1px solid var(--line-color);
            color: var(--brand-deep);
            font-weight: 600;
            border-radius: 999px;
            padding: 10px 18px;
            font-size: 14px;
            transition: all .22s;
        }

        .back-btn:hover {
            background: #eef3f6;
            transform: translateY(-2px);
            box-shadow: var(--shadow-sm);
            color: var(--brand-deep);
        }

        .missing-article {
            text-align: center;
            padding: 68px 20px;
        }

        .missing-article i {
            font-size: 62px;
            color: #a8c3d2;
            margin-bottom: 16px;
            display: block;
        }

        .missing-article h1 {
            font-size: 28px;
            color: var(--title-color);
            margin-bottom: 10px;
        }

        .btn-outline-dark {
            display: inline-block;
            border-radius: 999px;
            border: 1px solid var(--brand);
            padding: 10px 20px;
            color: var(--brand-deep);
            font-weight: 600;
            background: transparent;
            transition: all .2s;
        }

        .btn-outline-dark:hover {
            background: rgba(34, 122, 156, .05);
            color: var(--brand-deep);
            transform: translateY(-2px);
        }

        /* ===== Section title styles ===== */
        .section-title {
            font-size: 27px;
            color: var(--title-color);
            font-weight: 800;
            margin-bottom: 8px;
        }

        .section-sub {
            color: var(--muted-color);
            font-size: 15px;
            margin-bottom: 26px;
        }

        .section-head-wrap {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 16px;
            margin-bottom: 22px;
        }

        /* ===== Related / service cards ===== */
        .related-section {
            background: var(--soft-bg);
            padding: 56px 0;
            margin-top: 10px;
            border-top: 1px solid var(--line-color);
            border-bottom: 1px solid var(--line-color);
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .service-card {
            background: #fff;
            border-radius: var(--radius-md);
            box-shadow: var(--shadow-sm);
            overflow: hidden;
            border: 1px solid #eaf0f4;
            transition: transform .25s, box-shadow .25s;
        }

        .service-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }

        .service-card-cover img {
            width: 100%;
            height: 148px;
            object-fit: cover;
        }

        .service-card-body {
            padding: 20px 18px;
        }

        .service-card-body .label {
            font-size: 12px;
            color: var(--brand-deep);
            font-weight: 700;
            background: rgba(34, 122, 156, .08);
            display: inline-block;
            padding: 3px 10px;
            border-radius: 999px;
            margin-bottom: 8px;
        }

        .service-card-body h3 {
            font-size: 17px;
            margin-bottom: 8px;
            color: var(--title-color);
            font-weight: 700;
            line-height: 1.5;
        }

        .service-card-body p {
            font-size: 14px;
            color: var(--muted-color);
            line-height: 1.7;
            margin-bottom: 12px;
        }

        .service-card-body .simple-link {
            font-size: 14px;
            font-weight: 700;
            color: var(--brand);
        }

        .service-card-body .simple-link i {
            font-size: 11px;
            margin-left: 4px;
        }

        /* ===== Article FAQ section ===== */
        .faq-block {
            padding: 54px 0 82px;
        }

        .accordion-faq-item {
            background: #fff;
            border: 1px solid var(--line-color);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            box-shadow: 0 5px 16px rgba(15, 60, 80, .04);
            overflow: hidden;
            transition: box-shadow .2s, border-color .2s;
        }

        .accordion-faq-item:hover {
            border-color: #bcd4e0;
        }

        .accordion-faq-item.is-active {
            border-color: rgba(34, 122, 156, .4);
            box-shadow: 0 8px 22px rgba(34, 122, 156, .06);
        }

        .accordion-faq-item .accordion-title {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 18px 22px;
            color: var(--title-color);
            font-weight: 700;
            font-size: 16px;
            cursor: pointer;
            position: relative;
            border: none;
            background: #fff;
        }

        .accordion-faq-item .accordion-title::before {
            content: "\f106";
            font-family: "Font Awesome 6 Free";
            position: absolute;
            right: 20px;
            font-weight: 900;
            color: var(--muted-color);
        }

        .accordion-faq-item.is-active .accordion-title::before {
            content: "\f107";
            color: var(--brand);
        }

        .accordion-faq-item .accordion-content {
            padding: 0 22px 20px 52px;
            color: var(--text-color);
            font-size: 15px;
            border-top: 1px solid #f0f4f6;
            margin-top: 0;
        }

        .faq-icon {
            width: 28px;
            height: 28px;
            flex: 0 0 28px;
            background: var(--soft-bg);
            color: var(--brand);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: #183247;
            color: rgba(255, 255, 255, .7);
            padding: 50px 0 14px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 45px;
        }

        .footer-brand-title {
            font-size: 24px;
            color: #fff;
            font-weight: 800;
            margin-bottom: 12px;
        }

        .footer-desc {
            color: #9fb8c7;
            line-height: 1.9;
            font-size: 14px;
            margin-bottom: 14px;
        }

        .footer-nav-head {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }

        .footer-link-list {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .footer-link-list a {
            color: #aac2d0;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-link-list a:hover {
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .12);
            padding: 22px 0 0;
            margin-top: 34px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px 22px;
            font-size: 13px;
        }

        .footer-bottom span {
            color: #8aa7b7;
        }

        .footer-note {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: #7ea0af;
        }

        /* ===== Responsive ===== */
        @media (max-width: 1023px) and (min-width: 640px) {
            .header-card {
                flex-wrap: wrap;
            }

            .header-nav-holder {
                flex: 0 0 100%;
                order: 3;
                justify-content: flex-start;
                overflow-x: auto;
            }

            .nav-center {
                flex-wrap: nowrap;
                overflow-x: auto;
                padding-bottom: 6px;
            }
        }

        @media (max-width: 639px) {
            .site-header {
                padding-top: 10px;
            }

            .header-card {
                border-radius: 14px;
                padding: 10px;
            }

            .brand-mark {
                font-size: 16px;
            }

            .header-cta {
                display: none;
            }

            .menu-toggle {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                order: 3;
            }

            .header-nav-holder {
                flex: 0 0 100%;
                display: none;
                order: 4;
                margin-top: 8px;
                max-height: 260px;
                overflow-y: auto;
                padding: 6px 0;
            }

            .header-nav-holder.is-open {
                display: block;
                width: 100%;
            }

            .nav-center {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-pill {
                width: 100%;
            }

            .related-grid {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 28px;
            }

            .article-cover-frame img {
                height: 210px;
            }

            h1.article-title {
                font-size: 27px;
            }

            .cms-content {
                font-size: 16px;
                line-height: 1.9;
            }

            .article-content-block {
                margin-top: 20px;
            }

            .section-title {
                font-size: 23px;
            }

            .related-section {
                padding: 42px 0;
            }

            .faq-block {
                padding: 40px 0 60px;
            }
        }

/* roulang page: category2 */
:root{
  --page-bg:#EEF5F8;
  --card-bg:#FFFFFF;
  --panel-bg:#F5F9FB;
  --brand-primary:#227A9C;
  --brand-dark:#175E7B;
  --cta-bg:#EA9540;
  --cta-dark:#D17B28;
  --title-color:#183247;
  --text-color:#445E70;
  --muted-color:#7A90A0;
  --line-color:#DCE8EE;
  --card-shadow:0 6px 24px rgba(15,60,80,0.08);
  --card-hover-shadow:0 14px 34px rgba(15,60,80,0.15);
  --radius-lg:14px;
  --radius-md:12px;
  --radius-sm:10px;
  --radius-pill:999px;
  --space-lg:96px;
  --space-md:56px;
  --space-sm:28px;
}
*,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
html{scroll-behavior:smooth}
body{
  font-family:"PingFang SC","Noto Sans SC","Microsoft YaHei",system-ui,-apple-system,sans-serif;
  background:var(--page-bg);
  color:var(--text-color);
  font-size:16px;
  line-height:1.8;
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block}
a{color:var(--brand-primary);text-decoration:none;transition:color .25s ease}
a:hover{color:var(--brand-dark)}
.container{max-width:1200px;margin:0 auto;padding:0 24px}
.grid-container{max-width:1200px}
.grid-x{display:flex;flex-wrap:wrap;margin-left:-12px;margin-right:-12px}
.cell{padding-left:12px;padding-right:12px;box-sizing:border-box}

/* 顶部分隔线 */
.top-strip{height:6px;background:linear-gradient(90deg,#175E7B 0%,#227A9C 40%,#EA9540 100%);}

/* ===== 导航卡片面板 ===== */
.site-nav-wrapper{
  padding:14px 20px 0;
  max-width:1280px;
  margin:0 auto;
}
.nav-panel{
  background:var(--card-bg);
  border-radius:18px;
  box-shadow:var(--card-hover-shadow);
  border:1px solid rgba(220,232,238,.7);
  padding:14px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  flex-wrap:wrap;
}
.brand-lockup{display:flex;align-items:center;gap:10px;flex-shrink:0}
.brand-mark{
  width:42px;height:42px;
  background:linear-gradient(135deg,#227A9C,#175E7B);
  border-radius:12px;
  display:flex;align-items:center;justify-content:center;
  color:#fff;font-size:20px;font-weight:700;
  box-shadow:0 4px 10px rgba(23,94,123,.2);
}
.brand-text{font-weight:700;color:var(--title-color);font-size:18px;letter-spacing:.3px;line-height:1.3;white-space:nowrap}
.brand-sub{font-size:11px;color:var(--muted-color);font-weight:400;letter-spacing:1px}
.nav-center{display:flex;gap:6px;flex-wrap:wrap;align-items:center}
.nav-pill{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:9px 16px;
  border-radius:12px;
  font-size:14px;
  font-weight:500;
  color:var(--title-color);
  background:var(--panel-bg);
  border:1px solid transparent;
  transition:all .25s ease;
  line-height:1.4;
}
.nav-pill i{font-size:15px;color:var(--brand-primary);transition:color .25s ease}
.nav-pill:hover{
  background:var(--page-bg);
  border-color:var(--line-color);
  color:var(--brand-dark);
  transform:translateY(-2px);
}
.nav-pill.is-active{
  background:rgba(34,122,156,.1);
  border-color:rgba(34,122,156,.25);
  color:var(--brand-dark);
  font-weight:600;
  box-shadow:0 0 0 3px rgba(34,122,156,.08);
}
.nav-pill.is-active i{color:var(--brand-dark)}
.nav-cta-btn{
  background:var(--cta-bg);
  color:#fff;
  border:none;
  padding:10px 22px;
  border-radius:var(--radius-pill);
  font-size:14px;
  font-weight:600;
  display:inline-flex;
  align-items:center;
  gap:6px;
  box-shadow:0 6px 16px rgba(234,149,64,.25);
  cursor:pointer;
  transition:all .25s ease;
  white-space:nowrap;
}
.nav-cta-btn:hover{
  background:var(--cta-dark);
  transform:translateY(-2px);
  box-shadow:0 10px 22px rgba(209,123,40,.35);
  color:#fff;
}
.nav-burger{
  display:none;
  width:48px;height:44px;
  border-radius:12px;
  border:1px solid var(--line-color);
  background:var(--card-bg);
  color:var(--brand-primary);
  font-size:20px;
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
@media (max-width: 1024px){
  .nav-center{order:3;width:100%;overflow-x:auto;display:flex;gap:6px;padding-bottom:4px}
  .nav-pill{white-space:nowrap}
  .brand-text{font-size:16px}
  .nav-cta-btn{padding:9px 16px;font-size:13px}
}
@media (max-width: 640px){
  .site-nav-wrapper{padding:10px 12px 0}
  .nav-panel{padding:12px 14px;gap:10px}
  .brand-mark{width:38px;height:38px;font-size:18px}
  .brand-text{font-size:15px}
  .nav-cta-btn{font-size:13px;padding:8px 14px}
  .nav-pill{
    padding:7px 12px;font-size:13px;border-radius:10px;
  }
  .nav-pill i{font-size:14px}
}

/* ===== 分类页 Header / Hero ===== */
.category-page-header{
  position:relative;
  padding:78px 0 60px;
  overflow:hidden;
}
.category-page-header::before{
  content:'';
  position:absolute;
  inset:0;
  background:url('/assets/images/backpic/back-2.png') center/cover no-repeat;
  opacity:.9;
}
.category-page-header::after{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(255,255,255,.82);
  backdrop-filter:none;
}
.header-inner{
  position:relative;
  z-index:2;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}
.breadcrumb-area{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--muted-color);
  margin-bottom:22px;
  flex-wrap:wrap;
}
.breadcrumb-area a{
  color:var(--brand-primary);
  font-weight:500;
  display:inline-flex;align-items:center;gap:4px;
}
.breadcrumb-area .sep{color:#9ab3c0;margin:0 4px}
.category-eyebrow{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(34,122,156,.12);
  color:var(--brand-dark);
  font-size:13px;
  font-weight:600;
  padding:6px 16px;
  border-radius:var(--radius-pill);
  margin-bottom:18px;
  border:1px solid rgba(34,122,156,.15);
}
.cat-h1{
  font-size:44px;
  line-height:1.25;
  color:var(--title-color);
  font-weight:700;
  letter-spacing:-.5px;
  margin-bottom:18px;
  max-width:900px;
}
.cat-desc{
  font-size:17px;
  line-height:1.8;
  color:var(--text-color);
  max-width:760px;
  margin-bottom:30px;
}
.cat-header-actions{
  display:flex;
  gap:14px;
  align-items:center;
  flex-wrap:wrap;
  margin-top:12px;
}
.btn-primary{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:var(--cta-bg);
  color:#fff;
  padding:13px 28px;
  border-radius:var(--radius-pill);
  border:2px solid var(--cta-bg);
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:all .25s ease;
  box-shadow:0 6px 18px rgba(234,149,64,.22);
}
.btn-primary:hover{
  background:var(--cta-dark);
  border-color:var(--cta-dark);
  color:#fff;
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(209,123,40,.3);
}
.btn-outline{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:rgba(255,255,255,.6);
  color:var(--brand-dark);
  padding:13px 28px;
  border-radius:var(--radius-pill);
  border:1.5px solid rgba(34,122,156,.4);
  font-size:15px;
  font-weight:500;
  cursor:pointer;
  transition:all .25s ease;
}
.btn-outline:hover{
  background:rgba(34,122,156,.08);
  border-color:var(--brand-primary);
  transform:translateY(-2px);
}
@media (max-width: 640px){
  .category-page-header{padding:48px 0 40px}
  .cat-h1{font-size:30px}
  .cat-desc{font-size:15px}
  .btn-primary,.btn-outline{padding:11px 22px;font-size:14px}
  .breadcrumb-area{font-size:12px}
}

/* ===== 版面通用 ===== */
.section-block{padding:80px 0}
.section-block-alt{background:#fff;padding:80px 0}
.section-heading{margin-bottom:40px;display:flex;align-items:flex-end;justify-content:space-between;flex-wrap:wrap;gap:14px}
.section-title-wrap{display:flex;align-items:center;gap:12px;margin-bottom:10px}
.section-title-line{
  width:4px;height:28px;
  background:var(--brand-primary);
  border-radius:4px;
}
.section-title{
  font-size:30px;
  color:var(--title-color);
  font-weight:700;
  line-height:1.3;
  margin:0;
}
.section-sub{
  font-size:15px;
  color:var(--muted-color);
  margin-top:2px;
}
.text-link-all{
  font-size:14px;
  color:var(--brand-primary);
  display:inline-flex;
  align-items:center;
  gap:6px;
  font-weight:500;
}
@media (max-width: 640px){
  .section-block{padding:50px 0}
  .section-title{font-size:24px}
  .section-block-alt{padding:50px 0}
}

/* ===== 赛事数据徽章区 ===== */
.stats-card-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
  margin:40px 0 0;
}
.stat-card{
  background:var(--card-bg);
  border-radius:var(--radius-md);
  border:1px solid var(--line-color);
  box-shadow:var(--card-shadow);
  padding:28px 24px;
  text-align:center;
  transition:all .3s ease;
}
.stat-card:hover{
  transform:translateY(-4px);
  box-shadow:var(--card-hover-shadow);
}
.stat-num{
  font-size:34px;
  font-weight:700;
  color:var(--brand-primary);
  line-height:1.2;
  font-variant-numeric:tabular-nums;
  margin-bottom:6px;
}
.stat-label{font-size:14px;color:var(--text-color);font-weight:500}
@media (max-width: 900px){
  .stats-card-row{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 520px){
  .stats-card-row{grid-template-columns:1fr 1fr;gap:12px}
  .stat-card{padding:20px 12px}
  .stat-num{font-size:26px}
}

/* ===== 赛事项目卡片区 ===== */
.event-category-wrap{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}
.event-card{
  background:var(--card-bg);
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--card-shadow);
  border:1px solid #ecf2f6;
  display:flex;
  flex-direction:column;
  transition:all .3s ease;
  position:relative;
}
.event-card:hover{
  transform:translateY(-6px);
  box-shadow:var(--card-hover-shadow);
}
.event-card-img{
  height:180px;
  overflow:hidden;
  position:relative;
  background-color:#d9e4ea;
  background-size:cover;
  background-position:center;
}
.event-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s ease}
.event-card:hover .event-card-img img{transform:scale(1.03)}
.event-card-tag{
  position:absolute;
  top:14px;
  left:14px;
  background:rgba(255,255,255,.95);
  color:var(--brand-dark);
  font-size:12px;
  font-weight:600;
  padding:4px 12px;
  border-radius:var(--radius-pill);
  box-shadow:0 3px 10px rgba(0,0,0,.1);
  font-variant-numeric:tabular-nums;
}
.event-card-body{
  padding:24px 24px 28px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.event-card-title{
  font-size:18px;
  font-weight:600;
  color:var(--title-color);
  margin-bottom:8px;
  line-height:1.5;
}
.event-card-desc{
  font-size:14px;
  color:var(--text-color);
  line-height:1.7;
  margin-bottom:16px;
  flex:1;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.event-meta-row{
  display:flex;
  align-items:center;
  gap:8px;
  font-size:13px;
  color:var(--muted-color);
  margin-bottom:16px;
  font-variant-numeric:tabular-nums;
  flex-wrap:wrap;
}
.event-meta-row i{color:var(--brand-primary);width:16px}
.event-card-link{
  font-size:14px;
  font-weight:600;
  color:var(--brand-primary);
  display:inline-flex;
  align-items:center;
  gap:6px;
  transition:all .25s;
}
.event-card-link i{transition:transform .25s}
.event-card-link:hover i{transform:translateX(3px)}
@media (max-width: 1024px){
  .event-category-wrap{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 640px){
  .event-category-wrap{grid-template-columns:1fr}
  .event-card-img{height:160px}
}

/* ===== 时间线流程 ===== */
.flow-timeline{
  position:relative;
  padding-left:42px;
  display:flex;
  flex-direction:column;
  gap:0;
  margin-top:36px;
}
.flow-timeline::before{
  content:'';
  position:absolute;
  left:14px;
  top:8px;
  bottom:8px;
  width:2px;
  background:linear-gradient(to bottom, rgba(34,122,156,.45), rgba(34,122,156,.12));
  border-radius:2px;
}
.timeline-node{
  position:relative;
  padding-bottom:24px;
}
.timeline-node::before{
  content:'';
  position:absolute;
  left:-36px;
  top:6px;
  width:13px;
  height:13px;
  border-radius:50%;
  background:var(--brand-primary);
  border:3px solid #fff;
  box-shadow:0 0 0 2px rgba(34,122,156,.25);
}
.timeline-node-card{
  background:var(--card-bg);
  border:1px solid var(--line-color);
  border-radius:var(--radius-md);
  box-shadow:var(--card-shadow);
  padding:20px 24px;
  max-width:720px;
  transition:all .3s;
}
.timeline-node-card:hover{
  box-shadow:var(--card-hover-shadow);
  border-color:rgba(34,122,156,.25);
}
.timeline-node-card .stage-tag{
  display:inline-block;
  background:var(--panel-bg);
  color:var(--brand-dark);
  border:1px solid rgba(34,122,156,.16);
  font-size:13px;
  font-weight:600;
  padding:3px 12px;
  border-radius:var(--radius-pill);
  margin-bottom:10px;
  font-variant-numeric:tabular-nums;
}
.timeline-node-card h3{
  color:var(--title-color);font-size:17px;font-weight:600;margin-bottom:6px;
}
.timeline-node-card p{color:var(--muted-color);font-size:14px;line-height:1.7}
@media (max-width: 640px){
  .flow-timeline{padding-left:30px}
  .timeline-node{padding-bottom:18px}
  .timeline-node::before{left:-27px;width:11px;height:11px}
  .timeline-node-card{padding:16px 18px}
}

/* ===== 资讯卡片列表 ===== */
.news-grid-row{
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr;
  gap:22px;
  margin-top:40px;
}
.news-card{
  background:var(--card-bg);
  border-radius:var(--radius-lg);
  border:1px solid var(--line-color);
  overflow:hidden;
  box-shadow:var(--card-shadow);
  display:flex;
  flex-direction:column;
  transition:all .3s;
}
.news-card:hover{
  box-shadow:var(--card-hover-shadow);
  transform:translateY(-4px);
}
.news-card .news-thumb{
  height:150px;
  background-color:#d6e0e6;
  background-size:cover;
  overflow:hidden;
  position:relative;
}
.news-card .news-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.news-chip{
  position:absolute;
  top:12px;
  left:12px;
  background:rgba(23,94,123,.88);
  color:#fff;
  font-size:12px;
  font-weight:500;
  padding:2px 10px;
  border-radius:var(--radius-pill);
  backdrop-filter:none;
}
.news-card-body{
  padding:20px 20px 24px;
  display:flex;
  flex-direction:column;
  flex:1;
}
.news-card-title{
  font-size:17px;
  font-weight:600;
  color:var(--title-color);
  line-height:1.5;
  margin-bottom:8px;
}
.news-card-title a{color:var(--title-color)}
.news-card-title a:hover{color:var(--brand-primary)}
.news-card-summary{
  font-size:14px;
  color:var(--text-color);
  flex:1;
  margin-bottom:14px;
  display:-webkit-box;
  -webkit-line-clamp:2;
  -webkit-box-orient:vertical;
  overflow:hidden;
}
.news-card-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-top:1px dashed var(--line-color);
  padding-top:12px;
  margin-top:2px;
}
.news-card-date{
  font-size:12px;
  color:var(--muted-color);
  font-variant-numeric:tabular-nums;
  display:inline-flex;
  align-items:center;gap:5px;
}
.news-card-more{
  font-size:13px;color:var(--brand-primary);font-weight:500;
}
@media (max-width: 1024px){
  .news-grid-row{grid-template-columns:1fr 1fr}
}
@media (max-width: 640px){
  .news-grid-row{grid-template-columns:1fr}
  .news-card .news-thumb{height:140px}
}

/* ===== FAQ 卡片 ===== */
.faq-zone{max-width:820px;margin:0 auto}
.faq-item{
  background:var(--card-bg);
  border:1px solid var(--line-color);
  border-radius:var(--radius-md);
  margin-bottom:14px;
  box-shadow:var(--card-shadow);
  transition:all .3s;
  overflow:hidden;
}
.faq-item:hover{border-color:rgba(34,122,156,.2)}
.faq-question{
  width:100%;
  background:none;
  border:none;
  padding:20px 24px;
  display:flex;
  align-items:center;
  gap:14px;
  cursor:pointer;
  font-size:16px;
  color:var(--title-color);
  font-weight:600;
  text-align:left;
  line-height:1.5;
  font-family:inherit;
}
.faq-question .faq-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  background:rgba(34,122,156,.08);
  color:var(--brand-primary);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex-shrink:0;
  font-size:14px;
}
.faq-question .faq-arrow{
  margin-left:auto;
  width:28px;
  height:28px;
  border-radius:50%;
  background:var(--panel-bg);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  color:var(--brand-primary);
  transition:transform .3s;
  flex-shrink:0;
}
.faq-item.is-open .faq-question .faq-arrow{transform:rotate(180deg)}
.faq-answer{
  display:none;
  padding:0 24px 22px 66px;
  font-size:15px;
  color:var(--text-color);
  line-height:1.8;
  background:#fff;
}
.faq-item.is-open .faq-answer{display:block;background:#F5F9FB}
.faq-item.is-open{border-color:rgba(34,122,156,.25);background:var(--panel-bg)}
.faq-item.is-open .faq-question{background:var(--panel-bg)}
@media (max-width: 640px){
  .faq-question{padding:16px 16px;font-size:15px}
  .faq-answer{padding:0 16px 16px 52px;font-size:14px}
}

/* ===== 赛事对比区 ===== */
.race-level-grid{
  display:grid;
  grid-template-columns:1.04fr .92fr 1.04fr;
  gap:16px;
  margin:50px 0 20px;
  align-items:stretch;
}
.race-level-card{
  background:var(--card-bg);
  border-radius:var(--radius-lg);
  border:1.5px solid var(--line-color);
  padding:30px 26px;
  box-shadow:var(--card-shadow);
  position:relative;
  display:flex;
  flex-direction:column;
  transition:all .3s;
}
.race-level-card:hover{box-shadow:var(--card-hover-shadow);transform:translateY(-4px)}
.race-level-card.featured{
  border-color:var(--brand-primary);
  background:linear-gradient(180deg,#F5F9FB 0%,#ffffff 60%);
  box-shadow:0 10px 30px rgba(34,122,156,.13);
}
.race-badge{
  position:absolute;
  top:-15px;
  left:50%;
  transform:translateX(-50%);
  background:var(--cta-bg);
  color:#fff;
  font-size:12px;
  padding:4px 18px;
  border-radius:var(--radius-pill);
  font-weight:600;
  white-space:nowrap;
  box-shadow:0 5px 14px rgba(234,149,64,.4);
}
.race-level-name{font-size:21px;font-weight:700;color:var(--title-color);margin-bottom:14px}
.race-feature-list{list-style:none;flex:1;margin-bottom:22px}
.race-feature-list li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  font-size:14px;
  color:var(--text-color);
  margin-bottom:12px;
  line-height:1.65;
}
.race-feature-list li i{
  color:var(--brand-primary);
  font-size:14px;
  margin-top:5px;
  width:16px;
  text-align:center;
}
.race-level-btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  padding:12px 20px;
  border-radius:var(--radius-sm);
  font-size:15px;
  font-weight:600;
  cursor:pointer;
  transition:all .25s;
  border:1px solid transparent;
  width:100%;
}
.race-level-btn.hollow{
  background:var(--panel-bg);
  color:var(--brand-dark);
  border:1.5px solid rgba(34,122,156,.2);
}
.race-level-btn.hollow:hover{
  border-color:var(--brand-primary);
  background:rgba(34,122,156,.06);
}
.race-level-btn.solid{
  background:var(--cta-bg);color:#fff;
  box-shadow:0 6px 16px rgba(234,149,64,.2);
}
.race-level-btn.solid:hover{background:var(--cta-dark);color:#fff;transform:translateY(-2px)}
.popular-tip{margin-top:26px}
@media (max-width: 900px){
  .race-level-grid{grid-template-columns:1fr;max-width:520px;margin-left:auto;margin-right:auto}
  .race-level-card.featured{margin-top:20px}
}

/* ===== CTA 区 ===== */
.cta-banner-section{padding:72px 0 90px}
.cta-banner{
  background:
    linear-gradient(rgba(238,245,248,.94),rgba(255,255,255,.94)),
    url('/assets/images/backpic/back-3.png') center/cover;
  border-radius:24px;
  border:1px solid var(--line-color);
  box-shadow:0 18px 50px rgba(15,60,80,.12);
  padding:52px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  position:relative;
  overflow:hidden;
}
.cta-banner .cta-brand-title{
  font-size:26px;
  color:var(--title-color);
  font-weight:700;
  margin-bottom:16px;
  line-height:1.5;
}
.cta-banner p{font-size:15px;color:var(--text-color);line-height:1.8;margin-bottom:20px}
.cta-feature-lines{
  list-style:none;
  margin-top:20px;
}
.cta-feature-lines li{
  display:flex;
  gap:12px;
  align-items:center;
  margin-bottom:12px;
  font-size:14px;
  color:var(--title-color);
}
.cta-feature-lines li span{
  width:28px;height:28px;
  border-radius:50%;
  background:rgba(34,122,156,.1);
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color:var(--brand-primary);
  font-size:14px;
  flex-shrink:0;
}
.register-action-panel{
  background:var(--card-bg);
  border-radius:18px;
  padding:32px;
  border:1px solid var(--line-color);
  box-shadow:0 10px 30px rgba(15,60,80,.1);
}
.register-action-panel .form-title{
  font-size:20px;font-weight:700;
  color:var(--title-color);margin-bottom:6px;
}
.form-desc{font-size:14px;color:var(--muted-color);margin-bottom:24px}
.form-input{
  font-family:inherit;
  height:48px;
  border-radius:10px;
  border:1.5px solid var(--line-color);
  background:#FAFCFD;
  font-size:15px;
  color:var(--title-color);
  padding:0 14px;
  width:100%;
  margin-bottom:14px;
  transition:all .25s;
  box-shadow:none;
  box-sizing:border-box;
}
.form-input:focus{
  outline:none;
  border-color:var(--brand-primary);
  background:#fff;
  box-shadow:0 0 0 3px rgba(34,122,156,.12);
}
.form-input::placeholder{color:#9DB6C3}
.form-select{
  appearance:none;
  background-image:url("data:image/svg+xml;charset=UTF-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' fill='%23227A9C' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
  background-repeat:no-repeat;
  background-position:right 16px center;
  padding-right:38px;
}
.form-submit-btn{
  width:100%;
  height:48px;
  border:none;
  background:var(--cta-bg);
  color:#fff;
  font-size:15px;
  font-weight:600;
  border-radius:10px;
  cursor:pointer;
  box-shadow:0 8px 18px rgba(234,149,64,.2);
  transition:all .25s;
}
.form-submit-btn:hover{background:var(--cta-dark);transform:translateY(-2px)}
.form-privacy-note{
  font-size:12px;
  color:var(--muted-color);
  text-align:center;
  margin-top:14px;
  line-height:1.6;
}
@media (max-width: 1024px){
  .cta-banner{grid-template-columns:1fr;padding:36px 28px}
  .register-action-panel{margin-top:10px}
}
@media (max-width: 640px){
  .cta-banner-section{padding:46px 0 56px}
  .cta-banner{padding:26px 18px;border-radius:16px}
  .cta-banner .cta-brand-title{font-size:20px}
  .register-action-panel{padding:22px 18px}
}

/* ===== 页脚 ===== */
.site-footer{
  background:var(--title-color);
  color:#c6d5dc;
  padding:70px 0 24px;
  margin-top:20px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.4fr .8fr;
  gap:50px;
  margin-bottom:40px;
}
.footer-brand-title{
  font-size:22px;
  font-weight:700;
  color:#fff;
  margin-bottom:14px;
  line-height:1.4;
}
.footer-desc{font-size:14px;line-height:1.9;color:#94aebb;max-width:540px;margin-bottom:16px}
.footer-nav-head{
  font-size:15px;
  color:#fff;
  font-weight:600;
  margin-bottom:18px;
  padding-bottom:8px;
  border-bottom:1px solid rgba(255,255,255,.08);
}
.footer-link-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.footer-link-list a{
  color:#94aebb;
  font-size:14px;
  transition:all .25s;
  display:inline-flex;
  align-items:center;
  gap:6px;
}
.footer-link-list a i{font-size:12px;color:rgba(34,122,156,.6)}
.footer-link-list a:hover{color:#fff;padding-left:4px}
.footer-link-list a:hover i{color:var(--cta-bg)}
.footer-note{
  background:rgba(255,255,255,.04);
  border-left:3px solid var(--cta-bg);
  padding:10px 16px;
  font-size:13px;
  color:#94aebb;
}
.footer-note i{color:var(--cta-bg)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.08);
  padding-top:28px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:10px;
  font-size:13px;
  color:#7997a7;
}
.footer-bottom span{font-size:13px}
@media (max-width: 800px){
  .site-footer{padding-top:48px}
  .footer-grid{grid-template-columns:1fr;gap:28px}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}

/* ===== 赛事观赏 / 活动指引区 ===== */
.guide-banner-inner{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  align-items:center;
  background:var(--panel-bg);
  border:1px solid var(--line-color);
  border-radius:var(--radius-lg);
  overflow:hidden;
  margin-top:36px;
}
.guide-media{min-height:260px;background-color:#c7d7e4;background-size:cover;width:100%}
.guide-media img{width:100%;height:100%;object-fit:cover}
.guide-content{padding:30px 30px 30px 0}
.guide-content h3{font-size:22px;color:var(--title-color);font-weight:700;margin-bottom:12px;line-height:1.5}
.guide-point-list{list-style:none;margin-top:14px}
.guide-point-list li{
  font-size:15px;color:var(--text-color);
  padding:7px 0 7px 0;
  display:flex;
  align-items:flex-start;
  gap:10px;
  line-height:1.7;
}
.guide-point-list li i{color:var(--cta-bg);font-size:15px;margin-top:6px;width:18px;text-align:center}
@media (max-width: 820px){
  .guide-banner-inner{grid-template-columns:1fr}
  .guide-media{min-height:180px}
  .guide-content{padding:20px}
}

/* ===== 移动菜单 ===== */
.mobile-drawer{
  display:none;
  position:fixed;
  top:0;right:0;bottom:0;
  width:320px;
  max-width:90%;
  background:var(--card-bg);
  box-shadow:-10px 0 36px rgba(15,60,80,.16);
  z-index:1000;
  padding:38px 28px 28px;
  border-radius:20px 0 0 20px;
  overflow-y:auto;
}
.mobile-drawer.open{display:block}
.mobile-drawer-head{
  display:flex;
  flex-direction:column;
  margin-bottom:28px;
}
.drawer-close{
  position:absolute;
  top:20px;
  right:20px;
  width:40px;
  height:40px;
  border-radius:50%;
  border:1px solid var(--line-color);
  background:var(--card-bg);
  color:var(--brand-primary);
  font-size:18px;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:all .25s;
}
.drawer-close:hover{background:var(--panel-bg)}
.mobile-drawer-nav{display:flex;flex-direction:column;gap:6px}
.mobile-drawer-nav .drawer-link{
  display:flex;
  align-items:center;
  gap:10px;
  padding:14px 16px;
  border-radius:var(--radius-sm);
  color:var(--title-color);
  font-size:15px;
  font-weight:500;
  transition:all .25s;
  border:1px solid transparent;
}
.mobile-drawer-nav .drawer-link:hover{
  background:var(--panel-bg);
  border-color:var(--line-color);
}
.mobile-drawer-nav .drawer-link.is-active{
  background:rgba(34,122,156,.08);
  border-color:rgba(34,122,156,.18);
  color:var(--brand-dark);
}
.drawer-cta{margin-top:24px}
@media (max-width: 1024px){
  .nav-burger{display:flex}
}
.mobile-overlay{
  display:none;
  position:fixed;
  inset:0;
  background:rgba(24,50,71,.42);
  z-index:999;
}
.mobile-overlay.show{display:block}

/* roulang page: category1 */
:root {
      --page-bg: #EEF5F8;
      --panel-bg: #FFFFFF;
      --panel-soft: #F5F9FB;
      --brand: #227A9C;
      --brand-deep: #175E7B;
      --accent: #EA9540;
      --accent-deep: #D17B28;
      --title-color: #183247;
      --text-color: #445E70;
      --muted-color: #7A90A0;
      --line-color: #DCE8EE;
      --shadow-sm: 0 6px 20px rgba(15, 60, 80, 0.08);
      --shadow-md: 0 14px 34px rgba(15, 60, 80, 0.14);
      --radius-lg: 14px;
      --radius-md: 12px;
      --radius-sm: 10px;
      --font-sans: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, "Segoe UI", sans-serif;
    }

    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      background: var(--page-bg);
      font-family: var(--font-sans);
      color: var(--text-color);
      font-size: 16px;
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
    }

    ul,
    ol {
      list-style: none;
    }

    a {
      color: var(--brand);
      text-decoration: none;
      transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    a:hover,
    a:focus {
      color: var(--brand-deep);
    }

    img {
      display: block;
      max-width: 100%;
    }

    button,
    input,
    select,
    textarea {
      font-family: inherit;
    }

    h1,
    h2,
    h3,
    h4 {
      color: var(--title-color);
      line-height: 1.25;
      font-weight: 700;
    }

    h2 {
      font-size: 30px;
      letter-spacing: -0.02em;
    }

    h3 {
      font-size: 18px;
    }

    p {
      margin-bottom: 14px;
    }

    :focus-visible {
      outline: 2px solid var(--brand);
      outline-offset: 3px;
      border-radius: 6px;
    }

    ::selection {
      background: rgba(34, 122, 156, 0.18);
    }

    .grid-container {
      max-width: 1260px !important;
      padding-left: 20px !important;
      padding-right: 20px !important;
    }

    .section {
      padding: 88px 0;
    }

    .section-white {
      background: #FFFFFF;
    }

    .section-soft {
      background: var(--panel-soft);
    }

    .section-head {
      max-width: 760px;
      margin-bottom: 36px;
    }

    .section-head-center {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .section-head p {
      font-size: 16px;
      color: var(--text-color);
      margin-top: 8px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--brand);
      letter-spacing: 0.06em;
    }

    .eyebrow::before {
      content: "";
      width: 24px;
      height: 2px;
      border-radius: 999px;
      background: var(--accent);
      display: inline-block;
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 80;
      padding: 16px 0 0;
    }

    .header-navbar {
      display: flex;
      align-items: center;
      gap: 14px;
      background: rgba(255, 255, 255, 0.96);
      border: 1px solid var(--line-color);
      border-radius: 18px;
      box-shadow: var(--shadow-sm);
      padding: 10px 14px;
      backdrop-filter: none;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      min-width: 0;
      flex-shrink: 0;
    }

    .brand-mark {
      width: 38px;
      height: 38px;
      flex: 0 0 38px;
      border-radius: 10px;
      background: linear-gradient(145deg, #2C8FB4, var(--brand));
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      box-shadow: 0 6px 14px rgba(34, 122, 156, 0.22);
    }

    .brand-text {
      color: var(--title-color);
      font-weight: 700;
      font-size: 17px;
      white-space: nowrap;
      letter-spacing: -0.01em;
    }

    .nav-center {
      display: flex;
      align-items: center;
      gap: 8px;
      margin-left: auto;
      scrollbar-width: none;
    }

    .nav-center::-webkit-scrollbar {
      display: none;
    }

    .nav-pill {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      white-space: nowrap;
      padding: 9px 12px;
      border-radius: 11px;
      background: #F1F7FA;
      border: 1px solid transparent;
      color: #426074;
      font-size: 13px;
      font-weight: 500;
      transition: all 0.22s ease;
    }

    .nav-pill:hover {
      background: #E4F0F5;
      color: var(--brand-deep);
      transform: translateY(-2px);
    }

    .nav-pill.is-active {
      background: #FFFFFF;
      border-color: rgba(34, 122, 156, 0.28);
      color: var(--brand-deep);
      box-shadow: inset 0 -3px 0 var(--brand);
      font-weight: 600;
    }

    .header-cta {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      margin-left: 2px;
      flex-shrink: 0;
      padding: 10px 18px;
      border-radius: 999px;
      background: var(--accent);
      color: #fff;
      font-size: 14px;
      font-weight: 600;
      border: 1px solid var(--accent);
      transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    .header-cta:hover {
      background: var(--accent-deep);
      color: #fff;
      box-shadow: 0 8px 18px rgba(234, 149, 64, 0.28);
      transform: translateY(-2px);
    }

    .category-hero {
      padding: 28px 0 10px;
    }

    .hero-card {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      background-color: #fff;
      background-image: linear-gradient(105deg, rgba(255, 255, 255, 0.97) 8%, rgba(255, 255, 255, 0.93) 55%, rgba(235, 246, 250, 0.86) 100%), url('/assets/images/backpic/back-1.png');
      background-size: cover;
      background-position: center;
      border: 1px solid var(--line-color);
      box-shadow: var(--shadow-sm);
      display: grid;
      grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
      min-height: 430px;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      padding: 52px 24px 50px 54px;
      display: flex;
      flex-direction: column;
      justify-content: center;
    }

    .breadcrumb {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 8px;
      margin-bottom: 18px;
      color: var(--muted-color);
      font-size: 14px;
    }

    .breadcrumb a {
      color: var(--muted-color);
    }

    .breadcrumb a:hover {
      color: var(--brand);
    }

    .breadcrumb .sep {
      color: #B4C8D4;
    }

    .hero-tagline {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      align-self: flex-start;
      background: rgba(34, 122, 156, 0.08);
      border: 1px solid rgba(34, 122, 156, 0.12);
      color: var(--brand-deep);
      font-size: 13px;
      font-weight: 600;
      border-radius: 999px;
      padding: 5px 13px;
      margin-bottom: 16px;
    }

    .hero-title {
      font-size: clamp(34px, 4vw, 44px);
      line-height: 1.2;
      letter-spacing: -0.03em;
      margin-bottom: 18px;
      max-width: 620px;
    }

    .hero-lead {
      max-width: 600px;
      font-size: 17px;
      color: var(--text-color);
      line-height: 1.9;
      margin-bottom: 24px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      font-size: 14px;
      font-weight: 600;
      padding: 13px 22px;
      line-height: 1;
      border: 1px solid transparent;
      transition: all 0.25s ease;
      cursor: pointer;
    }

    .btn-orange {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      box-shadow: 0 8px 20px rgba(234, 149, 64, 0.26);
    }

    .btn-orange:hover {
      background: var(--accent-deep);
      border-color: var(--accent-deep);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(209, 123, 40, 0.26);
    }

    .btn-outline {
      background: rgba(255, 255, 255, 0.7);
      border-color: rgba(34, 122, 156, 0.55);
      color: var(--brand-deep);
    }

    .btn-outline:hover {
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
      transform: translateY(-2px);
    }

    .hero-note {
      margin-top: 30px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(255, 255, 255, 0.78);
      border: 1px solid var(--line-color);
      border-radius: 10px;
      padding: 8px 12px;
      font-size: 13px;
      color: var(--muted-color);
    }

    .hero-note i {
      color: var(--brand);
    }

    .hero-media {
      padding: 44px 42px 44px 0;
      display: flex;
      align-items: center;
      position: relative;
      z-index: 1;
    }

    .hero-figure {
      width: 100%;
      overflow: hidden;
      background: linear-gradient(145deg, #D6E9F0, #EEF6F9);
      border: 7px solid rgba(255, 255, 255, 0.92);
      border-radius: 18px;
      min-height: 250px;
      box-shadow: var(--shadow-md);
      position: relative;
    }

    .hero-figure img {
      width: 100%;
      height: 100%;
      min-height: 250px;
      object-fit: cover;
      display: block;
    }

    .hero-badge {
      position: absolute;
      right: -14px;
      bottom: 26px;
      background: #fff;
      border: 1px solid var(--line-color);
      box-shadow: var(--shadow-md);
      border-radius: 12px;
      padding: 12px 16px;
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-size: 13px;
      color: var(--title-color);
      font-weight: 600;
    }

    .hero-badge i {
      color: var(--accent);
    }

    .grid-cards {
      margin-top: 8px;
    }

    .grid-cards .cell {
      margin-bottom: 20px;
    }

    .card-tile {
      background: #fff;
      border: 1px solid var(--line-color);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      padding: 26px 22px;
      height: 100%;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    .card-tile:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: rgba(34, 122, 156, 0.25);
    }

    .tile-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: #EAF3F7;
      color: var(--brand);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      margin-bottom: 16px;
    }

    .card-tile h3 {
      font-size: 18px;
      margin-bottom: 8px;
      color: var(--title-color);
    }

    .card-tile p {
      font-size: 14px;
      line-height: 1.75;
      color: var(--text-color);
      margin-bottom: 16px;
    }

    .card-link {
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      font-size: 14px;
      font-weight: 600;
      color: var(--brand);
      transition: gap 0.2s ease;
    }

    .card-link:hover {
      color: var(--accent-deep);
      gap: 11px;
    }

    .feature-split {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
      gap: 56px;
      align-items: center;
    }

    .feature-media {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      background: linear-gradient(145deg, #DCEAF0, #F4F9FB);
      box-shadow: var(--shadow-md);
      min-height: 320px;
    }

    .feature-media img {
      width: 100%;
      height: 100%;
      min-height: 320px;
      object-fit: cover;
    }

    .media-float {
      position: absolute;
      left: -16px;
      bottom: 24px;
      background: #fff;
      border: 1px solid var(--line-color);
      border-radius: 13px;
      box-shadow: var(--shadow-md);
      padding: 14px 16px;
      display: flex;
      align-items: center;
      gap: 10px;
      max-width: 80%;
    }

    .media-float i {
      width: 34px;
      height: 34px;
      border-radius: 9px;
      background: #FFF3E4;
      color: var(--accent);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
    }

    .media-float span {
      font-size: 13px;
      color: var(--title-color);
      font-weight: 600;
      line-height: 1.4;
    }

    .check-list {
      margin-top: 10px;
    }

    .check-list li {
      display: flex;
      gap: 14px;
      padding: 17px 18px;
      border: 1px solid var(--line-color);
      border-radius: 14px;
      background: #FBFDFE;
      margin-bottom: 12px;
      transition: border-color 0.25s ease, background 0.25s ease;
    }

    .check-list li:hover {
      border-color: rgba(34, 122, 156, 0.24);
      background: #fff;
    }

    .check-list .li-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      flex: 0 0 40px;
      background: #E4F0F5;
      color: var(--brand-deep);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
    }

    .check-list h3 {
      font-size: 17px;
      margin-bottom: 2px;
    }

    .check-list p {
      margin-bottom: 0;
      font-size: 14px;
      line-height: 1.7;
    }

    .timeline-wrap {
      position: relative;
      padding-left: 26px;
      max-width: 760px;
      margin-top: 18px;
    }

    .timeline-wrap::before {
      content: "";
      position: absolute;
      left: 8px;
      top: 8px;
      bottom: 10px;
      width: 2px;
      background: #D5E4EC;
      border-radius: 999px;
    }

    .timeline-card {
      position: relative;
      background: #fff;
      border: 1px solid var(--line-color);
      border-radius: 14px;
      box-shadow: var(--shadow-sm);
      padding: 22px 24px;
      margin-bottom: 20px;
    }

    .timeline-card::before {
      content: "";
      position: absolute;
      left: -24px;
      top: 27px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #fff;
      border: 3px solid var(--brand);
    }

    .time-chip {
      display: inline-flex;
      align-items: center;
      gap: 7px;
      background: var(--panel-soft);
      border-radius: 999px;
      padding: 4px 12px;
      font-size: 12px;
      font-weight: 600;
      color: var(--brand-deep);
      margin-bottom: 10px;
    }

    .timeline-card h3 {
      font-size: 18px;
      margin-bottom: 5px;
    }

    .timeline-card p {
      margin-bottom: 0;
      font-size: 15px;
      color: var(--text-color);
    }

    .step-wrap {
      margin-top: 22px;
    }

    .step-item {
      background: #fff;
      border: 1px solid var(--line-color);
      border-radius: 16px;
      padding: 26px 20px;
      text-align: center;
      height: 100%;
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .step-item:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .step-num {
      width: 38px;
      height: 38px;
      margin: 0 auto 14px;
      background: var(--brand);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 14px;
    }

    .step-item h3 {
      font-size: 16px;
      margin-bottom: 6px;
    }

    .step-item p {
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 0;
    }

    .verify-grid {
      margin-top: 10px;
    }

    .verify-card {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      background: #fff;
      border: 1px solid var(--line-color);
      border-radius: var(--radius-lg);
      padding: 20px 22px;
      height: 100%;
      box-shadow: var(--shadow-sm);
    }

    .verify-icon {
      width: 44px;
      height: 44px;
      border-radius: 11px;
      background: #EAF3F7;
      color: var(--brand);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 19px;
      flex: 0 0 44px;
    }

    .verify-card h3 {
      font-size: 17px;
      margin-bottom: 4px;
    }

    .verify-card p {
      font-size: 14px;
      line-height: 1.7;
      margin-bottom: 0;
    }

    .site-accordion {
      max-width: 920px;
      margin: 22px auto 0;
    }

    .accordion-card {
      background: #fff;
      border: 1px solid var(--line-color) !important;
      border-radius: 14px !important;
      margin-bottom: 14px;
      box-shadow: var(--shadow-sm);
      overflow: hidden;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .accordion-card.is-active {
      border-color: rgba(34, 122, 156, 0.25) !important;
      box-shadow: 0 8px 20px rgba(34, 122, 156, 0.1);
    }

    .accordion-card .accordion-title {
      background: transparent !important;
      border-bottom: 0 !important;
      color: var(--title-color) !important;
      font-size: 16px !important;
      font-weight: 600 !important;
      padding: 18px 20px !important;
      display: flex;
      align-items: center;
      gap: 4px;
      transition: background 0.25s ease;
    }

    .accordion-card .accordion-title:hover {
      background: #F7FBFD !important;
    }

    .accordion-card .accordion-title::before {
      display: none !important;
    }

    .accordion-card .accordion-title i {
      width: 28px;
      height: 28px;
      border-radius: 9px;
      background: #EAF3F7;
      color: var(--brand);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 14px;
      margin-right: 8px;
      flex: 0 0 28px;
    }

    .accordion-card .accordion-content {
      border-bottom: 0 !important;
      background: #FBFDFE;
      color: var(--text-color);
      font-size: 15px;
      line-height: 1.85;
      padding: 0 22px 18px 52px !important;
    }

    .cta-section {
      padding-bottom: 70px;
    }

    .cta-panel {
      position: relative;
      border-radius: 22px;
      overflow: hidden;
      background-image: linear-gradient(100deg, rgba(255,255,255,0.98) 20%, rgba(242,248,251,0.94) 60%, rgba(229,241,247,0.92) 100%), url('/assets/images/backpic/back-2.png');
      background-size: cover;
      background-position: center;
      border: 1px solid var(--line-color);
      box-shadow: var(--shadow-sm);
      padding: 46px 50px;
    }

    .cta-flex {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 24px;
    }

    .cta-info {
      max-width: 620px;
    }

    .cta-info h2 {
      font-size: 28px;
      margin-bottom: 8px;
    }

    .cta-info p {
      margin-bottom: 0;
      color: var(--text-color);
      font-size: 16px;
    }

    .cta-buttons {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      align-items: center;
    }

    .site-footer {
      background: #162B38;
      color: #B6C8D2;
      padding: 54px 0 28px;
      margin-top: 24px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.6fr) minmax(220px, 0.6fr) minmax(220px, 0.6fr);
      gap: 48px;
      padding-bottom: 30px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .footer-brand-title {
      color: #fff;
      font-size: 19px;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .footer-desc {
      color: #9AB0BD;
      font-size: 14px;
      line-height: 1.8;
      margin-bottom: 12px;
    }

    .footer-note {
      display: flex;
      gap: 9px;
      align-items: center;
      font-size: 13px;
      color: #7EA0AF;
    }

    .footer-nav-head {
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 14px;
    }

    .footer-link-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .footer-link-list a {
      color: #B6C8D2;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 14px;
    }

    .footer-link-list a:hover {
      color: #fff;
    }

    .footer-link-list a i {
      color: #628DA1;
      font-size: 12px;
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
      padding-top: 24px;
      font-size: 13px;
      color: #7595A5;
    }

    @media (max-width: 1199px) {
      .header-navbar {
        flex-wrap: wrap;
      }
      .nav-center {
        order: 3;
        width: 100%;
        margin-left: 0;
        overflow-x: auto;
        justify-content: flex-start;
        padding-top: 4px;
        border-top: 1px solid var(--line-color);
      }
    }

    @media (max-width: 1023px) {
      .section {
        padding: 68px 0;
      }

      .hero-card {
        grid-template-columns: 1fr;
      }

      .hero-copy {
        padding: 46px 40px 34px;
      }

      .hero-media {
        padding: 0 40px 42px;
      }

      .feature-split {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
      }
    }

    @media (max-width: 767px) {
      .section {
        padding: 52px 0;
      }

      .site-header {
        padding-left: 12px;
        padding-right: 12px;
      }

      .header-navbar {
        padding: 10px 12px;
        gap: 10px;
        border-radius: 14px;
      }

      .header-cta {
        display: none;
      }

      .brand-mark {
        width: 34px;
        height: 34px;
        flex-basis: 34px;
        border-radius: 8px;
        font-size: 16px;
      }

      .brand-text {
        font-size: 14px;
      }

      .nav-pill {
        padding: 8px 11px;
        font-size: 12px;
      }

      .category-hero {
        padding-top: 16px;
      }

      .hero-card {
        border-radius: 16px;
      }

      .hero-copy {
        padding: 32px 22px 26px;
      }

      .hero-title {
        font-size: 30px;
      }

      .hero-lead {
        font-size: 16px;
      }

      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-actions .btn {
        justify-content: center;
      }

      .hero-note {
        margin-top: 18px;
      }

      .hero-media {
        padding: 0 20px 28px;
      }

      .hero-figure {
        min-height: 190px;
      }

      .hero-figure img {
        min-height: 190px;
      }

      .hero-badge {
        right: 4px;
        bottom: 10px;
        font-size: 12px;
        padding: 9px 12px;
      }

      h2 {
        font-size: 24px;
      }

      .eyebrow {
        font-size: 12px;
      }

      .section-head {
        margin-bottom: 24px;
      }

      .card-tile {
        padding: 20px 18px;
      }

      .media-float {
        left: 8px;
        font-size: 12px;
      }

      .timeline-wrap {
        padding-left: 18px;
      }

      .timeline-card {
        padding: 16px;
      }

      .timeline-card::before {
        left: -17px;
      }

      .cta-panel {
        padding: 30px 22px;
        border-radius: 16px;
      }

      .cta-buttons .btn {
        width: 100%;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
      }

      .footer-bottom {
        flex-direction: column;
      }

      .accordion-card .accordion-content {
        padding-right: 16px !important;
        padding-left: 16px !important;
      }
    }

    @media (max-width: 520px) {
      .footer-brand-title {
        font-size: 16px;
        line-height: 1.5;
      }

      .hero-actions .btn {
        padding: 13px 16px;
      }

      .hero-note {
        font-size: 12px;
      }

      .feature-split {
        gap: 24px;
      }

      .check-list li {
        padding: 13px;
      }

      .media-float {
        bottom: 10px;
        left: 6px;
        width: calc(100% - 12px);
        max-width: 100%;
      }

      .section-head p {
        font-size: 15px;
      }

      .timeline-card h3 {
        font-size: 16px;
      }
    }

/* roulang page: category3 */
:root {
      --page-bg: #eef5f8;
      --surface: #ffffff;
      --soft-panel: #f5f9fb;
      --brand: #227a9c;
      --brand-dark: #175e7b;
      --accent: #ea9540;
      --accent-dark: #d17b28;
      --title: #183247;
      --text: #445e70;
      --muted: #7a90a0;
      --line: #dce8ee;
      --radius: 16px;
      --radius-sm: 10px;
      --shadow: 0 12px 30px rgba(15, 60, 80, 0.08);
      --shadow-hover: 0 20px 36px rgba(15, 60, 80, 0.14);
      --space: 90px;
    }

    *,
    *:before,
    *:after {
      box-sizing: border-box;
    }

    html,
    body {
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
      font-variant-numeric: tabular-nums;
      background: var(--page-bg);
      color: var(--text);
      font-size: 16px;
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
    }

    .grid-container {
      max-width: 1200px;
      width: 100%;
      margin: 0 auto;
      padding-left: 20px;
      padding-right: 20px;
    }

    h1, h2, h3, h4, .h1, .h2, .h3 {
      font-family: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", sans-serif;
      color: var(--title);
      line-height: 1.3;
      margin-top: 0;
    }

    p {
      margin: 0 0 1rem 0;
    }

    a {
      text-decoration: none;
      transition: all 0.2s ease;
    }

    a, button {
      -webkit-tap-highlight-color: transparent;
    }

    img {
      display: block;
      max-width: 100%;
      height: auto;
    }

    ul,
    ol {
      margin: 0;
      padding: 0;
    }

    input, textarea, select, button {
      font-family: inherit;
    }

    :focus-visible {
      outline: 3px solid rgba(34, 122, 156, 0.4);
      outline-offset: 3px;
    }

    .site-header {
      position: relative;
      z-index: 50;
      padding: 28px 0 6px;
    }

    .header-inner {
      display: flex;
      align-items: center;
      gap: 14px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 18px;
      box-shadow: var(--shadow);
      padding: 13px 16px 13px 20px;
    }

    .brand-lock {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--title);
      font-size: 16px;
      font-weight: 700;
      letter-spacing: 0.01em;
      line-height: 1.4;
      min-width: max-content;
    }

    .brand-lock .brand-icon {
      width: 36px;
      height: 36px;
      flex: 0 0 36px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 10px;
      background: linear-gradient(135deg, #2a8bac, var(--brand-dark));
      color: #fff;
      font-size: 17px;
      box-shadow: 0 6px 14px rgba(23, 94, 123, 0.18);
    }

    .brand-lock:hover {
      color: var(--brand-dark);
    }

    .nav-center {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex: 1;
      margin: 0;
    }

    .nav-pill {
      display: inline-flex;
      align-items: center;
      gap: 5px;
      background: #e6f0f4;
      border: 1px solid transparent;
      color: var(--text);
      border-radius: 12px;
      padding: 9px 12px;
      font-size: 13px;
      font-weight: 500;
      line-height: 1.2;
      white-space: nowrap;
    }

    .nav-pill i {
      color: var(--brand);
      font-size: 15px;
    }

    .nav-pill:hover {
      background: #f1f8fa;
      color: var(--brand-dark);
      border-color: #cfe0e8;
      transform: translateY(-1px);
    }

    .nav-pill.is-active {
      background: #fff;
      border-color: var(--line);
      color: var(--title);
      box-shadow: inset 0 -3px 0 var(--brand), 0 4px 12px rgba(15, 60, 80, 0.06);
    }

    .nav-pill.is-active i {
      color: var(--brand-dark);
    }

    .header-help-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      background: var(--soft-panel);
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--brand-dark);
      font-size: 13px;
      font-weight: 600;
      padding: 9px 16px;
      margin-left: auto;
    }

    .header-help-btn:hover {
      background: #eef6f9;
      color: var(--brand-dark);
      border-color: #b5d3df;
    }

    .page-hero-wrap {
      padding-top: 22px;
      padding-bottom: 10px;
    }

    .page-hero {
      position: relative;
      border-radius: 24px;
      background:
        linear-gradient(120deg, rgba(249, 252, 253, 0.98) 0%, rgba(238, 245, 248, 0.92) 52%, rgba(225, 239, 245, 0.78) 100%),
        url("/assets/images/backpic/back-1.png") center / cover no-repeat;
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      padding: 46px 44px 42px;
      overflow: hidden;
    }

    .breadcrumb-line {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 22px;
      flex-wrap: wrap;
    }

    .breadcrumb-line a {
      color: var(--brand);
    }

    .breadcrumb-line a:hover {
      color: var(--brand-dark);
    }

    .breadcrumb-line i {
      font-size: 10px;
      color: #b4cbd5;
    }

    .hero-grid {
      display: flex;
      align-items: center;
      gap: 42px;
    }

    .hero-copy {
      flex: 1 1 58%;
    }

    .hero-h1 {
      font-size: clamp(32px, 4.4vw, 43px);
      font-weight: 700;
      line-height: 1.22;
      color: var(--title);
      max-width: 660px;
      letter-spacing: 0.01em;
    }

    .hero-sub {
      margin-top: 22px;
      max-width: 560px;
      font-size: 16px;
      color: var(--text);
      line-height: 1.9;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .btn-orange,
    .btn-blue,
    .btn-outline,
    .btn-dark {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border-radius: 999px;
      font-size: 14px;
      line-height: 1.2;
      padding: 13px 22px;
      font-weight: 600;
      border: 1px solid transparent;
      cursor: pointer;
      transition: all 0.22s ease;
      white-space: nowrap;
    }

    .btn-orange {
      background: var(--accent);
      border-color: var(--accent);
      color: #fff;
      box-shadow: 0 10px 18px rgba(234, 149, 64, 0.24);
    }

    .btn-orange:hover {
      background: var(--accent-dark);
      border-color: var(--accent-dark);
      transform: translateY(-2px);
      box-shadow: 0 14px 26px rgba(209, 123, 40, 0.28);
      color: #fff;
    }

    .btn-blue {
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
      box-shadow: 0 10px 18px rgba(34, 122, 156, 0.22);
    }

    .btn-blue:hover {
      background: var(--brand-dark);
      border-color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 14px 24px rgba(23, 94, 123, 0.26);
      color: #fff;
    }

    .btn-outline {
      background: #fff;
      border-color: #b8ceda;
      color: var(--brand-dark);
    }

    .btn-outline:hover {
      background: var(--surface);
      border-color: var(--brand);
      color: var(--brand-dark);
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(15, 60, 80, 0.08);
    }

    .btn-dark {
      background: var(--title);
      color: #fff;
    }

    .btn-dark:hover {
      background: var(--brand-dark);
      transform: translateY(-2px);
    }

    .hero-visual {
      flex: 0 0 36%;
      min-width: 300px;
      position: relative;
    }

    .hero-cover {
      border-radius: 16px;
      border: 8px solid rgba(255, 255, 255, 0.78);
      box-shadow: 0 24px 44px rgba(15, 60, 80, 0.2);
      overflow: hidden;
      background: #dcebf2;
    }

    .hero-cover img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .mini-service-badge {
      position: absolute;
      right: -12px;
      bottom: 24px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 14px;
      box-shadow: var(--shadow);
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 11px 16px;
      font-size: 13px;
      font-weight: 600;
      color: var(--title);
    }

    .mini-service-badge i {
      color: var(--accent);
      font-size: 17px;
    }

    .site-section {
      padding: var(--space) 0;
    }

    .site-section.bg-soft {
      background: var(--soft-panel);
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .section-head {
      max-width: 720px;
      margin-bottom: 38px;
    }

    .section-head.centered {
      margin-left: auto;
      margin-right: auto;
      text-align: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--brand);
      font-weight: 600;
      letter-spacing: 0.08em;
      margin-bottom: 8px;
      background: #e2eef3;
      padding: 5px 12px;
      border-radius: 999px;
    }

    .section-title {
      font-size: clamp(26px, 3.2vw, 32px);
      font-weight: 700;
      color: var(--title);
      margin: 0 0 10px 0;
    }

    .section-sub {
      color: var(--text);
      font-size: 15px;
      line-height: 1.8;
      margin: 0;
    }

    /* 服务入口卡片 */
    .entry-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      box-shadow: var(--shadow);
      padding: 28px 24px 24px;
      height: 100%;
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      overflow: hidden;
    }

    .entry-card::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 3px;
      background: var(--brand);
      opacity: 0;
      transition: opacity 0.2s ease;
    }

    .entry-card:hover {
      transform: translateY(-5px);
      box-shadow: var(--shadow-hover);
    }

    .entry-card:hover::after {
      opacity: 1;
    }

    .entry-icon {
      width: 48px;
      height: 48px;
      border-radius: 13px;
      background: #e4f0f5;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      color: var(--brand-dark);
      font-size: 20px;
      margin-bottom: 18px;
    }

    .entry-card h3 {
      font-size: 19px;
      margin-bottom: 8px;
      color: var(--title);
    }

    .entry-card p {
      font-size: 14px;
      color: var(--text);
      margin-bottom: 0;
      line-height: 1.75;
    }

    .entry-tag {
      display: inline-block;
      margin-top: 16px;
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 999px;
      background: #f5f9fb;
      color: var(--brand);
      border: 1px solid #dce8ee;
    }

    /* 服务流程 */
    .flow-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 34px 22px 26px;
      height: 100%;
      position: relative;
      box-shadow: 0 6px 18px rgba(15, 60, 80, 0.04);
      transition: opacity 0.2s ease, transform 0.2s ease;
    }

    .flow-card:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-hover);
    }

    .flow-step {
      font-size: 14px;
      color: var(--brand);
      font-weight: 700;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 34px;
      height: 30px;
      padding: 0 8px;
      background: #e1eef4;
      border-radius: 999px;
      margin-bottom: 14px;
    }

    .flow-card h3 {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .flow-card p {
      font-size: 14px;
      line-height: 1.75;
      margin-bottom: 0;
    }

    .flow-direction {
      color: #c0d3dd;
      font-size: 18px;
    }

    /* 图文支持区 */
    .channel-panel {
      display: flex;
      align-items: center;
      gap: 44px;
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 22px;
      box-shadow: var(--shadow);
      padding: 28px;
    }

    .channel-copy {
      flex: 1 1 52%;
    }

    .channel-copy h3 {
      font-size: 20px;
      margin-bottom: 10px;
    }

    .channel-copy p {
      color: var(--text);
      font-size: 15px;
      line-height: 1.8;
      margin-bottom: 20px;
    }

    .check-list {
      list-style: none;
      margin: 0 0 20px 0;
    }

    .check-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      padding: 9px 0;
      border-bottom: 1px dashed var(--line);
      font-size: 14px;
      color: var(--text);
    }

    .check-list li:last-child {
      border-bottom: none;
    }

    .check-list i {
      color: var(--brand);
      margin-top: 5px;
      font-size: 13px;
    }

    .channel-image {
      flex: 0 0 44%;
      position: relative;
      min-width: 0;
      border-radius: 16px;
      overflow: hidden;
      border: 8px solid var(--soft-panel);
      box-shadow: 0 18px 36px rgba(15, 60, 80, 0.1);
    }

    .channel-image img {
      width: 100%;
      height: 100%;
      aspect-ratio: 5 / 4;
      object-fit: cover;
      background: #dcebf2;
    }

    .channel-image-badge {
      position: absolute;
      left: 14px;
      bottom: 14px;
      background: rgba(255, 255, 255, 0.92);
      color: var(--title);
      border-radius: 999px;
      border: 1px solid var(--line);
      padding: 6px 12px;
      font-size: 13px;
      font-weight: 600;
      box-shadow: 0 8px 20px rgba(15, 60, 80, 0.1);
    }

    /* 提示卡片 */
    .notice-card {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: var(--radius);
      padding: 26px 24px;
      height: 100%;
      box-shadow: 0 6px 18px rgba(15, 60, 80, 0.04);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .notice-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-hover);
    }

    .notice-head {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .notice-head i {
      width: 34px;
      height: 34px;
      flex: 0 0 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: #e2eff4;
      color: var(--brand-dark);
      border-radius: 10px;
      font-size: 15px;
    }

    .notice-head h3 {
      font-size: 17px;
      margin: 0;
    }

    .notice-card p {
      font-size: 14px;
      color: var(--text);
      margin-bottom: 0;
      line-height: 1.75;
    }

    /* FAQ */
    .faq-accordion {
      max-width: 900px;
      margin: 0 auto;
      list-style: none;
      background: transparent;
      border: 0;
    }

    .faq-accordion .accordion-item {
      background: var(--surface);
      border: 1px solid var(--line);
      border-radius: 15px;
      box-shadow: 0 8px 18px rgba(15, 60, 80, 0.05);
      margin-bottom: 14px;
      overflow: hidden;
      transition: box-shadow 0.2s ease, transform 0.2s ease;
    }

    .faq-accordion .accordion-item:hover {
      box-shadow: var(--shadow-hover);
    }

    .faq-accordion .accordion-title {
      display: flex;
      align-items: center;
      gap: 12px;
      background: var(--surface);
      color: var(--title);
      border: 0;
      padding: 18px 22px;
      line-height: 1.5;
      font-size: 15px;
      font-weight: 600;
      position: relative;
      width: 100%;
    }

    .faq-accordion .accordion-title:before {
      content: none;
    }

    .faq-accordion .accordion-title:hover {
      background: #f6fafb;
      color: var(--title);
    }

    .faq-q-mark {
      width: 28px;
      height: 28px;
      flex: 0 0 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 8px;
      background: #e2f0f5;
      color: var(--brand-dark);
      font-size: 13px;
      font-weight: 700;
    }

    .faq-title-text {
      flex: 1;
    }

    .faq-arrow {
      color: #9ab5c2;
      font-size: 14px;
      transition: transform 0.2s ease;
    }

    .faq-accordion .accordion-item.is-active .faq-arrow {
      transform: rotate(180deg);
    }

    .faq-accordion .accordion-content {
      background: #f7fbfc;
      border-top: 1px dashed var(--line);
      color: var(--text);
      padding: 8px 24px 22px 62px;
      font-size: 14px;
      line-height: 1.8;
    }

    .faq-accordion .accordion-content p {
      margin: 6px 0;
    }

    /* CTA */
    .cta-outer {
      padding-bottom: 92px;
    }

    .cta-card {
      background:
        linear-gradient(115deg, rgba(255, 255, 255, 0.98) 30%, rgba(238, 245, 248, 0.84) 60%, rgba(229, 240, 245, 0.65) 100%),
        url("/assets/images/backpic/back-2.png") center / cover;
      border: 1px solid var(--line);
      border-radius: 24px;
      box-shadow: var(--shadow);
      padding: 44px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 32px;
    }

    .cta-card h2 {
      font-size: 28px;
      margin-bottom: 10px;
    }

    .cta-card p {
      max-width: 520px;
      font-size: 15px;
      color: var(--text);
      margin: 0;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      justify-content: flex-end;
    }

    /* Footer */
    .site-footer {
      background: #102b36;
      color: #a9c3cf;
      padding: 74px 0 26px;
      border-top: 1px solid rgba(255, 255, 255, 0.06);
    }

    .site-footer .grid-container {
      max-width: 1200px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.5fr 1fr;
      gap: 56px;
      margin-bottom: 38px;
    }

    .footer-brand-title {
      font-size: 20px;
      font-weight: 700;
      color: #fff;
      margin-bottom: 10px;
      letter-spacing: 0.01em;
    }

    .footer-desc {
      color: #a9c3cf;
      font-size: 14px;
      max-width: 520px;
      line-height: 1.8;
      margin-bottom: 14px;
    }

    .footer-note {
      margin-bottom: 12px;
    }

    .footer-note i {
      color: var(--accent);
    }

    .footer-nav-head {
      color: #fff;
      font-size: 15px;
      font-weight: 600;
      margin-bottom: 18px;
    }

    .footer-link-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 8px 20px;
    }

    .footer-link-list a {
      color: #a9c3cf;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .footer-link-list a i {
      font-size: 10px;
      color: var(--brand);
      margin-top: 2px;
    }

    .footer-link-list a:hover {
      color: #fff;
      i {
        color: var(--accent);
      }
    }

    .footer-bottom {
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      padding-top: 22px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      flex-wrap: wrap;
      font-size: 13px;
      color: #8ba5b1;
    }

    @media screen and (max-width: 1023px) {
      :root {
        --space: 64px;
      }

      .header-inner {
        flex-wrap: wrap;
        padding: 12px;
      }

      .brand-lock {
        font-size: 15px;
        width: calc(100% - 110px);
      }

      .brand-lock .brand-icon {
        width: 32px;
        flex: 0 0 32px;
        height: 32px;
        font-size: 15px;
      }

      .header-help-btn {
        margin-left: auto;
        padding: 8px 13px;
        font-size: 13px;
      }

      .nav-center {
        order: 5;
        width: 100%;
        flex: 0 0 100%;
        justify-content: flex-start;
        overflow-x: auto;
        gap: 6px;
        margin-top: 8px;
        padding-bottom: 2px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: thin;
      }

      .nav-pill {
        flex: 0 0 auto;
        font-size: 12px;
        padding: 8px 11px;
      }

      .page-hero {
        padding: 38px 28px;
      }

      .hero-grid {
        gap: 26px;
      }

      .hero-visual {
        flex-basis: 38%;
        min-width: 0;
      }

      .channel-panel {
        flex-direction: column-reverse;
        gap: 20px;
        padding: 18px;
      }

      .channel-copy {
        width: 100%;
      }

      .channel-image {
        width: 100%;
      }
    }

    @media screen and (max-width: 639px) {
      :root {
        --space: 48px;
      }

      .grid-container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .site-header {
        padding-top: 14px;
      }

      .header-inner {
        gap: 8px;
        padding: 10px;
      }

      .brand-lock .brand-icon {
        display: none;
      }

      .brand-lock {
        font-size: 14px;
        width: auto;
        max-width: 168px;
      }

      .header-help-btn {
        gap: 4px;
        padding: 6px 10px;
        font-size: 12px;
      }

      .header-help-btn span {
        display: none;
      }

      .nav-center {
        padding-bottom: 2px;
      }

      .nav-pill {
        padding: 8px 10px;
        font-size: 12px;
      }

      .page-hero-wrap {
        padding-top: 12px;
      }

      .page-hero {
        padding: 32px 20px 28px;
      }

      .breadcrumb-line {
        font-size: 12px;
        margin-bottom: 16px;
      }

      .hero-grid {
        flex-direction: column;
        align-items: flex-start;
        gap: 26px;
      }

      .hero-copy {
        width: 100%;
      }

      .hero-sub {
        font-size: 14px;
        line-height: 1.85;
      }

      .hero-visual {
        width: 100%;
        min-width: 0;
      }

      .hero-cover {
        border-width: 5px;
      }

      .hero-cover img {
        aspect-ratio: 16 / 10;
      }

      .mini-service-badge {
        right: 8px;
        bottom: 14px;
        font-size: 12px;
        padding: 8px 12px;
        border-radius: 11px;
      }

      .section-head {
        margin-bottom: 26px;
      }

      .section-title {
        font-size: 23px;
      }

      .entry-card,
      .notice-card {
        padding: 20px 18px;
      }

      .entry-card h3 {
        font-size: 17px;
      }

      .flow-card {
        padding: 26px 18px 20px;
      }

      .cta-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 28px 20px;
      }

      .cta-card h2 {
        font-size: 23px;
      }

      .cta-actions {
        width: 100%;
        justify-content: flex-start;
      }

      .cta-actions .btn {
        flex: 1 1 auto;
      }

      .faq-accordion .accordion-title {
        padding: 16px 15px;
        font-size: 14px;
        line-height: 1.55;
      }

      .faq-accordion .accordion-content {
        padding: 8px 16px 18px 48px;
        font-size: 13px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: flex-start;
        font-size: 12px;
      }
    }

/* roulang page: category4 */
:root {
      --bg: #EEF5F8;
      --panel: #FFFFFF;
      --panel-soft: #F5F9FB;
      --brand: #227A9C;
      --brand-deep: #175E7B;
      --brand-soft: #E4F0F6;
      --cta: #EA9540;
      --cta-deep: #D17B28;
      --deep: #183247;
      --text: #445E70;
      --muted: #7A90A0;
      --line: #DCE8EE;
      --radius-lg: 18px;
      --radius-md: 14px;
      --radius-sm: 10px;
      --shadow-sm: 0 4px 14px rgba(15, 60, 80, 0.06);
      --shadow-md: 0 10px 30px rgba(15, 60, 80, 0.08);
      --shadow-lg: 0 22px 50px rgba(15, 60, 80, 0.13);
      --font-main: "PingFang SC", "Noto Sans SC", "Microsoft YaHei", system-ui, -apple-system, sans-serif;
    }

    *,
    *::before,
    *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: var(--font-main);
      font-size: 16px;
      line-height: 1.8;
      -webkit-font-smoothing: antialiased;
    }

    h1, h2, h3, h4 {
      color: var(--deep);
      line-height: 1.35;
      font-weight: 700;
    }

    p {
      color: var(--text);
      margin-bottom: 0.9em;
    }

    a {
      color: var(--brand);
      text-decoration: none;
      transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    a:hover {
      color: var(--brand-deep);
    }

    img {
      max-width: 100%;
      display: block;
    }

    ul, ol {
      list-style: none;
      margin: 0;
      padding: 0;
    }

    button,
    input,
    select,
    textarea {
      font: inherit;
    }

    :focus-visible {
      outline: 2px solid var(--brand);
      outline-offset: 3px;
      border-radius: 8px;
    }

    .grid-container {
      max-width: 1200px;
    }

    /* ========== Header / Card Nav ========== */

    .site-header {
      background: var(--bg);
      padding: 18px 0 0;
      position: relative;
      z-index: 60;
    }

    .nav-card {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 12px;
      background: var(--panel);
      border: 1px solid var(--line);
      border-radius: 18px;
      padding: 12px 14px 12px 18px;
      box-shadow: var(--shadow-md);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      color: var(--deep);
      font-weight: 800;
      font-size: 17px;
      margin-right: auto;
      order: 1;
      padding: 4px 0;
      min-width: 0;
    }

    .brand:hover {
      color: var(--brand-deep);
    }

    .brand-icon {
      flex: 0 0 auto;
      width: 34px;
      height: 34px;
      border-radius: 10px;
      background: var(--brand);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      box-shadow: 0 6px 12px rgba(34, 122, 156, 0.25);
    }

    .brand-text {
      letter-spacing: 0.2px;
      line-height: 1.4;
    }

    .nav-center {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: 8px;
      order: 3;
      width: 100%;
      padding: 4px 0 2px;
      overflow-x: auto;
      flex-wrap: nowrap;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .nav-center::-webkit-scrollbar {
      display: none;
    }

    .nav-pill {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      flex: 0 0 auto;
      padding: 8px 12px;
      border-radius: 10px;
      background: var(--panel-soft);
      border: 1px solid transparent;
      color: var(--text);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.2;
      white-space: nowrap;
    }

    .nav-pill i {
      color: var(--brand);
      font-size: 14px;
    }

    .nav-pill:hover {
      background: #fff;
      border-color: #b9d3e0;
      color: var(--brand-deep);
      box-shadow: var(--shadow-sm);
      transform: translateY(-1px);
    }

    .nav-pill.is-active {
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
      box-shadow: 0 8px 18px rgba(34, 122, 156, 0.22);
    }

    .nav-pill.is-active i {
      color: #fff;
    }

    .nav-cta {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      order: 2;
      margin-left: auto;
      border-radius: 999px;
      padding: 9px 15px;
      font-size: 13px;
      font-weight: 700;
      background: var(--cta);
      border: 1px solid var(--cta);
      color: #fff;
      white-space: nowrap;
      line-height: 1.2;
      box-shadow: 0 6px 14px rgba(234, 149, 64, 0.22);
    }

    .nav-cta:hover {
      background: var(--cta-deep);
      border-color: var(--cta-deep);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 10px 22px rgba(209, 123, 40, 0.28);
    }

    @media (min-width: 1024px) {
      .nav-card {
        flex-wrap: nowrap;
        padding: 12px 14px 12px 18px;
      }

      .brand {
        margin-right: 14px;
      }

      .nav-center {
        order: 2;
        width: auto;
        flex: 1 1 auto;
        justify-content: center;
        overflow: visible;
        padding: 0;
      }

      .nav-cta {
        order: 3;
        margin-left: 10px;
      }
    }

    /* ========== Buttons / Badges ========== */

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 24px;
      border-radius: 999px;
      font-size: 15px;
      font-weight: 700;
      line-height: 1.3;
      border: 1px solid transparent;
      transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    }

    .btn svg,
    .btn i {
      font-size: 14px;
    }

    .btn-primary {
      background: var(--cta);
      border-color: var(--cta);
      color: #fff;
      box-shadow: 0 10px 24px rgba(234, 149, 64, 0.24);
    }

    .btn-primary:hover {
      background: var(--cta-deep);
      border-color: var(--cta-deep);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 14px 28px rgba(209, 123, 40, 0.28);
    }

    .btn-ghost {
      background: #fff;
      border-color: #c6dce7;
      color: var(--brand-deep);
    }

    .btn-ghost:hover {
      border-color: var(--brand);
      color: var(--brand);
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(15, 60, 80, 0.1);
    }

    .btn-light {
      background: #fff;
      border-color: #fff;
      color: var(--brand-deep);
    }

    .btn-light:hover {
      background: #f3f8fb;
      border-color: #f3f8fb;
      color: var(--brand-deep);
      transform: translateY(-2px);
      box-shadow: 0 12px 28px rgba(15, 60, 80, 0.18);
    }

    .btn-strong-ghost {
      background: rgba(255, 255, 255, 0.14);
      border-color: rgba(255, 255, 255, 0.8);
      color: #fff;
    }

    .btn-strong-ghost:hover {
      background: #fff;
      border-color: #fff;
      color: var(--brand-deep);
      transform: translateY(-2px);
      box-shadow: 0 12px 24px rgba(15, 60, 80, 0.18);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      border: 1px solid #c9e0eb;
      background: var(--brand-soft);
      color: var(--brand-deep);
      font-size: 12px;
      font-weight: 700;
      line-height: 1;
      border-radius: 999px;
      padding: 7px 13px;
    }

    .section-title {
      font-size: clamp(24px, 3vw, 32px);
      margin: 18px 0 12px;
    }

    .section-desc {
      font-size: 16px;
      max-width: 720px;
      color: var(--text);
    }

    .section-head.is-center {
      text-align: center;
    }

    .section-head.is-center .section-desc {
      margin-left: auto;
      margin-right: auto;
    }

    /* ========== Page Hero ========== */

    .page-hero {
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.93) 0%, rgba(238, 245, 248, 0.96) 100%),
        url('/assets/images/backpic/back-2.png') center / cover no-repeat;
      border-bottom: 1px solid rgba(220, 232, 238, 0.7);
      padding: 56px 0 72px;
      overflow: hidden;
    }

    .hero-inner {
      position: relative;
      z-index: 2;
    }

    .breadcrumbs {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      flex-wrap: wrap;
      font-size: 13px;
      color: var(--muted);
      background: rgba(255, 255, 255, 0.75);
      border: 1px solid var(--line);
      padding: 7px 13px;
      border-radius: 999px;
    }

    .breadcrumbs i {
      font-size: 11px;
      color: #a3b7c3;
    }

    .breadcrumbs a {
      color: var(--text);
    }

    .breadcrumbs a:hover {
      color: var(--brand-deep);
    }

    .breadcrumbs .crumb-current {
      color: var(--brand-deep);
      font-weight: 600;
    }

    .page-hero h1 {
      font-size: clamp(28px, 4vw, 42px);
      max-width: 780px;
      margin: 24px 0 16px;
      letter-spacing: 0.2px;
    }

    .hero-lead {
      font-size: 17px;
      color: var(--text);
      max-width: 720px;
      margin-bottom: 0;
      line-height: 1.9;
    }

    .hero-lead strong {
      color: var(--brand-deep);
      font-weight: 700;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 32px;
    }

    .hero-media {
      position: relative;
    }

    .hero-img-card {
      margin-top: 24px;
      overflow: hidden;
      border-radius: var(--radius-lg);
      border: 1px solid #d5e6ee;
      background: #e0eef4;
      box-shadow: var(--shadow-lg);
    }

    .hero-img-card img {
      width: 100%;
      aspect-ratio: 4 / 3;
      object-fit: cover;
    }

    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      position: absolute;
      left: -10px;
      top: 14px;
      background: #fff;
      border: 1px solid var(--line);
      color: var(--deep);
      font-size: 13px;
      font-weight: 700;
      border-radius: 999px;
      padding: 8px 14px;
      box-shadow: var(--shadow-md);
    }

    .hero-badge i {
      color: var(--cta);
    }

    @media (min-width: 1024px) {
      .page-hero {
        padding: 66px 0 78px;
      }

      .hero-media {
        margin-top: 0;
      }

      .hero-img-card {
        margin-top: 0;
      }

      .hero-badge {
        left: -22px;
        top: 22px;
      }
    }

    /* ========== Sections / Cards ========== */

    .section {
      padding: 84px 0;
    }

    .section-white {
      background: #fff;
      border-top: 1px solid rgba(220, 232, 238, 0.72);
      border-bottom: 1px solid rgba(220, 232, 238, 0.72);
    }

    .section-soft {
      background: var(--panel-soft);
    }

    .card {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      padding: 30px;
    }

    /* Into section */

    .intro-figure {
      position: relative;
      min-height: 340px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #dcecf2;
      border: 1px solid #d3e4ec;
      box-shadow: var(--shadow-md);
      height: 100%;
    }

    .intro-figure img {
      width: 100%;
      height: 100%;
      min-height: 340px;
      object-fit: cover;
      position: absolute;
      inset: 0;
    }

    .intro-figcaption {
      position: absolute;
      left: 16px;
      bottom: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(24, 50, 71, 0.86);
      color: #fff;
      font-size: 13px;
      font-weight: 600;
      border-radius: 999px;
      padding: 9px 15px;
      box-shadow: var(--shadow-md);
      max-width: calc(100% - 32px);
    }

    .intro-figcaption i {
      color: #ffd29a;
    }

    .intro-panel {
      height: 100%;
      background: #fff;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      padding: 36px;
      box-shadow: var(--shadow-sm);
    }

    .intro-panel h2 {
      font-size: clamp(21px, 2.6vw, 28px);
      margin: 18px 0 14px;
    }

    .intro-panel p {
      color: var(--text);
    }

    .tick-list {
      margin-top: 18px;
      display: flex;
      flex-direction: column;
      gap: 14px;
    }

    .tick-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      background: var(--panel-soft);
      border: 1px solid var(--line);
      border-radius: 13px;
      padding: 14px 16px;
      font-size: 15px;
      color: var(--text);
      line-height: 1.7;
    }

    .tick-list li i {
      flex: 0 0 auto;
      width: 24px;
      height: 24px;
      margin-top: 2px;
      border-radius: 50%;
      background: var(--brand);
      color: #fff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 11px;
    }

    .tick-list strong {
      color: var(--deep);
      font-weight: 700;
      display: block;
    }

    /* Channel list */

    .channel-rail {
      display: flex;
      flex-direction: column;
      gap: 14px;
      margin-top: 32px;
    }

    .channel-card {
      width: 100%;
      display: flex;
      align-items: center;
      gap: 16px;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 20px 22px;
      box-shadow: var(--shadow-sm);
      transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
    }

    a.channel-card:hover {
      transform: translateY(-3px);
      border-color: #b9d4e0;
      box-shadow: var(--shadow-md);
    }

    .channel-card.is-static {
      background: #f7fbfc;
    }

    .channel-icon {
      flex: 0 0 50px;
      width: 50px;
      height: 50px;
      border-radius: 14px;
      background: var(--brand-soft);
      color: var(--brand-deep);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
    }

    .channel-copy {
      flex: 1 1 auto;
      display: flex;
      flex-direction: column;
      gap: 2px;
      min-width: 0;
    }

    .channel-title {
      color: var(--deep);
      font-weight: 700;
      font-size: 17px;
    }

    .channel-desc {
      color: var(--text);
      font-size: 14px;
      line-height: 1.7;
    }

    .channel-arrow {
      flex: 0 0 auto;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      background: var(--panel-soft);
      border: 1px solid var(--line);
      color: var(--brand);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      transition: transform 0.25s ease, background 0.25s ease;
    }

    a.channel-card:hover .channel-arrow {
      transform: translateX(3px);
      background: var(--brand);
      border-color: var(--brand);
      color: #fff;
    }

    .channel-current-tag {
      display: inline-flex;
      align-items: center;
      gap: 4px;
      background: var(--brand-soft);
      color: var(--brand-deep);
      font-size: 12px;
      font-weight: 700;
      border-radius: 999px;
      padding: 3px 10px;
    }

    /* Process steps */

    .process-grid {
      margin-top: 38px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 16px;
    }

    @media (min-width: 640px) {
      .process-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .process-grid {
        grid-template-columns: repeat(4, 1fr);
      }
    }

    .process-step {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 24px 22px;
      box-shadow: var(--shadow-sm);
      position: relative;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      border-top: 3px solid var(--brand);
    }

    .process-step:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .process-step:nth-child(even) {
      border-top-color: var(--cta);
    }

    .step-num {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 34px;
      height: 34px;
      border-radius: 10px;
      background: var(--brand-soft);
      color: var(--brand-deep);
      font-weight: 800;
      font-size: 15px;
      margin-bottom: 16px;
    }

    .process-step:nth-child(even) .step-num {
      background: #fff2e3;
      color: var(--cta-deep);
    }

    .process-step h3 {
      font-size: 18px;
      margin-bottom: 8px;
    }

    .process-step p {
      font-size: 14px;
      color: var(--text);
      margin-bottom: 0;
    }

    /* Safety / reminder */

    .safe-grid {
      margin-top: 36px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 18px;
    }

    @media (min-width: 640px) {
      .safe-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .safety-card {
      background: var(--panel-soft);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 26px 24px;
      transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
    }

    .safety-card:hover {
      background: #fff;
      transform: translateY(-3px);
      box-shadow: var(--shadow-md);
    }

    .safety-icon {
      width: 44px;
      height: 44px;
      border-radius: 13px;
      background: #fff;
      border: 1px solid #d8e8ef;
      color: var(--brand-deep);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      margin-bottom: 16px;
    }

    .safety-card:nth-child(2) .safety-icon {
      color: var(--cta-deep);
    }

    .safety-card h3 {
      font-size: 17px;
      margin-bottom: 8px;
    }

    .safety-card p {
      font-size: 14px;
      color: var(--text);
      margin-bottom: 0;
    }

    /* FAQ */

    .faq-wrap {
      max-width: 960px;
      margin: 40px auto 0;
    }

    .faq-accordion {
      background: transparent;
      margin-left: 0;
      border: 0;
    }

    .faq-accordion .accordion-item {
      background: #fff;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      margin-bottom: 14px;
      transition: border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .faq-accordion .accordion-item.is-active {
      border-color: #bfd7e2;
      box-shadow: var(--shadow-md);
    }

    .faq-accordion .accordion-title {
      display: flex;
      align-items: center;
      gap: 12px;
      background: #fff !important;
      border-bottom: 0 !important;
      color: var(--deep) !important;
      font-size: 17px;
      font-weight: 600;
      padding: 19px 22px;
      line-height: 1.6;
      transition: color 0.25s ease;
      position: relative;
    }

    .faq-accordion .accordion-title:hover {
      color: var(--brand-deep) !important;
      background: #fafdfe !important;
    }

    .faq-accordion .accordion-title::after {
      content: "\f055";
      font-family: "Font Awesome 6 Free";
      font-weight: 900;
      font-size: 18px;
      margin-left: auto;
      color: var(--brand);
      transition: transform 0.25s ease, color 0.25s ease;
    }

    .faq-accordion .accordion-item.is-active > .accordion-title::after {
      content: "\f056";
      color: var(--cta);
    }

    .faq-accordion .accordion-content {
      background: #fbfdfe !important;
      color: var(--text) !important;
      border-top: 1px dashed #dce9f0 !important;
      padding: 18px 22px 22px;
      font-size: 15px;
      line-height: 1.9;
    }

    .qa-badge {
      flex: 0 0 auto;
      width: 26px;
      height: 26px;
      border-radius: 8px;
      background: var(--brand-soft);
      color: var(--brand-deep);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-size: 13px;
      font-weight: 700;
    }

    .accordion-content .qa-badge {
      background: #fff;
      border: 1px solid var(--line);
      font-size: 12px;
      width: 24px;
      height: 24px;
      margin-right: 4px;
    }

    /* CTA band */

    .cta-section {
      padding: 36px 0 86px;
    }

    .cta-card {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 28px;
      flex-wrap: wrap;
      background:
        linear-gradient(110deg, rgba(255, 255, 255, 0.98) 10%, rgba(238, 245, 248, 0.95) 70%, rgba(220, 236, 243, 0.92) 100%),
        url('/assets/images/backpic/back-1.png') center / cover no-repeat;
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 42px 44px;
      box-shadow: var(--shadow-md);
      position: relative;
      overflow: hidden;
    }

    .cta-card h2 {
      font-size: clamp(21px, 2.8vw, 29px);
      margin-bottom: 10px;
    }

    .cta-card p {
      margin-bottom: 0;
      max-width: 620px;
    }

    .cta-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 8px;
    }

    /* ========== Footer ========== */

    .site-footer {
      background: #183247;
      color: #c9dfe8;
      padding-top: 66px;
      padding-bottom: 26px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 36px;
    }

    @media (min-width: 768px) {
      .footer-grid {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
        gap: 60px;
      }
    }

    .footer-brand-title {
      font-size: 21px;
      color: #fff;
      font-weight: 800;
      line-height: 1.4;
      margin-bottom: 14px;
      letter-spacing: 0.3px;
    }

    .footer-desc {
      color: #a9c3ce;
      font-size: 14px;
      line-height: 1.9;
      max-width: 560px;
      margin-bottom: 16px;
    }

    .footer-nav-head {
      color: #fff;
      font-weight: 700;
      font-size: 16px;
      margin-bottom: 16px;
    }

    .footer-link-list {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .footer-link-list a {
      color: #b9d2dd;
      font-size: 14px;
      display: inline-flex;
      align-items: center;
      gap: 7px;
    }

    .footer-link-list a i {
      color: var(--cta);
      font-size: 12px;
    }

    .footer-link-list a:hover {
      color: #fff;
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 8px 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.14);
      margin-top: 50px;
      padding-top: 24px;
      color: #86a5b2;
      font-size: 13px;
    }

    .footer-bottom a {
      color: #9fc7d7;
    }

    .footer-bottom a:hover {
      color: #fff;
    }

    /* ========== Responsive ========== */

    @media (max-width: 1023.98px) {
      .site-header {
        padding-top: 12px;
      }

      .nav-card {
        padding: 12px 14px 12px 14px;
      }

      .brand-text {
        font-size: 15px;
      }

      .section {
        padding: 66px 0;
      }

      .intro-panel {
        padding: 28px 24px;
      }
    }

    @media (max-width: 639.98px) {
      .grid-container {
        padding-left: 16px;
        padding-right: 16px;
      }

      .page-hero {
        padding: 42px 0 56px;
      }

      .page-hero h1 {
        font-size: 28px;
      }

      .hero-actions .btn {
        width: calc(50% - 6px);
      }

      .hero-actions .btn {
        font-size: 14px;
        padding: 12px 15px;
      }

      .section {
        padding: 54px 0;
      }

      .section-title {
        font-size: 24px;
      }

      .card,
      .intro-panel {
        padding: 24px 20px;
      }

      .channel-card {
        align-items: flex-start;
        padding: 17px 15px;
      }

      .channel-icon {
        width: 44px;
        height: 44px;
        border-radius: 12px;
        font-size: 17px;
      }

      .channel-desc {
        font-size: 13px;
      }

      .cta-card {
        padding: 30px 22px;
      }

      .cta-card h2 {
        font-size: 22px;
      }

      .cta-actions .btn {
        width: 100%;
      }

      .footer-bottom {
        flex-direction: column;
        justify-content: flex-start;
      }
    }

    @media (max-width: 479.98px) {
      .brand-icon {
        display: none;
      }

      .brand-text {
        font-size: 14px;
      }

      .nav-cta {
        padding: 8px 11px;
        font-size: 12px;
      }

      .nav-pill {
        padding: 7px 10px;
        font-size: 12px;
      }

      .hero-actions {
        flex-direction: column;
      }

      .hero-actions .btn {
        width: 100%;
      }
    }
