/* ============================================
   PR PLATFORM - ANA TEMA CSS
   Modern, Premium, AI-Powered PR Platform
   ============================================ */

/* ----- RESET & BASE ----- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
body { font-family: var(--pr-font); color: var(--pr-text); background: var(--pr-bg); line-height: 1.6; overflow-x: hidden; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: var(--pr-transition); }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: inherit; }

/* ----- CONTAINER ----- */
.pr-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ----- HEADER ----- */
.pr-header { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 16px 0; transition: var(--pr-transition); background: rgba(255,255,255,0.05); }
.pr-header.scrolled { background: var(--pr-glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid var(--pr-border); padding: 12px 0; }
.pr-header-inner { display: flex; align-items: center; justify-content: space-between; }

.pr-logo { display: flex; align-items: center; gap: 10px; }
.pr-logo-icon { width: 40px; height: 40px; background: var(--pr-gradient-1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 800; font-size: 16px; letter-spacing: -0.5px; }
.pr-logo-text { font-size: 20px; font-weight: 700; color: var(--pr-text); letter-spacing: -0.5px; }
.pr-header.scrolled .pr-logo-text { color: var(--pr-text); }

/* ----- NAVIGATION ----- */
.pr-nav-list { display: flex; list-style: none; gap: 4px; }
.pr-nav-list li a { padding: 8px 16px; font-size: 14px; font-weight: 500; color: var(--pr-muted); border-radius: var(--pr-radius-sm); transition: var(--pr-transition); position: relative; }
.pr-nav-list li a:hover { color: var(--pr-primary); background: rgba(108,92,231,0.06); }
.pr-nav-list li.current-menu-item a { color: var(--pr-primary); font-weight: 600; }
.pr-header-right { display: flex; align-items: center; gap: 8px; }

/* ----- MOBILE TOGGLE ----- */
.pr-mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; }
.pr-mobile-toggle span { width: 24px; height: 2px; background: var(--pr-text); border-radius: 2px; transition: var(--pr-transition); }
.pr-mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.pr-mobile-toggle.active span:nth-child(2) { opacity: 0; }
.pr-mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ----- BUTTONS ----- */
.pr-btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 24px; border-radius: var(--pr-radius-sm); font-weight: 600; font-size: 14px; transition: var(--pr-transition); position: relative; overflow: hidden; }
.pr-btn svg { width: 18px; height: 18px; }
.pr-btn-primary { background: var(--pr-gradient-1); color: #fff; box-shadow: 0 4px 16px rgba(108,92,231,0.3); }
.pr-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(108,92,231,0.4); }
.pr-btn-secondary { background: var(--pr-gradient-2); color: #fff; box-shadow: 0 4px 16px rgba(0,206,201,0.3); }
.pr-btn-accent { background: var(--pr-gradient-3); color: #fff; box-shadow: 0 4px 16px rgba(253,121,168,0.3); }
.pr-btn-ghost { background: transparent; color: var(--pr-muted); border: 1px solid var(--pr-border); }
.pr-btn-ghost:hover { border-color: var(--pr-primary); color: var(--pr-primary); }
.pr-btn-glass { background: var(--pr-glass); backdrop-filter: blur(10px); border: 1px solid rgba(255,255,255,0.2); color: #fff; }
.pr-btn-glass:hover { background: rgba(255,255,255,0.9); color: var(--pr-primary); }
.pr-btn-outline { background: transparent; color: var(--pr-primary); border: 2px solid var(--pr-primary); }
.pr-btn-outline:hover { background: var(--pr-primary); color: #fff; }
.pr-btn-sm { padding: 8px 16px; font-size: 13px; }
.pr-btn-sm svg { width: 14px; height: 14px; }
.pr-btn-lg { padding: 16px 32px; font-size: 16px; }
.pr-btn-block { width: 100%; }
.pr-btn-danger { background: var(--pr-danger); color: #fff; }
.pr-btn-icon { width: 36px; height: 36px; padding: 0; display: inline-flex; align-items: center; justify-content: center; border-radius: var(--pr-radius-sm); color: var(--pr-muted); }
.pr-btn-icon:hover { background: rgba(108,92,231,0.08); color: var(--pr-primary); }

/* ----- BADGES ----- */
.pr-badge { display: inline-flex; align-items: center; padding: 6px 14px; border-radius: 20px; font-size: 12px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; }
.pr-badge-primary { background: rgba(108,92,231,0.1); color: var(--pr-primary); }
.pr-badge-secondary { background: rgba(0,206,201,0.1); color: var(--pr-secondary); }
.pr-badge-accent { background: rgba(253,121,168,0.1); color: var(--pr-accent); }
.pr-badge-sm { padding: 2px 8px; font-size: 10px; border-radius: 10px; background: rgba(253,121,168,0.2); color: var(--pr-accent); margin-left: 4px; }
.pr-badge-draft { background: rgba(99,110,114,0.1); color: var(--pr-muted); }
.pr-badge-sent { background: rgba(0,184,148,0.1); color: var(--pr-success); }
.pr-badge-pending { background: rgba(253,203,110,0.2); color: #B8860B; }

/* ----- TEXT ----- */
.pr-text-gradient { background: var(--pr-gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.pr-text-muted { color: var(--pr-muted); font-size: 14px; }
.pr-text-danger { color: var(--pr-danger) !important; }

/* ----- SECTION ----- */
.pr-section { padding: 100px 0; position: relative; }
.pr-section-header { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.pr-section-title { font-size: 40px; font-weight: 800; line-height: 1.2; margin: 16px 0; letter-spacing: -1px; }
.pr-section-desc { font-size: 18px; color: var(--pr-muted); line-height: 1.7; }

/* ----- HERO ----- */
.pr-hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 120px 0 60px; background: linear-gradient(135deg, #0A0A0F 0%, #141420 50%, #1A1A2E 100%); }
.pr-hero-bg { position: absolute; inset: 0; overflow: hidden; }
.pr-hero-gradient { position: absolute; width: 600px; height: 600px; border-radius: 50%; filter: blur(120px); opacity: 0.15; }
.pr-hero-gradient:nth-child(1) { top: -200px; right: -200px; background: var(--pr-primary); }
.pr-hero-gradient:nth-child(2) { bottom: -200px; left: -200px; background: var(--pr-secondary); }
.pr-hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; position: relative; z-index: 2; }
.pr-hero-content { color: #fff; }
.pr-hero-title { font-size: 56px; font-weight: 800; line-height: 1.1; margin: 20px 0; letter-spacing: -1.5px; }
.pr-hero-subtitle { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-bottom: 32px; max-width: 520px; }
.pr-hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }
.pr-hero-stats { display: flex; gap: 40px; }
.pr-hero-stat { }
.pr-hero-stat-value { font-size: 28px; font-weight: 800; display: block; }
.pr-hero-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); text-transform: uppercase; letter-spacing: 0.5px; }

.pr-hero-visual { position: relative; }
.pr-hero-mockup { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: var(--pr-radius-lg); overflow: hidden; backdrop-filter: blur(20px); }
.pr-mockup-header { padding: 16px 20px; display: flex; align-items: center; gap: 12px; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pr-mockup-dots { display: flex; gap: 6px; }
.pr-mockup-dots span { width: 10px; height: 10px; border-radius: 50%; }
.pr-mockup-dots span:nth-child(1) { background: #FF5F56; }
.pr-mockup-dots span:nth-child(2) { background: #FFBD2E; }
.pr-mockup-dots span:nth-child(3) { background: #27C93F; }
.pr-mockup-title { font-size: 13px; color: rgba(255,255,255,0.6); font-weight: 500; }
.pr-mockup-body { display: grid; grid-template-columns: 60px 1fr; min-height: 300px; }
.pr-mockup-sidebar { padding: 12px 8px; border-right: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; gap: 8px; }
.pr-mockup-menu-item { height: 8px; border-radius: 4px; background: rgba(255,255,255,0.08); }
.pr-mockup-menu-item.active { background: var(--pr-primary); width: 80%; }
.pr-mockup-content { padding: 20px; }
.pr-mockup-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 20px; }
.pr-mockup-stat { height: 60px; border-radius: var(--pr-radius-sm); background: rgba(255,255,255,0.05); }
.pr-mockup-table { display: flex; flex-direction: column; gap: 8px; }
.pr-mockup-row { height: 24px; border-radius: 4px; background: rgba(255,255,255,0.04); }
.pr-mockup-ai { position: absolute; top: -20px; right: -20px; background: var(--pr-gradient-1); padding: 12px 20px; border-radius: var(--pr-radius); display: flex; align-items: center; gap: 8px; color: #fff; font-weight: 600; font-size: 13px; box-shadow: 0 8px 32px rgba(108,92,231,0.4); }
.pr-mockup-ai-icon svg { width: 20px; height: 20px; }

/* ----- FEATURES ----- */
.pr-features { background: var(--pr-bg); }
.pr-features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pr-feature-card { background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius); padding: 32px; transition: var(--pr-transition); }
.pr-feature-card:hover { transform: translateY(-4px); box-shadow: var(--pr-shadow-lg); border-color: transparent; }
.pr-feature-icon { width: 52px; height: 52px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.pr-feature-icon svg { width: 24px; height: 24px; }
.pr-feature-title { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.pr-feature-desc { font-size: 14px; color: var(--pr-muted); line-height: 1.6; }

/* ----- AI FEATURES ----- */
.pr-ai-features { background: linear-gradient(135deg, #0A0A0F, #141420); color: #fff; }
.pr-ai-showcase { max-width: 800px; margin: 0 auto; }
.pr-ai-tabs { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 32px; }
.pr-ai-tab { padding: 12px 20px; border-radius: var(--pr-radius-sm); font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 8px; transition: var(--pr-transition); border: 1px solid rgba(255,255,255,0.08); background: rgba(255,255,255,0.03); }
.pr-ai-tab svg { width: 16px; height: 16px; }
.pr-ai-tab:hover { color: #fff; border-color: rgba(108,92,231,0.4); }
.pr-ai-tab.active { background: rgba(108,92,231,0.2); border-color: var(--pr-primary); color: #fff; }
.pr-ai-panels { }
.pr-ai-panel { display: none; }
.pr-ai-panel.active { display: block; }
.pr-ai-demo { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--pr-radius); overflow: hidden; }
.pr-ai-demo-header { padding: 16px 20px; display: flex; align-items: center; justify-content: space-between; border-bottom: 1px solid rgba(255,255,255,0.08); }
.pr-ai-demo-title { font-weight: 600; }
.pr-ai-demo-badge { font-size: 11px; padding: 4px 10px; border-radius: 12px; background: rgba(0,206,201,0.2); color: var(--pr-secondary); font-weight: 600; }
.pr-ai-demo-body { padding: 20px; }
.pr-ai-input-area { display: flex; gap: 8px; margin-bottom: 20px; }
.pr-ai-input-area .pr-input { background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12); color: #fff; flex: 1; }
.pr-ai-input-area .pr-input::placeholder { color: rgba(255,255,255,0.3); }
.pr-ai-result { background: rgba(255,255,255,0.03); border-radius: var(--pr-radius-sm); padding: 16px; }
.pr-ai-result-header { display: flex; justify-content: space-between; margin-bottom: 12px; }
.pr-ai-result-title { font-size: 13px; color: rgba(255,255,255,0.6); }
.pr-ai-result-action { font-size: 12px; color: var(--pr-primary); cursor: pointer; }
.pr-ai-result-item { padding: 10px 12px; background: rgba(255,255,255,0.05); border-radius: 6px; margin-bottom: 6px; font-size: 14px; }

/* ----- DASHBOARD PREVIEW ----- */
.pr-dashboard-preview { background: var(--pr-bg); }
.pr-dashboard-window { max-width: 900px; margin: 0 auto; background: #1A1A2E; border-radius: var(--pr-radius-lg); overflow: hidden; box-shadow: 0 40px 80px rgba(0,0,0,0.2); }
.pr-window-header { padding: 16px 20px; display: flex; align-items: center; gap: 12px; background: rgba(255,255,255,0.03); }
.pr-window-dots { display: flex; gap: 6px; }
.pr-window-dots span { width: 12px; height: 12px; border-radius: 50%; }
.pr-window-title { font-size: 13px; color: rgba(255,255,255,0.5); font-weight: 500; }
.pr-window-body { padding: 30px; }
.pr-preview-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.pr-preview-stat-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--pr-radius); padding: 20px; }
.pr-preview-stat-value { font-size: 32px; font-weight: 800; color: #fff; }
.pr-preview-stat-label { font-size: 13px; color: rgba(255,255,255,0.5); margin: 4px 0; }
.pr-preview-stat-change { font-size: 12px; font-weight: 600; }
.pr-preview-stat-change.positive { color: var(--pr-success); }
.pr-preview-stat-change.neutral { color: var(--pr-muted); }
.pr-preview-chart { background: rgba(255,255,255,0.03); border-radius: var(--pr-radius); padding: 20px; }
.pr-preview-chart-bars { display: flex; align-items: flex-end; gap: 12px; height: 120px; }
.pr-preview-bar { flex: 1; background: var(--pr-gradient-1); border-radius: 6px 6px 0 0; opacity: 0.6; transition: var(--pr-transition); }
.pr-preview-bar:hover { opacity: 1; }

/* ----- STATS SECTION ----- */
.pr-stats-section { background: linear-gradient(135deg, #0A0A0F, #141420); color: #fff; }
.pr-stats-large { display: grid; grid-template-columns: repeat(4, 1fr); gap: 40px; text-align: center; }
.pr-stat-large-value { font-size: 48px; font-weight: 800; background: var(--pr-gradient-1); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; display: block; }
.pr-stat-large-label { font-size: 16px; color: rgba(255,255,255,0.6); margin-top: 8px; }

/* ----- REFERENCES ----- */
.pr-references { background: var(--pr-bg); }
.pr-reference-logos { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.pr-reference-logo { }
.pr-ref-placeholder { border-radius: var(--pr-radius); padding: 40px; display: flex; align-items: center; justify-content: center; border-radius: var(--pr-radius); }
.pr-ref-placeholder span { color: rgba(255,255,255,0.8); font-weight: 700; font-size: 18px; }

/* ----- PRICING ----- */
.pr-pricing { background: var(--pr-bg); }
.pr-pricing-toggle { display: flex; align-items: center; gap: 4px; background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius-sm); padding: 4px; max-width: 240px; margin: 0 auto 40px; }
.pr-pricing-toggle button { padding: 10px 20px; border-radius: 6px; font-weight: 600; font-size: 14px; color: var(--pr-muted); transition: var(--pr-transition); flex: 1; }
.pr-pricing-toggle button.active { background: var(--pr-primary); color: #fff; }
.pr-pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 1024px; margin: 0 auto; }
.pr-pricing-card { background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius-lg); padding: 40px 32px; position: relative; transition: var(--pr-transition); }
.pr-pricing-card:hover { box-shadow: var(--pr-shadow-lg); }
.pr-pricing-popular { border-color: var(--pr-primary); box-shadow: 0 8px 32px rgba(108,92,231,0.15); transform: scale(1.05); }
.pr-pricing-popular:hover { transform: scale(1.05) translateY(-4px); }
.pr-pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--pr-gradient-1); color: #fff; padding: 4px 20px; border-radius: 20px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
.pr-pricing-name { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pr-pricing-desc { font-size: 14px; color: var(--pr-muted); }
.pr-pricing-price { margin: 24px 0; display: flex; align-items: baseline; gap: 2px; }
.pr-price-currency { font-size: 18px; font-weight: 600; color: var(--pr-muted); }
.pr-price-amount { font-size: 48px; font-weight: 800; line-height: 1; letter-spacing: -2px; }
.pr-price-period { font-size: 16px; color: var(--pr-muted); }
.pr-pricing-features { list-style: none; margin: 24px 0; display: flex; flex-direction: column; gap: 12px; }
.pr-pricing-features li { padding-left: 28px; position: relative; font-size: 14px; color: var(--pr-muted); }
.pr-pricing-features li::before { content: ''; position: absolute; left: 0; top: 2px; width: 18px; height: 18px; border-radius: 50%; }
.pr-pricing-features li.available::before { background: var(--pr-success); mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/10px no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E") center/10px no-repeat; }
.pr-pricing-features li.unavailable::before { background: var(--pr-border); mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") center/10px no-repeat; -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3'%3E%3Cline x1='18' y1='6' x2='6' y2='18'%3E%3C/line%3E%3Cline x1='6' y1='6' x2='18' y2='18'%3E%3C/line%3E%3C/svg%3E") center/10px no-repeat; }

/* ----- TESTIMONIALS ----- */
.pr-testimonials { background: var(--pr-bg); }
.pr-testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pr-testimonial-card { background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius); padding: 32px; }
.pr-testimonial-stars { display: flex; gap: 2px; margin-bottom: 16px; }
.pr-testimonial-stars svg { width: 18px; height: 18px; color: #FDCB6E; }
.pr-testimonial-text { font-size: 15px; line-height: 1.7; color: var(--pr-muted); margin-bottom: 20px; font-style: italic; }
.pr-testimonial-author { display: flex; align-items: center; gap: 12px; }
.pr-testimonial-avatar { width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-weight: 700; font-size: 16px; }
.pr-testimonial-info strong { display: block; font-size: 14px; }
.pr-testimonial-info span { font-size: 12px; color: var(--pr-muted); }

/* ----- BLOG SECTION ----- */
.pr-blog-section { background: var(--pr-bg); }
.pr-blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pr-blog-card { background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius); overflow: hidden; transition: var(--pr-transition); }
.pr-blog-card:hover { transform: translateY(-4px); box-shadow: var(--pr-shadow-lg); }
.pr-blog-image { height: 200px; display: flex; align-items: center; justify-content: center; }
.pr-blog-image img { width: 100%; height: 100%; object-fit: cover; }
.pr-blog-image-text { color: rgba(255,255,255,0.3); font-size: 48px; font-weight: 800; }
.pr-blog-body { padding: 24px; }
.pr-blog-meta { display: flex; gap: 12px; margin-bottom: 12px; font-size: 12px; }
.pr-blog-category { color: var(--pr-primary); font-weight: 600; }
.pr-blog-date { color: var(--pr-muted); }
.pr-blog-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pr-blog-excerpt { font-size: 14px; color: var(--pr-muted); line-height: 1.6; margin-bottom: 16px; }
.pr-blog-link { color: var(--pr-primary); font-weight: 600; font-size: 14px; }

/* ----- NEWSLETTER ----- */
.pr-newsletter-section { background: linear-gradient(135deg, #0A0A0F, #141420); }
.pr-newsletter-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.08); border-radius: var(--pr-radius-lg); padding: 60px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
.pr-newsletter-title { font-size: 32px; font-weight: 800; color: #fff; margin-bottom: 16px; }
.pr-newsletter-desc { font-size: 16px; color: rgba(255,255,255,0.6); margin-bottom: 24px; }
.pr-newsletter-input-group { display: flex; gap: 8px; }
.pr-newsletter-input-group .pr-input { flex: 1; background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #fff; padding: 16px 20px; border-radius: var(--pr-radius-sm); font-size: 16px; }
.pr-newsletter-input-group .pr-input::placeholder { color: rgba(255,255,255,0.3); }
.pr-newsletter-consent { margin-top: 16px; color: rgba(255,255,255,0.5); font-size: 13px; }
.pr-newsletter-icon svg { width: 120px; height: 120px; color: rgba(108,92,231,0.3); }

/* ----- FOOTER ----- */
.pr-footer { background: #0A0A0F; color: #fff; padding: 80px 0 0; }
.pr-footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.5fr; gap: 40px; padding-bottom: 60px; border-bottom: 1px solid rgba(255,255,255,0.06); }
.pr-footer .pr-logo-text { color: #fff; }
.pr-footer-desc { font-size: 14px; color: rgba(255,255,255,0.5); line-height: 1.7; margin: 16px 0; }
.pr-footer-social { display: flex; gap: 12px; }
.pr-social-link { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.05); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); transition: var(--pr-transition); }
.pr-social-link:hover { background: var(--pr-primary); color: #fff; }
.pr-social-link svg { width: 18px; height: 18px; }
.pr-footer-title { font-size: 14px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; color: rgba(255,255,255,0.8); }
.pr-footer-links { list-style: none; }
.pr-footer-links li { margin-bottom: 10px; }
.pr-footer-links a { font-size: 14px; color: rgba(255,255,255,0.5); transition: var(--pr-transition); }
.pr-footer-links a:hover { color: var(--pr-primary); }
.pr-footer-subscribe { display: flex; gap: 8px; }
.pr-footer-subscribe .pr-input { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); color: #fff; flex: 1; }
.pr-footer-subscribe .pr-btn { white-space: nowrap; }
.pr-footer-bottom { padding: 24px 0; display: flex; align-items: center; justify-content: space-between; font-size: 13px; color: rgba(255,255,255,0.3); }
.pr-footer-bottom-links { display: flex; gap: 20px; }
.pr-footer-bottom-links a { color: rgba(255,255,255,0.3); }
.pr-footer-bottom-links a:hover { color: var(--pr-primary); }

/* ----- AUTH PAGES ----- */
.pr-auth-page { min-height: 100vh; display: flex; align-items: center; justify-content: center; position: relative; background: var(--pr-bg); }
.pr-auth-bg { position: absolute; inset: 0; overflow: hidden; }
.pr-auth-gradient { position: absolute; width: 500px; height: 500px; border-radius: 50%; filter: blur(100px); opacity: 0.08; }
.pr-auth-gradient:nth-child(1) { top: -100px; right: -100px; background: var(--pr-primary); }
.pr-auth-gradient:nth-child(2) { bottom: -100px; left: -100px; background: var(--pr-secondary); }
.pr-auth-container { width: 100%; max-width: 440px; position: relative; z-index: 2; padding: 20px; }
.pr-auth-container-lg { max-width: 600px; }
.pr-auth-card { background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius-lg); padding: 40px; box-shadow: var(--pr-shadow-lg); }
.pr-auth-header { text-align: center; margin-bottom: 32px; }
.pr-auth-logo { justify-content: center; margin-bottom: 24px; }
.pr-auth-title { font-size: 28px; font-weight: 800; margin-bottom: 8px; }
.pr-auth-subtitle { color: var(--pr-muted); font-size: 16px; }
.pr-auth-form { }
.pr-auth-divider { text-align: center; margin: 24px 0; position: relative; }
.pr-auth-divider::before { content: ''; position: absolute; top: 50%; left: 0; right: 0; height: 1px; background: var(--pr-border); }
.pr-auth-divider span { background: var(--pr-surface); padding: 0 16px; position: relative; color: var(--pr-muted); font-size: 13px; }
.pr-social-login { display: flex; flex-direction: column; gap: 8px; }
.pr-btn-social { padding: 12px; border: 1px solid var(--pr-border); border-radius: var(--pr-radius-sm); font-weight: 500; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; }
.pr-btn-social svg { width: 20px; height: 20px; }
.pr-btn-google { color: #4285F4; }
.pr-btn-apple { color: #000; }
.pr-btn-linkedin { color: #0077B5; }
.pr-auth-footer { text-align: center; margin-top: 24px; font-size: 14px; color: var(--pr-muted); }
.pr-link { color: var(--pr-primary); font-weight: 600; }
.pr-link:hover { text-decoration: underline; }

/* ----- AUTH STEPS ----- */
.pr-auth-steps { display: flex; gap: 8px; justify-content: center; margin-bottom: 32px; }
.pr-step { display: flex; align-items: center; gap: 8px; padding: 8px 16px; border-radius: var(--pr-radius-sm); background: var(--pr-bg); border: 1px solid var(--pr-border); font-size: 13px; font-weight: 500; color: var(--pr-muted); }
.pr-step.active { background: rgba(108,92,231,0.06); border-color: var(--pr-primary); color: var(--pr-primary); }
.pr-step-number { width: 24px; height: 24px; border-radius: 50%; background: var(--pr-border); display: flex; align-items: center; justify-content: center; font-size: 12px; font-weight: 700; color: var(--pr-muted); }
.pr-step.active .pr-step-number { background: var(--pr-primary); color: #fff; }
.pr-step-content { display: none; }
.pr-step-content.active { display: block; }

/* ----- ROLE SELECTOR ----- */
.pr-role-selector { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.pr-role-option input { display: none; }
.pr-role-card { border: 2px solid var(--pr-border); border-radius: var(--pr-radius); padding: 20px; text-align: center; cursor: pointer; transition: var(--pr-transition); }
.pr-role-option input:checked + .pr-role-card { border-color: var(--pr-primary); background: rgba(108,92,231,0.04); }
.pr-role-card svg { width: 32px; height: 32px; color: var(--pr-muted); margin-bottom: 8px; }
.pr-role-option input:checked + .pr-role-card svg { color: var(--pr-primary); }
.pr-role-title { display: block; font-weight: 600; font-size: 14px; }
.pr-role-desc { display: block; font-size: 12px; color: var(--pr-muted); margin-top: 4px; }

/* ----- FORM ELEMENTS ----- */
.pr-form-group { margin-bottom: 20px; }
.pr-form-grid { display: grid; gap: 20px; }
.pr-form-grid-2 { grid-template-columns: 1fr 1fr; }
.pr-label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px; }
.pr-label-sm { font-size: 12px; font-weight: 500; color: var(--pr-muted); margin-bottom: 6px; display: block; }
.pr-input { width: 100%; padding: 12px 16px; border: 1px solid var(--pr-border); border-radius: var(--pr-radius-sm); font-size: 14px; background: var(--pr-surface); color: var(--pr-text); transition: var(--pr-transition); outline: none; }
.pr-input:focus { border-color: var(--pr-primary); box-shadow: 0 0 0 3px rgba(108,92,231,0.1); }
.pr-input-lg { padding: 16px 20px; font-size: 16px; }
.pr-input::placeholder { color: #B2BEC3; }
.pr-select { width: 100%; padding: 12px 16px; border: 1px solid var(--pr-border); border-radius: var(--pr-radius-sm); font-size: 14px; background: var(--pr-surface); color: var(--pr-text); cursor: pointer; outline: none; appearance: none; background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%23636E72' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 12px center; background-size: 16px; }
.pr-select:focus { border-color: var(--pr-primary); }
.pr-select[multiple] { background-image: none; padding: 4px; }
.pr-select[multiple] option { padding: 8px; border-radius: 4px; }
.pr-checkbox { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; cursor: pointer; }
.pr-checkbox input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--pr-primary); }
.pr-form-row { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.pr-form-actions { display: flex; gap: 12px; margin-top: 24px; }
.pr-form-footer { margin-top: 32px; border-top: 1px solid var(--pr-border); padding-top: 24px; }
.pr-form-legal { margin-bottom: 20px; display: flex; flex-direction: column; gap: 12px; }
.pr-form-hint { font-size: 12px; color: var(--pr-muted); margin-top: 4px; }
.pr-input-group { display: flex; gap: 8px; }
.pr-input-password { position: relative; }
.pr-password-toggle { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); color: var(--pr-muted); }
.pr-password-toggle svg { width: 20px; height: 20px; }
.pr-file-input { width: 100%; padding: 40px 20px; border: 2px dashed var(--pr-border); border-radius: var(--pr-radius); text-align: center; cursor: pointer; transition: var(--pr-transition); font-size: 14px; color: var(--pr-muted); }
.pr-file-input:hover { border-color: var(--pr-primary); }

/* ----- DASHBOARD LAYOUT ----- */
.pr-dashboard { display: flex; min-height: 100vh; background: var(--pr-bg); }
.pr-dashboard-sidebar { width: 260px; background: var(--pr-surface-dark); border-right: 1px solid var(--pr-border-dark); display: flex; flex-direction: column; position: fixed; left: 0; top: 0; bottom: 0; z-index: 100; }
.pr-sidebar-header { padding: 20px; border-bottom: 1px solid var(--pr-border-dark); }
.pr-sidebar-logo { display: flex; align-items: center; gap: 10px; }
.pr-sidebar-logo .pr-logo-icon { width: 36px; height: 36px; font-size: 14px; }
.pr-sidebar-logo .pr-logo-text { font-size: 18px; color: #fff; }
.pr-sidebar-nav { flex: 1; padding: 12px; overflow-y: auto; display: flex; flex-direction: column; gap: 2px; }
.pr-nav-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; border-radius: var(--pr-radius-sm); color: var(--pr-muted-dark); font-size: 14px; font-weight: 500; transition: var(--pr-transition); }
.pr-nav-item:hover { background: rgba(255,255,255,0.04); color: #fff; }
.pr-nav-item.active { background: rgba(108,92,231,0.15); color: var(--pr-primary-light); }
.pr-nav-icon { width: 20px; height: 20px; flex-shrink: 0; }
.pr-nav-icon svg { width: 100%; height: 100%; }
.pr-nav-label { }
.pr-sidebar-footer { padding: 16px 20px; border-top: 1px solid var(--pr-border-dark); }
.pr-sidebar-user { display: flex; align-items: center; gap: 10px; }
.pr-sidebar-avatar { width: 32px; height: 32px; border-radius: 50%; }
.pr-sidebar-user-info { display: flex; flex-direction: column; }
.pr-sidebar-user-name { font-size: 13px; font-weight: 600; color: #fff; }
.pr-sidebar-user-credits { font-size: 11px; color: var(--pr-muted-dark); }

.pr-dashboard-main { margin-left: 260px; flex: 1; min-height: 100vh; }
.pr-dashboard-header { padding: 32px 32px 24px; display: flex; align-items: flex-start; justify-content: space-between; }
.pr-dashboard-header-left { }
.pr-dashboard-title { font-size: 28px; font-weight: 800; }
.pr-dashboard-subtitle { font-size: 14px; color: var(--pr-muted); margin-top: 4px; }
.pr-dashboard-header-right { }
.pr-dashboard-content { padding: 0 32px 32px; }

/* ----- DASHBOARD STATS ----- */
.pr-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }
.pr-stat-card { background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius); padding: 24px; display: flex; align-items: center; gap: 16px; transition: var(--pr-transition); }
.pr-stat-card:hover { box-shadow: var(--pr-shadow); }
.pr-stat-icon { width: 48px; height: 48px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.pr-stat-icon svg { width: 22px; height: 22px; }
.pr-stat-info { }
.pr-stat-value { font-size: 24px; font-weight: 800; display: block; }
.pr-stat-label { font-size: 13px; color: var(--pr-muted); }

/* ----- DASHBOARD TABLE ----- */
.pr-dashboard-section { margin-bottom: 40px; }
.pr-section-title { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.pr-table-container { background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius); overflow-x: auto; }
.pr-table { width: 100%; border-collapse: collapse; }
.pr-table th { text-align: left; padding: 14px 20px; font-size: 12px; font-weight: 600; color: var(--pr-muted); text-transform: uppercase; letter-spacing: 0.5px; border-bottom: 1px solid var(--pr-border); }
.pr-table td { padding: 14px 20px; font-size: 14px; border-bottom: 1px solid var(--pr-border); }
.pr-table tr:last-child td { border-bottom: none; }
.pr-table tr:hover td { background: rgba(108,92,231,0.02); }
.pr-table-link { color: var(--pr-primary); font-weight: 500; }
.pr-table-actions { display: flex; gap: 4px; }
.pr-table-toolbar { display: flex; gap: 12px; margin-bottom: 16px; }
.pr-search-input { max-width: 280px; }

/* ----- DASHBOARD CARDS ----- */
.pr-card { background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius); padding: 24px; margin-bottom: 20px; }
.pr-card-sm { padding: 20px; }
.pr-card-title { font-size: 16px; font-weight: 700; margin-bottom: 16px; }

/* ----- FORM IN DASHBOARD ----- */
.pr-form-sidebar { display: flex; flex-direction: column; gap: 20px; }
.pr-release-form { }
.pr-form-main { }

/* ----- AI BUTTONS IN FORM ----- */
.pr-ai-btn { display: inline-flex; align-items: center; gap: 6px; padding: 6px 12px; font-size: 12px; font-weight: 500; color: var(--pr-primary); background: rgba(108,92,231,0.06); border-radius: var(--pr-radius-sm); margin-top: 8px; transition: var(--pr-transition); }
.pr-ai-btn:hover { background: rgba(108,92,231,0.12); }
.pr-ai-btn svg { width: 14px; height: 14px; }
.pr-ai-btn-sm { padding: 4px 10px; font-size: 11px; background: rgba(108,92,231,0.08); color: var(--pr-primary); border-radius: 4px; font-weight: 500; }
.pr-ai-btn-sm:hover { background: rgba(108,92,231,0.15); }

/* ----- EDITOR ----- */
.pr-editor-container { border: 1px solid var(--pr-border); border-radius: var(--pr-radius-sm); overflow: hidden; }
.pr-editor-toolbar { padding: 10px 12px; border-bottom: 1px solid var(--pr-border); display: flex; gap: 4px; align-items: center; flex-wrap: wrap; background: var(--pr-bg); }
.pr-editor-toolbar button { padding: 6px 10px; border-radius: 4px; font-size: 13px; font-weight: 500; color: var(--pr-muted); }
.pr-editor-toolbar button:hover { background: var(--pr-border); color: var(--pr-text); }
.pr-editor-sep { width: 1px; height: 20px; background: var(--pr-border); margin: 0 4px; }
.pr-editor-content { min-height: 300px; padding: 20px; outline: none; font-size: 15px; line-height: 1.8; }
.pr-editor-content:empty::before { content: attr(data-placeholder); color: #B2BEC3; }

/* ----- FILE UPLOAD ----- */
.pr-file-upload { }
.pr-upload-area { border: 2px dashed var(--pr-border); border-radius: var(--pr-radius-sm); padding: 40px 20px; text-align: center; cursor: pointer; transition: var(--pr-transition); }
.pr-upload-area:hover { border-color: var(--pr-primary); background: rgba(108,92,231,0.02); }
.pr-upload-area svg { width: 32px; height: 32px; color: var(--pr-muted); margin-bottom: 8px; }
.pr-upload-area p { font-size: 14px; color: var(--pr-text); margin-bottom: 4px; }
.pr-upload-hint { font-size: 12px; color: var(--pr-muted); }
.pr-upload-preview { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
.pr-upload-preview img { width: 80px; height: 80px; object-fit: cover; border-radius: 8px; }

/* ----- EMAIL PREVIEW ----- */
.pr-email-preview { background: #F5F5F7; border-radius: var(--pr-radius-sm); min-height: 400px; padding: 20px; }
.pr-preview-placeholder { display: flex; align-items: center; justify-content: center; height: 360px; color: var(--pr-muted); font-size: 14px; }
.pr-preview-tabs { display: flex; gap: 4px; margin-bottom: 12px; }
.pr-preview-tab { padding: 6px 14px; font-size: 12px; font-weight: 600; border-radius: 6px; color: var(--pr-muted); border: 1px solid var(--pr-border); }
.pr-preview-tab.active { background: var(--pr-primary); color: #fff; border-color: var(--pr-primary); }

/* ----- AI SCORES ----- */
.pr-ai-scores { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.pr-score-item { }
.pr-score-label { font-size: 12px; color: var(--pr-muted); margin-bottom: 4px; display: block; }
.pr-score-bar { height: 6px; background: var(--pr-border); border-radius: 3px; overflow: hidden; }
.pr-score-fill { height: 100%; background: var(--pr-gradient-1); border-radius: 3px; transition: width 0.6s ease; }

/* ----- EVENTS ----- */
.pr-events-grid { display: flex; flex-direction: column; gap: 12px; }
.pr-event-card { display: flex; gap: 20px; background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius); padding: 24px; }
.pr-event-date { text-align: center; min-width: 60px; }
.pr-event-day { display: block; font-size: 28px; font-weight: 800; color: var(--pr-primary); }
.pr-event-month { display: block; font-size: 12px; color: var(--pr-muted); text-transform: uppercase; }
.pr-event-info { flex: 1; }
.pr-event-info h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.pr-event-meta { display: flex; gap: 16px; font-size: 13px; color: var(--pr-muted); }

/* ----- MEDIA LISTS ----- */
.pr-media-lists { }
.pr-media-lists-header { margin-bottom: 20px; }
.pr-lists-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.pr-list-card { background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius); padding: 20px; }
.pr-list-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.pr-list-card p { font-size: 13px; color: var(--pr-muted); margin-bottom: 16px; }
.pr-list-actions { display: flex; gap: 8px; }

/* ----- CREDITS PAGE ----- */
.pr-credit-balance-card { background: var(--pr-gradient-1); border-radius: var(--pr-radius); padding: 32px; color: #fff; display: flex; align-items: center; gap: 20px; margin-bottom: 24px; }
.pr-credit-balance-icon svg { width: 40px; height: 40px; opacity: 0.6; }
.pr-credit-balance-info { flex: 1; }
.pr-credit-amount { font-size: 40px; font-weight: 800; display: block; line-height: 1; }
.pr-credit-label { font-size: 14px; opacity: 0.8; }

/* ----- BILLING ----- */
.pr-billing-section { }
.pr-payment-methods { margin-top: 32px; }
.pr-payment-methods h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; }
.pr-payment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.pr-payment-option { border: 1px solid var(--pr-border); border-radius: var(--pr-radius); padding: 20px; text-align: center; cursor: pointer; transition: var(--pr-transition); }
.pr-payment-option:hover { border-color: var(--pr-primary); box-shadow: var(--pr-shadow); }
.pr-payment-option img { height: 24px; margin-bottom: 8px; }
.pr-payment-option span { display: block; font-size: 13px; font-weight: 500; }
.pr-subscription-status { display: inline-block; padding: 4px 12px; border-radius: 12px; font-size: 12px; font-weight: 600; background: rgba(253,203,110,0.2); color: #B8860B; }

/* ----- MESSAGES ----- */
.pr-messages-container { display: grid; grid-template-columns: 300px 1fr; background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius); overflow: hidden; min-height: 500px; }
.pr-conversations-list { border-right: 1px solid var(--pr-border); }
.pr-conversation-search { padding: 16px; border-bottom: 1px solid var(--pr-border); }
.pr-conversations { padding: 16px; }
.pr-chat-area { display: flex; flex-direction: column; }
.pr-chat-header { padding: 16px 20px; border-bottom: 1px solid var(--pr-border); font-weight: 600; }
.pr-chat-messages { flex: 1; padding: 20px; display: flex; align-items: center; justify-content: center; }
.pr-chat-input { padding: 16px 20px; border-top: 1px solid var(--pr-border); display: flex; gap: 8px; }

/* ----- PRESS ROOM ----- */
.pr-press-room-editor { }
.pr-room-files { margin-top: 20px; }
.pr-room-files h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.pr-file-link { display: inline-flex; align-items: center; gap: 8px; padding: 10px 16px; background: var(--pr-bg); border-radius: var(--pr-radius-sm); font-size: 14px; color: var(--pr-primary); }
.pr-file-link:hover { background: rgba(108,92,231,0.06); }

/* ----- TEMPLATES ----- */
.pr-templates-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.pr-template-card { background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius); overflow: hidden; }
.pr-template-preview { height: 160px; background: var(--pr-bg); display: flex; align-items: center; justify-content: center; }
.pr-template-placeholder { font-size: 14px; color: var(--pr-muted); font-weight: 600; }
.pr-template-info { padding: 16px; }
.pr-template-info h4 { font-size: 14px; font-weight: 600; margin-bottom: 12px; }
.pr-template-actions { display: flex; gap: 8px; }

/* ----- EMPTY STATE ----- */
.pr-empty-state { text-align: center; padding: 60px 20px; }
.pr-empty-state svg { width: 64px; height: 64px; color: var(--pr-muted); margin-bottom: 16px; opacity: 0.5; }
.pr-empty-state h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.pr-empty-state p { color: var(--pr-muted); margin-bottom: 20px; }

/* ----- LOADING ----- */
.pr-loading { display: flex; align-items: center; justify-content: center; padding: 40px; }
.pr-spinner { width: 32px; height: 32px; border: 3px solid var(--pr-border); border-top-color: var(--pr-primary); border-radius: 50%; animation: pr-spin 0.8s linear infinite; }
@keyframes pr-spin { to { transform: rotate(360deg); } }

/* ----- TOAST ----- */
.pr-toast { position: fixed; bottom: 24px; right: 24px; background: var(--pr-surface); border: 1px solid var(--pr-border); border-radius: var(--pr-radius-sm); padding: 16px 20px; box-shadow: var(--pr-shadow-lg); z-index: 10000; display: flex; align-items: center; gap: 12px; min-width: 280px; animation: pr-slide-up 0.3s ease; }
.pr-toast svg { width: 20px; height: 20px; }
.pr-toast.success svg { color: var(--pr-success); }
.pr-toast.error svg { color: var(--pr-danger); }
.pr-toast.info svg { color: var(--pr-primary); }
@keyframes pr-slide-up { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }

/* ----- RESPONSIVE ----- */
@media (max-width: 1024px) {
  .pr-hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .pr-hero-title { font-size: 40px; }
  .pr-hero-visual { display: none; }
  .pr-features-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .pr-pricing-popular { transform: none; }
  .pr-testimonials-grid { grid-template-columns: 1fr; }
  .pr-blog-grid { grid-template-columns: 1fr; }
  .pr-footer-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-stats-large { grid-template-columns: repeat(2, 1fr); }
  .pr-reference-logos { grid-template-columns: repeat(2, 1fr); }
  .pr-stats-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-dashboard-sidebar { width: 72px; }
  .pr-nav-label { display: none; }
  .pr-dashboard-main { margin-left: 72px; }
  .pr-sidebar-user-info { display: none; }
}
@media (max-width: 768px) {
  .pr-header-right .pr-btn { display: none; }
  .pr-header-right .pr-btn:first-child { display: flex; }
  .pr-nav { display: none; position: fixed; inset: 0; top: 72px; background: var(--pr-glass); backdrop-filter: blur(20px); padding: 24px; z-index: 999; }
  .pr-nav.open { display: flex; }
  .pr-nav-list { flex-direction: column; }
  .pr-mobile-toggle { display: flex; }
  .pr-hero-title { font-size: 32px; }
  .pr-section-title { font-size: 28px; }
  .pr-newsletter-card { grid-template-columns: 1fr; padding: 32px; }
  .pr-newsletter-input-group { flex-direction: column; }
  .pr-footer-grid { grid-template-columns: 1fr; }
  .pr-stats-large { grid-template-columns: 1fr 1fr; }
  .pr-stats-grid { grid-template-columns: 1fr 1fr; }
  .pr-features-grid { grid-template-columns: 1fr; }
  .pr-section { padding: 60px 0; }
  .pr-pricing-card { padding: 24px; }
  .pr-form-grid-2 { grid-template-columns: 1fr; }
  .pr-dashboard-header { flex-direction: column; gap: 12px; }
  .pr-dashboard-content { padding: 0 16px 16px; }
  .pr-dashboard-header { padding: 24px 16px 16px; }
  .pr-messages-container { grid-template-columns: 1fr; }
  .pr-lists-grid { grid-template-columns: 1fr; }
  .pr-payment-grid { grid-template-columns: repeat(2, 1fr); }
  .pr-templates-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .pr-hero-stats { flex-wrap: wrap; gap: 20px; }
  .pr-hero-stat { flex: 1; min-width: calc(50% - 20px); }
  .pr-stats-large { grid-template-columns: 1fr; }
  .pr-reference-logos { grid-template-columns: 1fr; }
  .pr-stats-grid { grid-template-columns: 1fr; }
  .pr-role-selector { grid-template-columns: 1fr; }
  .pr-auth-steps { flex-direction: column; align-items: stretch; }
}
