/* pricing.html — page-specific styles */
.page-header { padding: 56px 5% 40px; max-width: 720px; margin: 0 auto; text-align: center; }
.page-header h1 { font-size: clamp(28px,5vw,48px); font-weight: 900; letter-spacing: -.03em; margin-bottom: 12px; }
.page-header p { font-size: 16px; color: var(--muted); max-width: 480px; margin: 0 auto; }

.pricing-wrap { padding: 0 5% 64px; max-width: 1100px; margin: 0 auto; }

.plan-grid { display: grid; grid-template-columns: repeat(auto-fill,minmax(240px,1fr)); gap: 18px; margin-bottom: 48px; }
.plan-card { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 28px 24px; display: flex; flex-direction: column; position: relative; }
.plan-card.featured { border-color: var(--accent); background: rgba(224,123,57,.04); }
.featured-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-size: 11px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; padding: 3px 14px; border-radius: 0 0 7px 7px; white-space: nowrap; }
.plan-name { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 8px; }
.plan-price { font-size: 40px; font-weight: 900; letter-spacing: -.03em; margin-bottom: 3px; }
.plan-price span { font-size: 17px; font-weight: 500; color: var(--muted); }
.plan-tagline { font-size: 14px; color: var(--muted); margin-bottom: 14px; }

.avail-badge { display: inline-flex; align-items: center; gap: 5px; font-size: 12px; font-weight: 700; padding: 3px 9px; border-radius: 20px; margin-bottom: 14px; }
.avail-badge.ok { background: rgba(61,190,94,.12); color: var(--ok); }
.avail-badge.warn { background: rgba(240,180,41,.12); color: var(--warn); }
.avail-badge.sold { background: rgba(136,136,136,.12); color: var(--muted); }
.avail-badge.loading { background: var(--bg3); color: var(--dim); font-weight: 500; }
.avail-dot { width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }
.avail-bar { height: 3px; border-radius: 2px; background: var(--bg3); margin-bottom: 18px; overflow: hidden; }
.avail-bar-fill { height: 100%; border-radius: 2px; transition: width .6s ease; }

hr.plan-divider { border: none; border-top: 1px solid var(--border); margin: 0 0 18px; }
.plan-features { list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.plan-features li { font-size: 13px; color: var(--muted); padding-left: 20px; position: relative; line-height: 1.4; }
.plan-features li::before { content: '✓'; position: absolute; left: 0; color: var(--ok); font-weight: 700; font-size: 12px; }
.plan-features li.dim { color: var(--dim); }
.plan-features li.dim::before { content: '–'; color: var(--dim); }
.plan-features li.we-feat { color: var(--accent); font-weight: 600; }
.plan-features li.we-feat::before { content: none; }
.plan-cta { display: block; margin-top: 24px; text-align: center; font-size: 13px; font-weight: 700; padding: 11px; border-radius: 7px; text-decoration: none; border: 1px solid var(--border); color: var(--text); transition: all .15s; }
.plan-cta:hover { border-color: var(--accent); color: var(--accent); }
.plan-card.featured .plan-cta { background: var(--accent); color: #fff; border-color: var(--accent); }
.plan-card.featured .plan-cta:hover { background: var(--accent-h); }
.plan-cta.soldout { opacity: .5; pointer-events: none; }

.compare-title { font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; color: var(--accent); margin-bottom: 18px; }
.compare-table { width: 100%; border-collapse: collapse; font-size: 13px; margin-bottom: 48px; }
.compare-table th { text-align: left; padding: 9px 12px; font-size: 11px; font-weight: 700; color: var(--muted); border-bottom: 1px solid var(--border); }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table td { padding: 10px 12px; border-bottom: 1px solid var(--border); color: var(--muted); }
.compare-table td:first-child { font-weight: 600; color: var(--text); }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table .tick { color: var(--ok); font-weight: 700; }
.compare-table .cross { color: var(--dim); }
.compare-table .featured-col { color: var(--text); font-weight: 600; }

.faq-title { font-size: 22px; font-weight: 800; margin-bottom: 20px; letter-spacing: -.02em; }
.faq-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 48px; }
.faq-item { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 20px; }
.faq-item h3 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.faq-item p { font-size: 13px; color: var(--muted); line-height: 1.6; }

.cap-note { text-align: center; font-size: 12px; color: var(--dim); margin: -36px 0 48px; }

.we-callout { display: flex; align-items: flex-start; gap: 18px; background: rgba(224,123,57,.06); border: 1px solid rgba(224,123,57,.25); border-radius: var(--r); padding: 20px 24px; margin-bottom: 40px; }
.we-callout-icon { font-size: 24px; line-height: 1; flex-shrink: 0; margin-top: 2px; }
.we-callout-title { font-size: 14px; font-weight: 800; color: var(--accent); margin-bottom: 5px; }
.we-callout-desc { font-size: 13px; color: var(--muted); line-height: 1.6; }
.we-table-row td { font-weight: 600; color: var(--accent); }
