:root{
  --civ-orange:#ff7a00; 
  --civ-green:#009e60; 
  --civ-ink:#0f172a;
  --paper:#ffffff;
  --bg:#f6f8fb;
  --line:#e5e7eb;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0;background:var(--bg);color:var(--civ-ink);font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial,sans-serif}
.wrapper{max-width:1100px;margin:auto;padding:clamp(10px,2vw,24px)}
.header{display:flex;align-items:center;gap:12px;justify-content:space-between;margin-bottom:12px}
.brand{display:flex;align-items:center;gap:10px}
.brand img{height:34px}
.badge{font-weight:700;color:#fff;background:linear-gradient(90deg,var(--civ-orange),var(--civ-green));padding:6px 10px;border-radius:999px;font-size:12px;white-space:nowrap}
.actions{display:flex;gap:8px;flex-wrap:wrap}
.btn{border:1px solid var(--line);padding:10px 12px;border-radius:10px;background:#fff;cursor:pointer;font-weight:600}
.btn:active{transform:scale(.98)}
.btn-primary{border:none;background:linear-gradient(90deg,var(--civ-orange),var(--civ-green));color:#fff}
.table-card{background:var(--paper);border:1px solid var(--line);border-radius:16px;overflow:hidden;box-shadow:0 4px 12px rgba(0,0,0,.04)}
.table{width:100%;border-collapse:collapse}
.table th,.table td{padding:12px;border-bottom:1px solid var(--line);text-align:left}
.table thead th{background:linear-gradient(90deg,#fff6ef,#effbf3);position:sticky;top:0}
.plan{font-weight:700}
.price{font-weight:800}
.strike{opacity:.6;text-decoration:line-through;font-weight:500}
.pill{display:inline-block;padding:4px 8px;border-radius:999px;background:#f2f2f2;border:1px solid var(--line);font-size:12px}
.footer-pin{position:fixed;right:10px;bottom:8px;font-size:12px;opacity:.35}
.grid{display:grid;grid-template-columns:1fr;gap:10px}
@media(min-width:720px){
  .grid{grid-template-columns: 1fr}
  .header{gap:18px}
}
