/* ==========================================================================
   VPNOh — pricing.css
   套餐页专属样式:页面头部留白、三档说明、包含清单、支付方式、
   退款面板、对比表脚注。通用卡片/表格/FAQ 一律复用 components.css。
   ========================================================================== */

/* --- 1. 页头 ------------------------------------------------------------- */
.price-hero{padding-bottom:var(--sp-5)}
.price-hero .lede{margin-top:14px;max-width:720px}
.price-hero .cta-row{margin-top:18px}
.price-sec-head{max-width:820px}

/* --- 2. 三档说明卡 ------------------------------------------------------- */
.plan-notes{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(272px,1fr));
  gap:18px;
  margin-top:var(--sp-6);
}
.plan-note{
  padding:22px 20px;
  border:1px solid var(--border);
  border-radius:var(--r-md);
  background:var(--bg-panel);
  box-shadow:var(--shadow-card);
  min-width:0;
}
.plan-note h3{font-size:17px;letter-spacing:-.01em}
.plan-note p{margin-top:10px;font-size:14.5px;line-height:1.78;color:var(--text-muted)}

/* --- 3. 所有套餐均包含清单 ----------------------------------------------- */
.include-list{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:12px 28px;
  padding:24px 26px;
  border:1px solid var(--border);
  border-radius:var(--r-md);
  background:var(--bg-panel);
  box-shadow:var(--shadow-card);
}
.include-list li{
  display:flex;
  gap:10px;
  align-items:flex-start;
  min-width:0;
  font-size:14.5px;
  line-height:1.72;
  color:var(--text-muted);
}
.include-list svg{width:16px;height:16px;color:var(--success);flex:none;margin-top:5px}
.include-list strong{color:var(--text);font-weight:700}

/* --- 4. 对比表脚注 ------------------------------------------------------- */
.table-note{
  margin-top:12px;
  font-size:13px;
  line-height:1.7;
  color:var(--text-muted);
}

/* --- 5. 支付方式 --------------------------------------------------------- */
.pay-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(240px,1fr));
  gap:16px;
}
.pay-card{
  display:flex;
  flex-direction:column;
  gap:10px;
  padding:22px 20px;
  border:1px solid var(--border);
  border-radius:var(--r-md);
  background:var(--bg-panel);
  box-shadow:var(--shadow-card);
  min-width:0;
}
.pay-ico{
  width:42px;height:42px;flex:none;
  display:grid;place-items:center;
  border-radius:12px;
  border:1px solid var(--border);
  background:rgba(var(--accent-rgb),.08);
}
.pay-ico svg{width:21px;height:21px;color:var(--accent)}
.pay-card h3{font-size:16px}
.pay-card p{font-size:13.5px;line-height:1.72;color:var(--text-muted)}

/* --- 6. 退款面板 --------------------------------------------------------- */
.refund-panel{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,240px);
  gap:var(--sp-6);
  align-items:start;
  padding:28px 28px 26px;
  border:1px solid var(--border);
  border-radius:var(--r-md);
  background:var(--bg-panel);
  box-shadow:var(--shadow-card);
}
.refund-copy{min-width:0}
.refund-copy h2{margin-top:8px}
.refund-copy > p{margin-top:12px;font-size:15px;line-height:1.78;color:var(--text-muted);max-width:66ch}
.refund-copy .steps{margin-top:var(--sp-4)}
.refund-copy .steps li{font-size:14.5px;line-height:1.72;color:var(--text-muted)}
.refund-fact{display:flex;flex-direction:column;gap:10px;min-width:0}

/* --- 7. 响应式 ----------------------------------------------------------- */
@media (max-width:900px){
  .refund-panel{grid-template-columns:minmax(0,1fr);gap:var(--sp-5);padding:24px 22px}
  .refund-fact{flex-direction:row;flex-wrap:wrap}
  .refund-fact .fact-tile{flex:1 1 150px}
}

@media (max-width:768px){
  .include-list{grid-template-columns:minmax(0,1fr);padding:20px 18px}
  .plan-notes{gap:14px}
}

@media (max-width:640px){
  .pay-grid{grid-template-columns:minmax(0,1fr)}
  .refund-panel{padding:20px 18px}
  .refund-fact{flex-direction:column}
  .refund-fact .fact-tile{flex:1 1 auto}
  .table-note{font-size:12.5px}
}