/* Pricing Section */

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing { padding: clamp(80px, 12vw, 140px) clamp(24px, 6vw, 80px); background: var(--brn-surface); }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-eyebrow { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--brn-blue-accent); margin-bottom: 16px; }
.pricing-title { font-family: 'Instrument Sans', sans-serif; font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; letter-spacing: -0.03em; }
.pricing-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1000px; margin: 0 auto; }
.pricing-card { background: rgba(255,255,255,0.02); border: 1px solid var(--border-color); border-radius: var(--radius); padding: 36px 28px; position: relative; transition: all 0.4s var(--ease-smooth); }
.pricing-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(0,0,0,0.3); border-color: var(--border-hover); }
.pricing-card.featured { border-color: rgba(201,168,76,0.3); background: linear-gradient(165deg, rgba(201,168,76,0.06) 0%, transparent 40%); }
.pricing-card.featured:hover { border-color: rgba(201,168,76,0.5); box-shadow: 0 0 60px rgba(201,168,76,0.08), 0 16px 48px rgba(0,0,0,0.3); }
.pricing-popular { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); padding: 4px 16px; background: var(--brn-gold); color: #0a0a0a; font-size: 0.6rem; font-weight: 800; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 100px; white-space: nowrap; }
.pricing-plan { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 8px; }
.pricing-card.featured .pricing-plan { color: var(--brn-gold); }
.pricing-name { font-family: 'Instrument Sans', sans-serif; font-size: 1.3rem; font-weight: 700; margin-bottom: 16px; }
.pricing-price { margin-bottom: 24px; }
.pricing-amount { font-family: 'Instrument Sans', sans-serif; font-size: 2.2rem; font-weight: 800; letter-spacing: -0.03em; }
.pricing-card.featured .pricing-amount { color: var(--brn-gold); }
.pricing-period { font-size: 0.75rem; color: var(--text-muted); }
.pricing-features { list-style: none; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.pricing-features li { font-size: 0.82rem; color: var(--text-secondary); display: flex; align-items: flex-start; gap: 8px; }
.pricing-features li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--brn-blue-accent); margin-top: 7px; flex-shrink: 0; }
.pricing-card.featured .pricing-features li::before { background: var(--brn-gold); }
.pricing-btn { display: block; width: 100%; padding: 14px; text-align: center; border-radius: var(--radius); font-size: 0.82rem; font-weight: 700; text-decoration: none; transition: all 0.3s; cursor: pointer; border: none; }
.pricing-btn-outline { background: transparent; border: 1px solid var(--border-hover); color: var(--text-primary); }
.pricing-btn-outline:hover { background: rgba(255,255,255,0.05); border-color: var(--brn-blue-accent); color: var(--brn-blue-accent); }
.pricing-btn-gold { background: var(--brn-gold); color: #0a0a0a; }
.pricing-btn-gold:hover { background: #d4b55c; transform: translateY(-2px); box-shadow: 0 0 30px rgba(201,168,76,0.2); }
