.province-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
.province-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 28px 22px;
  box-shadow: var(--shadow-sm); border: 1px solid rgba(139,92,246,.08);
  position: relative; transition: var(--trans); overflow: hidden;
}
.province-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.province-flag {
  display: flex; align-items: center; gap: 10px; margin-bottom: 16px;
  padding-bottom: 14px; border-bottom: 2px dashed rgba(139,92,246,.1);
}
.province-color {
  width: 48px; height: 48px; border-radius: 16px; display: grid; place-items: center;
  color: #fff; font-weight: 900; font-size: 20px; flex-shrink: 0;
}
.province-card:nth-child(1) .province-color { background: linear-gradient(135deg, var(--purple), var(--purple-dark)); }
.province-card:nth-child(2) .province-color { background: linear-gradient(135deg, var(--green), var(--green-dark)); }
.province-card:nth-child(3) .province-color { background: linear-gradient(135deg, var(--orange), var(--orange-dark)); }
.province-card:nth-child(4) .province-color { background: linear-gradient(135deg, #6366F1, #4F46E5); }
.province-card:nth-child(5) .province-color { background: linear-gradient(135deg, #059669, #047857); }
.province-name { font-size: 19px; font-weight: 800; line-height: 1.2; }
.province-sub { font-size: 11.5px; color: var(--text-3); font-weight: 600; margin-top: 2px; }
.province-field { margin-bottom: 12px; }
.province-field-label {
  font-size: 11px; font-weight: 700; color: var(--text-3); letter-spacing: .3px;
  margin-bottom: 4px;
}
.province-field-value { font-size: 13.5px; font-weight: 700; color: var(--text-1); line-height: 1.45; }
.province-field-value.tag-fast { color: var(--green-dark); }
.province-field-value.tag-strict { color: var(--orange-dark); }
.province-tag {
  display: inline-block; padding: 4px 10px; border-radius: 999px;
  font-size: 11px; font-weight: 700; margin-top: 4px;
}
.province-tag.fast { background: rgba(16,185,129,.1); color: var(--green-dark); }
.province-tag.strict { background: rgba(249,115,22,.1); color: var(--orange-dark); }
.province-tag.normal { background: rgba(139,92,246,.1); color: var(--purple); }

.timeline-compare { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; position: relative; }
.timeline-col {
  background: linear-gradient(180deg, var(--bg-0), #fff);
  border-radius: var(--radius-lg); padding: 22px 18px; border: 1px solid rgba(139,92,246,.06);
  position: relative;
}
.timeline-col-head {
  font-size: 14px; font-weight: 800; text-align: center; margin-bottom: 14px;
  padding-bottom: 10px; border-bottom: 2px solid;
}
.timeline-col:nth-child(1) .timeline-col-head { color: var(--purple); border-color: var(--purple); }
.timeline-col:nth-child(2) .timeline-col-head { color: var(--green); border-color: var(--green); }
.timeline-col:nth-child(3) .timeline-col-head { color: var(--orange); border-color: var(--orange); }
.timeline-col:nth-child(4) .timeline-col-head { color: #4F46E5; border-color: #4F46E5; }
.timeline-col:nth-child(5) .timeline-col-head { color: #047857; border-color: #047857; }
.timeline-step {
  position: relative; padding: 10px 0 10px 26px;
  border-left: 2px solid rgba(139,92,246,.15); margin-left: 8px;
}
.timeline-col:nth-child(1) .timeline-step { border-left-color: rgba(139,92,246,.3); }
.timeline-col:nth-child(2) .timeline-step { border-left-color: rgba(16,185,129,.3); }
.timeline-col:nth-child(3) .timeline-step { border-left-color: rgba(249,115,22,.3); }
.timeline-col:nth-child(4) .timeline-step { border-left-color: rgba(79,70,229,.3); }
.timeline-col:nth-child(5) .timeline-step { border-left-color: rgba(4,120,87,.3); }
.timeline-step::before {
  content: ""; position: absolute; left: -7px; top: 14px;
  width: 12px; height: 12px; border-radius: 50%; background: #fff;
  border: 3px solid;
}
.timeline-col:nth-child(1) .timeline-step::before { border-color: var(--purple); }
.timeline-col:nth-child(2) .timeline-step::before { border-color: var(--green); }
.timeline-col:nth-child(3) .timeline-step::before { border-color: var(--orange); }
.timeline-col:nth-child(4) .timeline-step::before { border-color: #4F46E5; }
.timeline-col:nth-child(5) .timeline-step::before { border-color: #047857; }
.timeline-step:last-child { border-left: none; padding-bottom: 0; }
.timeline-day {
  font-size: 11px; font-weight: 800; color: var(--text-3); margin-bottom: 2px;
}
.timeline-step-title { font-size: 12.5px; font-weight: 700; line-height: 1.45; }

.gongan-flow-wrap {
  background: linear-gradient(135deg, #F3F0FF 0%, #FFFAF5 100%);
  border-radius: var(--radius-xl); padding: 56px 48px; position: relative; overflow: hidden;
}
.gongan-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 48px; align-items: start; position: relative; z-index: 2; }
.gongan-card-stack { display: flex; flex-direction: column; gap: 18px; }
.gongan-card {
  background: var(--white); border-radius: var(--radius-lg); padding: 24px 26px;
  box-shadow: var(--shadow-sm); border-left: 5px solid; display: grid;
  grid-template-columns: 64px 1fr; gap: 18px; align-items: start;
}
.gongan-card:nth-child(1) { border-color: var(--purple); }
.gongan-card:nth-child(2) { border-color: var(--green); }
.gongan-card:nth-child(3) { border-color: var(--orange); }
.gongan-icon {
  width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center;
  font-size: 30px;
}
.gongan-card:nth-child(1) .gongan-icon { background: rgba(139,92,246,.12); }
.gongan-card:nth-child(2) .gongan-icon { background: rgba(16,185,129,.12); }
.gongan-card:nth-child(3) .gongan-icon { background: rgba(249,115,22,.12); }
.gongan-title { font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.gongan-desc { font-size: 13.5px; color: var(--text-2); line-height: 1.7; }
.gongan-meta {
  margin-top: 10px; display: flex; gap: 12px; flex-wrap: wrap;
}
.gongan-meta span {
  background: var(--bg-0); padding: 4px 12px; border-radius: 999px;
  font-size: 11.5px; font-weight: 700; color: var(--text-2);
}
.special-list-panel {
  background: var(--white); border-radius: var(--radius-lg); padding: 30px 28px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(139,92,246,.08);
}
.special-list-head {
  display: flex; align-items: center; gap: 14px; margin-bottom: 22px;
  padding-bottom: 18px; border-bottom: 2px dashed rgba(139,92,246,.1);
}
.special-badge {
  width: 56px; height: 56px; border-radius: 18px;
  background: linear-gradient(135deg, var(--orange), var(--orange-dark));
  display: grid; place-items: center; color: #fff;
}
.special-badge svg { width: 28px; height: 28px; }
.special-title { font-size: 22px; font-weight: 800; }
.special-sub { font-size: 13px; color: var(--text-2); margin-top: 2px; }
.special-list-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.special-item {
  background: var(--bg-0); border-radius: 14px; padding: 16px 18px;
  display: grid; grid-template-columns: 50px 1fr; gap: 14px; align-items: center;
  border: 1px solid rgba(139,92,246,.05); transition: var(--trans);
}
.special-item:hover { transform: translateX(4px); background: #fff; box-shadow: var(--shadow-sm); }
.special-item-icon {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center;
  font-size: 24px;
}
.special-item-icon.purple { background: rgba(139,92,246,.12); }
.special-item-icon.green { background: rgba(16,185,129,.12); }
.special-item-icon.orange { background: rgba(249,115,22,.12); }
.special-item-icon.blue { background: rgba(79,70,229,.12); }
.special-item-icon.dgreen { background: rgba(4,120,87,.12); }
.special-item-icon.pink { background: rgba(236,72,153,.12); }
.special-item-name { font-size: 15px; font-weight: 800; margin-bottom: 2px; }
.special-item-sub { font-size: 11.5px; color: var(--text-2); line-height: 1.4; }

.compliance-bottom-wrap { display: grid; grid-template-columns: 1.2fr 1fr; gap: 28px; }
.guarantee-card {
  background: var(--white); border-radius: var(--radius-xl); padding: 42px 38px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(16,185,129,.2);
  background-image: linear-gradient(135deg, rgba(16,185,129,.04) 0%, transparent 60%);
  position: relative; overflow: hidden;
}
.guarantee-badge {
  position: absolute; top: -10px; right: -10px;
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  color: #fff; padding: 14px 20px; border-radius: 18px 0 18px 0;
  font-size: 13px; font-weight: 800; transform: rotate(4deg);
  box-shadow: var(--shadow-sm);
}
.guarantee-head-title {
  font-size: 26px; font-weight: 900; background: linear-gradient(135deg, var(--green), var(--green-dark));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  margin-bottom: 6px;
}
.guarantee-head-sub { font-size: 14px; color: var(--text-2); margin-bottom: 26px; }
.guarantee-list { display: flex; flex-direction: column; gap: 16px; }
.guarantee-row {
  display: grid; grid-template-columns: 80px 1fr auto; gap: 18px; align-items: center;
  padding: 14px 0; border-bottom: 1px dashed rgba(139,92,246,.08);
}
.guarantee-row:last-child { border-bottom: none; }
.guarantee-metric-big { font-size: 36px; font-weight: 900; line-height: 1; }
.guarantee-row:nth-child(1) .guarantee-metric-big { color: var(--green); }
.guarantee-row:nth-child(2) .guarantee-metric-big { color: var(--purple); }
.guarantee-row:nth-child(3) .guarantee-metric-big { color: var(--orange); }
.guarantee-row:nth-child(4) .guarantee-metric-big { color: var(--green-dark); }
.guarantee-metric-unit { font-size: 13px; font-weight: 700; color: var(--text-3); display: block; margin-top: 2px; }
.guarantee-text h4 { font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.guarantee-text p { font-size: 12.5px; color: var(--text-2); line-height: 1.6; }
.guarantee-cta {
  margin-top: 22px; padding-top: 22px; border-top: 2px dashed rgba(139,92,246,.1);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.guarantee-cta-text { font-size: 13.5px; font-weight: 700; color: var(--text-1); }
.guarantee-cta-text span { color: var(--orange-dark); }

.doc-checklist {
  background: linear-gradient(135deg, #F3F0FF, #fff);
  border-radius: var(--radius-xl); padding: 42px 38px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(139,92,246,.12);
}
.doc-checklist-title { font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.doc-checklist-sub { font-size: 13px; color: var(--text-2); margin-bottom: 24px; }
.doc-list { display: flex; flex-direction: column; gap: 10px; }
.doc-item {
  display: grid; grid-template-columns: 28px 1fr auto; gap: 12px; align-items: center;
  padding: 12px 14px; background: var(--white); border-radius: 12px;
  box-shadow: var(--shadow-sm); transition: var(--trans);
}
.doc-item:hover { transform: translateX(4px); }
.doc-check {
  width: 28px; height: 28px; border-radius: 50%; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--green), var(--green-dark)); color: #fff;
  font-size: 14px; font-weight: 900;
}
.doc-name { font-size: 13.5px; font-weight: 700; color: var(--text-1); }
.doc-type {
  padding: 3px 10px; border-radius: 8px; font-size: 11px; font-weight: 700;
}
.doc-type.must { background: rgba(249,115,22,.12); color: var(--orange-dark); }
.doc-type.opt { background: rgba(139,92,246,.1); color: var(--purple); }

@media (max-width: 1280px) {
  .province-grid { grid-template-columns: repeat(3, 1fr); }
  .timeline-compare { grid-template-columns: repeat(3, 1fr); }
  .gongan-grid { grid-template-columns: 1fr; }
  .compliance-bottom-wrap { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .province-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline-compare { grid-template-columns: repeat(2, 1fr); }
  .special-list-grid { grid-template-columns: 1fr; }
  .gongan-flow-wrap, .guarantee-card, .doc-checklist { padding: 32px 20px; }
}
@media (max-width: 560px) {
  .province-grid, .timeline-compare { grid-template-columns: 1fr; }
  .guarantee-row { grid-template-columns: 60px 1fr; }
  .guarantee-row > :last-child { grid-column: 1 / -1; text-align: right; }
}