/* Pricing page specific styles */
.pricing-hero { background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-800) 50%, var(--navy-700) 100%); padding: 8rem 2rem 4rem; text-align: center; position: relative; overflow: hidden; }
.pricing-hero::before { content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; background: radial-gradient(circle at 30% 80%, rgba(29,158,117,0.08) 0%, transparent 50%), radial-gradient(circle at 70% 20%, rgba(93,202,165,0.05) 0%, transparent 40%); }
.pricing-hero .hero-content { position: relative; max-width: 800px; margin: 0 auto; }
.pricing-hero h1 { color: var(--white); font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.pricing-hero .hero-badge { display: inline-block; background: rgba(29,158,117,0.15); color: var(--teal-300); padding: 6px 16px; border-radius: 20px; font-size: 0.85rem; font-weight: 600; margin-bottom: 1.25rem; }

/* Category tabs */
.category-tabs { display: flex; justify-content: center; gap: 0.5rem; margin-bottom: 3rem; flex-wrap: wrap; }
.category-tab { background: var(--white); border: 1.5px solid var(--gray-200); color: var(--gray-600); padding: 10px 24px; border-radius: 8px; font-size: 15px; font-weight: 600; cursor: pointer; transition: all 0.2s; font-family: inherit; }
.category-tab:hover { border-color: var(--teal-400); color: var(--teal-500); }
.category-tab.active { background: var(--teal-500); color: var(--white); border-color: var(--teal-500); }

/* Category sections */
.category-section { display: none; }
.category-section.active { display: block; }
.category-header { text-align: center; margin-bottom: 2rem; }
.category-header h2 { font-size: 1.8rem; font-weight: 700; color: var(--gray-800); margin-bottom: 0.5rem; }
.category-header p { font-size: 1rem; color: var(--gray-600); max-width: 600px; margin: 0 auto; }

/* Plan note (gaming "good for" text) */
.plan-note { font-size: 0.85rem; color: var(--teal-500); font-style: italic; padding-top: 0.5rem; border-top: 1px solid var(--gray-100); margin-top: 0.5rem; }

/* Custom VPS teaser */
.custom-teaser { background: var(--navy-800); border-radius: 16px; padding: 3rem; text-align: center; margin-top: 2rem; }
.custom-teaser h3 { color: var(--white); font-size: 1.5rem; font-weight: 700; margin-bottom: 0.75rem; }
.custom-teaser p { color: var(--teal-300); font-size: 1.05rem; max-width: 550px; margin: 0 auto 1.5rem; line-height: 1.7; }

/* All-plans comparison table */
.all-plans-table { width: 100%; border-collapse: collapse; margin-top: 2rem; font-size: 0.9rem; }
.all-plans-table th { text-align: left; padding: 0.85rem 1rem; background: var(--navy-800); color: var(--white); font-weight: 600; font-size: 0.85rem; }
.all-plans-table th:first-child { border-radius: 8px 0 0 0; }
.all-plans-table th:last-child { border-radius: 0 8px 0 0; }
.all-plans-table td { padding: 0.75rem 1rem; border-bottom: 1px solid var(--gray-200); }
.all-plans-table tr:nth-child(even) { background: var(--gray-100); }
.all-plans-table .cat-row { background: var(--teal-100); font-weight: 700; color: var(--navy-800); }

/* What's included grid */
.included-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 2.5rem; }
.included-item { text-align: center; padding: 1.5rem; }
.included-item .inc-icon { width: 48px; height: 48px; background: var(--teal-100); border-radius: 10px; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.included-item .inc-icon svg { width: 24px; height: 24px; stroke: var(--teal-500); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.included-item h4 { font-size: 1rem; font-weight: 600; margin-bottom: 0.35rem; }
.included-item p { font-size: 0.9rem; color: var(--gray-600); line-height: 1.5; }

/* FAQ accordion */
.faq-list { max-width: 800px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--gray-200); }
.faq-q { display: flex; justify-content: space-between; align-items: center; padding: 1.25rem 0; cursor: pointer; font-weight: 600; font-size: 1.05rem; color: var(--gray-800); }
.faq-q:hover { color: var(--teal-500); }
.faq-q svg { width: 20px; height: 20px; stroke: var(--gray-400); fill: none; stroke-width: 2; transition: transform 0.2s; flex-shrink: 0; margin-left: 1rem; }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-a-inner { padding: 0 0 1.25rem; color: var(--gray-600); line-height: 1.7; font-size: 0.95rem; }

/* Breadcrumb */
.breadcrumb { padding: 0.75rem 0; font-size: 0.85rem; color: var(--gray-400); }
.breadcrumb a { color: var(--teal-400); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { margin: 0 0.5rem; }

/* CSP-safe replacements for inline styles */
.nav-active { 