/* ═══════════════════════════════════════════
   MPTools — Bright & Animated Design
   ═══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
  --bg: #ffffff;
  --bg2: #f7f8fc;
  --bg3: #eef0f6;
  --bg-card: #ffffff;
  --surface: #f0f2f8;
  --border: #e2e5f0;
  --border-hover: #c5c9db;
  --primary: #5046e5;
  --primary-light: #6c63ff;
  --primary-dark: #3d35c4;
  --primary-bg: #f0efff;
  --accent: #00c6fb;
  --accent2: #ff6b6b;
  --gradient-main: linear-gradient(135deg, #5046e5 0%, #00c6fb 100%);
  --gradient-warm: linear-gradient(135deg, #ff6b6b 0%, #ffa726 100%);
  --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
  --gradient-card: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
  --success: #00c853;
  --warning: #ff9800;
  --danger: #ff3d57;
  --text: #1a1d2e;
  --text2: #5a6178;
  --text3: #8b92a9;
  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 8px rgba(80, 70, 229, 0.06);
  --shadow: 0 4px 20px rgba(80, 70, 229, 0.08);
  --shadow-lg: 0 12px 40px rgba(80, 70, 229, 0.12);
  --shadow-glow: 0 8px 30px rgba(80, 70, 229, 0.25);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', -apple-system, sans-serif; background: var(--bg); color: var(--text); line-height: 1.6; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
a { color: var(--primary); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--primary-dark); }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ─── Animations ─── */
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.6; } }
@keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes slideIn { from { opacity: 0; transform: translateX(-20px); } to { opacity: 1; transform: translateX(0); } }
@keyframes scaleIn { from { opacity: 0; transform: scale(0.95); } to { opacity: 1; transform: scale(1); } }
@keyframes gradientFlow { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }
@keyframes blobMove { 0%,100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; } 50% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; } }
.animate-in { animation: slideUp 0.6s ease-out forwards; opacity: 0; }
.animate-in:nth-child(2) { animation-delay: 0.1s; }
.animate-in:nth-child(3) { animation-delay: 0.2s; }
.animate-in:nth-child(4) { animation-delay: 0.3s; }
.animate-in:nth-child(5) { animation-delay: 0.4s; }
.animate-in:nth-child(6) { animation-delay: 0.5s; }

/* ─── Buttons ─── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 12px; font-size: 15px; font-weight: 600; cursor: pointer; border: none; transition: all 0.3s cubic-bezier(0.4,0,0.2,1); text-decoration: none; position: relative; overflow: hidden; }
.btn::after { content: ''; position: absolute; inset: 0; background: linear-gradient(rgba(255,255,255,0.2), transparent); opacity: 0; transition: opacity 0.3s; }
.btn:hover::after { opacity: 1; }
.btn-primary { background: var(--gradient-main); color: #fff; box-shadow: 0 4px 16px rgba(80, 70, 229, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-glow); color: #fff; }
.btn-primary:active { transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--text); border: 2px solid var(--border); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); background: var(--primary-bg); }
.btn-ghost { background: var(--primary-bg); color: var(--primary); border: 1px solid rgba(80,70,229,0.2); }
.btn-ghost:hover { background: rgba(80,70,229,0.12); box-shadow: var(--shadow-sm); }
.btn-sm { padding: 8px 18px; font-size: 13px; border-radius: 10px; }
.btn-lg { padding: 18px 42px; font-size: 17px; border-radius: 16px; }
.btn-full { width: 100%; justify-content: center; }
.btn-danger { background: var(--danger); color: #fff; }

/* ─── Navbar ─── */
.navbar { padding: 14px 0; background: rgba(255,255,255,0.85); backdrop-filter: blur(20px) saturate(180%); border-bottom: 1px solid rgba(226,229,240,0.6); position: sticky; top: 0; z-index: 100; transition: box-shadow 0.3s; }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.06); }
.nav-content { display: flex; align-items: center; justify-content: space-between; }
.logo { font-size: 24px; font-weight: 900; color: var(--text); display: flex; align-items: center; gap: 10px; letter-spacing: -0.5px; }
.logo:hover { color: var(--text); }
.logo-icon { width: 36px; height: 36px; background: var(--gradient-main); border-radius: 10px; display: flex; align-items: center; justify-content: center; font-size: 20px; box-shadow: 0 4px 12px rgba(80,70,229,0.3); transition: transform 0.3s; }
.logo:hover .logo-icon { transform: rotate(12deg) scale(1.05); }
.nav-links { display: flex; align-items: center; gap: 8px; }

