/* solutions 页专属 */
.page-hero { position: relative; padding: 128px 0 var(--s8); text-align: center; }
.page-hero h1 { font-size: 2.5rem; color: var(--white); margin-bottom: var(--s1); }
.page-hero p  { color: rgba(255,255,255,.6); font-size: 1.1rem; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--s4); margin: var(--s6) auto; max-width: 1000px; }
.pricing-card { text-align: center; position: relative; overflow: hidden; border: 1.5px solid var(--line); }
.pricing-card--featured { border-color: var(--magenta); box-shadow: var(--shadow-magenta); }
.pricing-card__badge { position: absolute; top: 20px; right: -32px; background: var(--magenta); color: var(--white); font-size: .75rem; font-weight: 600; padding: 4px 40px; transform: rotate(45deg); }
.pricing-card__price { font-size: 2.8rem; font-weight: 800; color: var(--magenta); margin: var(--s4) 0 var(--s1); }
.pricing-card__price span { font-size: 1rem; font-weight: 400; color: var(--ink-3); }
.pricing-card__name { font-size: 1.3rem; font-weight: 700; margin-top: var(--s3); }
.pricing-card__for { font-size: .85rem; color: var(--ink-3); margin-bottom: var(--s4); }
.pricing-card__items { text-align: left; border-top: 1px solid var(--line-l); padding-top: var(--s4); }
.pricing-card__items li { padding: var(--s1) 0; font-size: .9rem; color: var(--ink-2); display: flex; align-items: flex-start; gap: var(--s1); }
.pricing-card__items li::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }
.pricing-card .btn { margin-top: var(--s5); width: 100%; }

.feature-table { max-width: 1000px; margin: var(--s10) auto 0; }
.feature-table h2 { text-align: center; margin-bottom: var(--s5); }
.feature-table table { width: 100%; border-collapse: collapse; }
.feature-table th, .feature-table td { padding: 14px 16px; text-align: center; border-bottom: 1px solid var(--line-l); font-size: .9rem; }
.feature-table th { background: var(--bg); font-weight: 600; }
.feature-table td:first-child { text-align: left; font-weight: 500; }
.feature-table .check { color: var(--green); font-weight: 700; }

@media (max-width: 1023px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
}