/* ─── Hero ─── */
.hero { padding: 100px 0 80px; text-align: center; position: relative; overflow: hidden; background: linear-gradient(180deg, #f0efff 0%, #ffffff 100%); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.hero-blob { position: absolute; width: 600px; height: 600px; opacity: 0.15; filter: blur(80px); animation: blobMove 8s ease-in-out infinite; }
.hero-blob-1 { top: -200px; right: -100px; background: var(--primary); }
.hero-blob-2 { bottom: -200px; left: -100px; background: var(--accent); animation-delay: -4s; }
.hero-blob-3 { top: 50%; left: 60%; background: #ff6b6b; width: 400px; height: 400px; animation-delay: -2s; }
.hero-content { position: relative; z-index: 1; }
.hero h1 { font-size: 60px; font-weight: 900; line-height: 1.1; margin-bottom: 24px; letter-spacing: -2px; animation: slideUp 0.8s ease-out; }
.hero h1 .gradient-text { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; background-size: 200% auto; animation: gradientFlow 3s ease-in-out infinite; }
.hero-sub { font-size: 20px; color: var(--text2); max-width: 560px; margin: 0 auto 40px; line-height: 1.7; animation: slideUp 0.8s ease-out 0.2s backwards; }
.hero-cta { animation: slideUp 0.8s ease-out 0.4s backwards; }
.hero-badges { display: flex; justify-content: center; gap: 12px; margin-top: 36px; flex-wrap: wrap; animation: slideUp 0.8s ease-out 0.6s backwards; }
.hero-badge { display: flex; align-items: center; gap: 8px; padding: 10px 20px; background: rgba(255,255,255,0.9); backdrop-filter: blur(10px); border: 1px solid var(--border); border-radius: 50px; font-size: 14px; font-weight: 500; color: var(--text2); box-shadow: var(--shadow-sm); transition: all 0.3s; }
.hero-badge:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.hero-badge .badge-icon { font-size: 18px; }

/* ─── Floating elements ─── */
.hero-float { position: absolute; z-index: 0; animation: float 6s ease-in-out infinite; pointer-events: none; }
.hero-float-1 { top: 15%; left: 8%; font-size: 48px; animation-delay: 0s; opacity: 0.2; }
.hero-float-2 { top: 25%; right: 10%; font-size: 40px; animation-delay: -2s; opacity: 0.2; }
.hero-float-3 { bottom: 20%; left: 12%; font-size: 36px; animation-delay: -4s; opacity: 0.15; }
.hero-float-4 { bottom: 30%; right: 8%; font-size: 44px; animation-delay: -1s; opacity: 0.15; }

/* ─── Modules ─── */
.modules { padding: 100px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: 44px; font-weight: 900; margin-bottom: 16px; letter-spacing: -1px; }
.section-header p { font-size: 18px; color: var(--text2); max-width: 500px; margin: 0 auto; }
.section-label { display: inline-block; padding: 6px 16px; background: var(--primary-bg); color: var(--primary); border-radius: 50px; font-size: 13px; font-weight: 700; margin-bottom: 16px; letter-spacing: 0.5px; text-transform: uppercase; }

.modules-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(350px, 1fr)); gap: 24px; }
.module-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 36px; transition: all 0.4s cubic-bezier(0.4,0,0.2,1); position: relative; overflow: hidden; }
.module-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px; background: var(--gradient-main); transform: scaleX(0); transform-origin: left; transition: transform 0.4s ease; }
.module-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.module-card:hover::before { transform: scaleX(1); }
.module-card.active { border-color: rgba(80,70,229,0.3); }
.module-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 28px; margin-bottom: 20px; background: var(--primary-bg); transition: transform 0.3s; }
.module-card:hover .module-icon { transform: scale(1.1) rotate(5deg); }
.module-card.soon .module-icon { background: var(--bg3); }
.module-card h3 { font-size: 21px; font-weight: 800; margin-bottom: 10px; }
.module-card p { color: var(--text2); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.module-price { font-size: 14px; color: var(--text3); }
.module-price strong { color: var(--primary); font-size: 20px; font-weight: 800; }
.module-badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.module-badge.live { background: rgba(0,200,83,0.1); color: var(--success); }
.module-badge.live::before { content: ''; display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: var(--success); margin-right: 6px; animation: pulse 2s infinite; }
.module-badge.soon { background: rgba(255,152,0,0.1); color: var(--warning); }
.module-features { list-style: none; margin: 16px 0; }
.module-features li { padding: 7px 0; font-size: 14px; color: var(--text2); display: flex; align-items: center; gap: 8px; }
.module-features li::before { content: '✓'; color: var(--primary); font-weight: 800; font-size: 13px; width: 22px; height: 22px; background: var(--primary-bg); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }

/* ─── How It Works ─── */
.how-it-works { padding: 100px 0; background: var(--bg2); position: relative; }
.how-it-works::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, transparent, var(--primary), transparent); }
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 64px; position: relative; }
.steps::before { content: ''; position: absolute; top: 36px; left: 15%; right: 15%; height: 3px; background: var(--gradient-main); border-radius: 2px; opacity: 0.2; }
.step { text-align: center; padding: 24px; position: relative; }
.step-num { width: 72px; height: 72px; background: var(--gradient-main); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 28px; font-weight: 900; margin: 0 auto 24px; color: #fff; box-shadow: 0 8px 24px rgba(80,70,229,0.3); transition: transform 0.3s; position: relative; z-index: 1; }
.step:hover .step-num { transform: scale(1.1); }
.step h3 { font-size: 20px; font-weight: 800; margin-bottom: 10px; }
.step p { color: var(--text2); font-size: 15px; max-width: 280px; margin: 0 auto; }

/* ─── Pricing ─── */
.pricing { padding: 100px 0; }
.pricing-tabs { display: flex; justify-content: center; gap: 8px; margin-bottom: 48px; }
.pricing-tab { padding: 12px 28px; border-radius: 50px; border: 2px solid var(--border); background: transparent; color: var(--text2); font-size: 15px; font-weight: 600; cursor: pointer; transition: all .3s; }
.pricing-tab.active { background: var(--gradient-main); color: #fff; border-color: transparent; box-shadow: 0 4px 16px rgba(80,70,229,0.3); }
.pricing-tab:hover:not(.active) { border-color: var(--primary); color: var(--primary); }
.pricing-note { text-align: center; color: var(--text3); margin-top: 28px; font-size: 14px; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 960px; margin: 0 auto; }
.price-card { background: var(--bg-card); border: 2px solid var(--border); border-radius: var(--radius-lg); padding: 40px 32px; text-align: center; position: relative; transition: all .4s cubic-bezier(0.4,0,0.2,1); }
.price-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.price-card.popular { border-color: var(--primary); transform: scale(1.03); box-shadow: var(--shadow-lg); }
.price-card.popular:hover { transform: scale(1.03) translateY(-8px); box-shadow: 0 20px 60px rgba(80,70,229,0.2); }
.price-card .popular-badge { position: absolute; top: -14px; left: 50%; transform: translateX(-50%); background: var(--gradient-main); color: #fff; padding: 6px 24px; border-radius: 50px; font-size: 12px; font-weight: 700; box-shadow: 0 4px 12px rgba(80,70,229,0.3); }
.price-card h3 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.price-card .price-desc { font-size: 14px; color: var(--text3); margin-bottom: 16px; }
.price-amount { font-size: 48px; font-weight: 900; margin: 20px 0; letter-spacing: -1px; }
.price-amount span { font-size: 16px; font-weight: 500; color: var(--text3); }
.price-amount.gradient { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.price-card ul { list-style: none; margin: 28px 0; text-align: left; }
.price-card li { padding: 10px 0; color: var(--text2); font-size: 15px; border-bottom: 1px solid var(--bg3); display: flex; align-items: center; gap: 10px; }
.price-card li:last-child { border: none; }
.price-card li .check { color: var(--success); font-weight: 800; font-size: 16px; }

/* ─── Stats ─── */
.stats-strip { padding: 80px 0; background: linear-gradient(135deg, #5046e5, #00c6fb); position: relative; overflow: hidden; }
.stats-strip::before { content: ''; position: absolute; inset: 0; background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E"); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; position: relative; }
.stat-item { padding: 20px; }
.stat-item .stat-num { font-size: 48px; font-weight: 900; color: #fff; }
.stat-item .stat-label { color: rgba(255,255,255,0.8); font-size: 15px; margin-top: 8px; font-weight: 500; }

/* ─── CTA ─── */
.cta-section { padding: 120px 0; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); width: 600px; height: 600px; background: radial-gradient(circle, var(--primary-bg) 0%, transparent 70%); pointer-events: none; }
.cta-section h2 { font-size: 44px; font-weight: 900; margin-bottom: 16px; letter-spacing: -1px; position: relative; }
.cta-section p { color: var(--text2); font-size: 20px; margin-bottom: 40px; position: relative; }

/* ─── Marquee / Logos ─── */
.trust-strip { padding: 40px 0; text-align: center; }
.trust-strip p { font-size: 13px; color: var(--text3); text-transform: uppercase; letter-spacing: 2px; font-weight: 600; margin-bottom: 24px; }
.trust-logos { display: flex; justify-content: center; align-items: center; gap: 48px; flex-wrap: wrap; }
.trust-logo { font-size: 24px; font-weight: 800; color: var(--text3); opacity: 0.4; transition: opacity 0.3s; }
.trust-logo:hover { opacity: 0.7; }

/* ─── Footer ─── */
footer { padding: 48px 0; border-top: 1px solid var(--border); background: var(--bg2); }
.footer-content { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--text3); font-size: 14px; font-weight: 500; }
.footer-links a:hover { color: var(--primary); }
.footer-copy { color: var(--text3); font-size: 14px; }

/* ─── Auth ─── */
.auth-container { min-height: 100vh; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 20px; background: var(--bg2); }
.auth-card { background: var(--bg-card); border-radius: var(--radius-lg); padding: 48px 40px; width: 100%; max-width: 440px; margin-top: 30px; border: 1px solid var(--border); text-align: center; box-shadow: var(--shadow-lg); }
.auth-card h2 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }

/* ─── Dashboard ─── */
.dash { padding: 30px 0; }
.dash-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 30px; flex-wrap: wrap; gap: 16px; }
.dash-user { display: flex; align-items: center; gap: 12px; }
.dash-user img { width: 36px; height: 36px; border-radius: 50%; border: 2px solid var(--border); }
.dash-stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; margin-bottom: 30px; }
.dash-stat { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 28px; text-align: center; transition: all 0.3s; }
.dash-stat:hover { box-shadow: var(--shadow); }
.dash-stat .num { font-size: 36px; font-weight: 900; }
.dash-stat .num.gradient { background: var(--gradient-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.dash-stat .label { color: var(--text2); font-size: 13px; margin-top: 4px; }
.dash-modules { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 16px; margin-top: 24px; }
.dash-module { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; display: flex; align-items: flex-start; gap: 16px; transition: all .3s; cursor: pointer; }
.dash-module:hover { border-color: var(--primary); box-shadow: var(--shadow); transform: translateY(-2px); }
.dash-module.disabled { opacity: 0.5; cursor: default; }
.dash-module.disabled:hover { transform: none; box-shadow: none; border-color: var(--border); }
.dash-module-icon { font-size: 28px; }
.dash-module h4 { font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.dash-module p { font-size: 13px; color: var(--text2); }
.shops-list { margin-top: 24px; }
.shop-row { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px; margin-bottom: 12px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; transition: all 0.3s; }
.shop-row:hover { box-shadow: var(--shadow); }
.shop-info { display: flex; align-items: center; gap: 12px; }
.shop-platform { padding: 5px 14px; border-radius: 8px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.shop-platform.wb { background: linear-gradient(135deg, #cb11ab20, #7b2fce20); color: #9b1fd0; }
.shop-platform.ozon { background: linear-gradient(135deg, #005bff20, #0066ff20); color: #005bff; }
.shop-actions { display: flex; gap: 8px; }

/* ─── Modal ─── */
.modal { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(26,29,46,0.5); backdrop-filter: blur(8px); z-index: 200; align-items: center; justify-content: center; padding: 20px; }
.modal-content { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; width: 100%; max-width: 480px; box-shadow: var(--shadow-lg); animation: scaleIn 0.3s ease-out; }
.modal-content h2 { margin-bottom: 24px; font-weight: 800; }
.modal-content label { display: block; margin-bottom: 18px; color: var(--text2); font-size: 14px; font-weight: 500; }
.modal-content input, .modal-content select { display: block; width: 100%; padding: 14px 16px; margin-top: 8px; border-radius: 12px; border: 2px solid var(--border); background: var(--bg); color: var(--text); font-size: 15px; transition: all 0.3s; }
.modal-content input:focus, .modal-content select:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 4px var(--primary-bg); }
.error { color: var(--danger); background: rgba(255,61,87,0.08); padding: 12px 16px; border-radius: 12px; font-size: 14px; margin-bottom: 16px; border: 1px solid rgba(255,61,87,0.15); }
.help-text { font-size: 13px; color: var(--text3); margin-bottom: 18px; padding: 12px 14px; background: var(--bg2); border-radius: 10px; border: 1px solid var(--border); }

/* ─── Review cards (module page) ─── */
.review-card { background: var(--bg-card); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 14px; transition: all 0.3s; }
.review-card:hover { box-shadow: var(--shadow); }
.review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; flex-wrap: wrap; gap: 8px; }
.review-stars { color: #f59e0b; font-size: 16px; letter-spacing: 1px; }
.review-author { color: var(--text3); font-size: 13px; font-weight: 500; }
.review-product { font-size: 13px; color: var(--text3); margin-bottom: 8px; }
.review-text { font-size: 15px; line-height: 1.7; margin-bottom: 12px; }
.review-reply { background: var(--bg2); border-radius: 12px; padding: 16px; margin-top: 12px; border: 1px solid var(--border); }
.review-reply-label { font-size: 12px; color: var(--text3); margin-bottom: 8px; font-weight: 600; }
.review-reply-text { font-size: 14px; color: var(--text2); line-height: 1.6; }
.review-actions { display: flex; gap: 8px; margin-top: 14px; }
.status-badge { padding: 5px 12px; border-radius: 50px; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }
.status-badge.pending { background: rgba(255,152,0,0.1); color: var(--warning); }
.status-badge.sent { background: rgba(0,200,83,0.1); color: var(--success); }
.status-badge.approved { background: rgba(80,70,229,0.1); color: var(--primary); }
.status-badge.rejected { background: rgba(255,61,87,0.1); color: var(--danger); }
.filter-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
.filter-tab { padding: 10px 20px; border-radius: 10px; background: var(--bg2); color: var(--text2); font-size: 14px; text-decoration: none; transition: all .3s; font-weight: 500; border: 1px solid transparent; }
.filter-tab:hover { background: var(--primary-bg); color: var(--primary); }
.filter-tab.active { background: var(--primary); color: #fff; box-shadow: 0 4px 12px rgba(80,70,229,0.3); }

/* ─── Responsive ─── */
@media (max-width: 768px) {
  /* Base */
  .container { padding: 0 16px; }
  
  /* Navbar */
  .navbar { padding: 10px 0; }
  .logo { font-size: 20px; gap: 8px; }
  .logo-icon { width: 32px; height: 32px; font-size: 16px; }
  .nav-links { gap: 6px; }
  .nav-links .btn-sm { padding: 6px 12px; font-size: 12px; }
  .dash-user span { display: none; }
  .dash-user img { width: 30px; height: 30px; }
  
  /* Hero / Landing */
  .hero { padding: 60px 0 40px; }
  .hero h1 { font-size: 32px; letter-spacing: -1px; }
  .hero-sub { font-size: 16px; padding: 0 8px; }
  .hero-badges { gap: 8px; }
  .hero-badge { padding: 8px 14px; font-size: 12px; }
  .hero-float { display: none; }
  .section-header h2 { font-size: 28px; }
  .section-header p { font-size: 15px; }
  
  /* Modules / Cards */
  .modules { padding: 60px 0; }
  .modules-grid { grid-template-columns: 1fr; }
  .module-card { padding: 24px; }
  .module-card h3 { font-size: 18px; }
  
  /* Steps */
  .steps { grid-template-columns: 1fr; gap: 24px; }
  .steps::before { display: none; }
  .step-num { width: 56px; height: 56px; font-size: 22px; }
  
  /* Pricing landing */
  .pricing { padding: 60px 0; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; }
  .price-card { padding: 28px 20px; }
  .price-card.popular { transform: none; }
  .price-card.popular:hover { transform: translateY(-4px); }
  .price-amount { font-size: 40px; }
  
  /* Stats strip */
  .stats-strip { padding: 48px 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .stat-item .stat-num { font-size: 32px; }
  .stat-item .stat-label { font-size: 13px; }
  
  /* CTA */
  .cta-section { padding: 60px 0; }
  .cta-section h2 { font-size: 28px; }
  .cta-section p { font-size: 16px; }
  
  /* Footer */
  .footer-content { flex-direction: column; text-align: center; gap: 12px; }
  .footer-links { justify-content: center; gap: 16px; }
  
  /* Dashboard */
  .dash { padding: 16px 0; }
  .dash-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .dash-header h1 { font-size: 22px; }
  .dash-modules { grid-template-columns: 1fr; gap: 12px; }
  .dash-module { padding: 16px; gap: 12px; }
  .dash-module-icon { font-size: 24px; }
  .dash-module h4 { font-size: 15px; }
  
  /* Shop rows */
  .shop-row { flex-direction: column; align-items: flex-start; padding: 16px; gap: 10px; }
  .shop-info { width: 100%; }
  .shop-sub { width: 100%; }
  .shop-actions { width: 100%; }
  .shop-actions .btn { flex: 1; justify-content: center; text-align: center; }
  
  /* Reviews page */
  .stats-row { gap: 8px; }
  .stat-card { padding: 12px 8px; min-width: 0; }
  .stat-card .stat-num { font-size: 22px; }
  .stat-card .stat-label { font-size: 11px; }
  .reviews-toolbar { gap: 8px; }
  .reviews-toolbar .btn { padding: 8px 12px; font-size: 12px; }
  .review-card { padding: 16px; margin-bottom: 10px; }
  .review-header { gap: 6px; }
  .reply-box textarea { font-size: 13px; min-height: 50px; }
  .reply-actions { flex-wrap: wrap; gap: 6px; }
  .reply-actions .btn { padding: 6px 10px; font-size: 12px; }
  .filter-btn { padding: 5px 10px; font-size: 12px; }
  
  /* Settings grid */
  .settings-grid, [style*="grid-template-columns: 1fr 1fr"] { 
    grid-template-columns: 1fr !important; 
  }
  
  /* Auto-reply toggle bar */
  [style*="display:flex"][style*="justify-content:space-between"] {
    flex-direction: column;
    align-items: flex-start !important;
  }
  
  /* Pricing page (dashboard) */
  .pricing-grid { flex-direction: column; align-items: center; }
  .price-card { max-width: 100%; min-width: 0; width: 100%; }
  
  /* Modal */
  .modal-content { padding: 24px 20px; }
  .modal-content h2 { font-size: 20px; }
  
  /* Auth */
  .auth-card { padding: 32px 24px; }
  
  /* Buttons general */
  .btn { padding: 10px 20px; font-size: 14px; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
}

/* Extra small screens */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .hero h1 { font-size: 26px; }
  .hero-sub { font-size: 14px; }
  .stat-card .stat-num { font-size: 18px; }
  .stat-card .stat-label { font-size: 10px; }
  .reviews-toolbar { flex-direction: column; }
  .reviews-toolbar .btn { width: 100%; justify-content: center; }
  .review-card { padding: 12px; }
  .reply-actions { flex-direction: column; }
  .reply-actions .btn { width: 100%; justify-content: center; }
  .nav-links .btn-sm { padding: 5px 8px; font-size: 11px; }
  .dash-header h1 { font-size: 20px; }
}
