/* ========================================
   SMMBAZ - SMM Panel Stylesheet
   Theme: Blue & Orange
   ======================================== */

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

:root {
    --primary-blue: #0f172a;
    --secondary-blue: #1e3a8a;
    --accent-blue: #3b82f6;
    --light-blue: #dbeafe;
    --primary-orange: #f97316;
    --secondary-orange: #ea580c;
    --accent-orange: #fb923c;
    --light-orange: #ffedd5;
    --dark: #020617;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-600: #475569;
    --gray-800: #1e293b;
    --white: #ffffff;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --gradient-primary: linear-gradient(135deg, #0f172a 0%, #1e3a8a 50%, #3b82f6 100%);
    --gradient-orange: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --gradient-mixed: linear-gradient(135deg, #0f172a 0%, #1e3a8a 40%, #f97316 100%);
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);
    --shadow-glow-orange: 0 0 20px rgba(249, 115, 22, 0.3);
    --shadow-glow-blue: 0 0 20px rgba(59, 130, 246, 0.3);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--dark);
    color: var(--gray-100);
    line-height: 1.6;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--primary-blue); }
::-webkit-scrollbar-thumb { background: var(--primary-orange); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent-orange); }

.container { max-width: 1280px; margin: 0 auto; padding: 0 1.5rem; }

.gradient-text {
    background: linear-gradient(135deg, var(--accent-blue), var(--primary-orange));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.glass {
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.75rem 1.5rem; border-radius: 0.75rem; font-weight: 600;
    font-size: 0.95rem; cursor: pointer; transition: all 0.3s ease;
    border: none; text-decoration: none;
}

.btn-primary {
    background: var(--gradient-orange); color: white; box-shadow: var(--shadow-glow-orange);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(249, 115, 22, 0.5); }

.btn-blue {
    background: var(--gradient-primary); color: white; box-shadow: var(--shadow-glow-blue);
}
.btn-blue:hover { transform: translateY(-2px); box-shadow: 0 0 30px rgba(59, 130, 246, 0.5); }

.btn-outline {
    background: transparent; border: 2px solid var(--accent-blue); color: var(--accent-blue);
}
.btn-outline:hover { background: var(--accent-blue); color: white; }

.btn-outline-orange {
    background: transparent; border: 2px solid var(--primary-orange); color: var(--primary-orange);
}
.btn-outline-orange:hover { background: var(--primary-orange); color: white; }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.1rem; }

.card {
    background: rgba(30, 41, 59, 0.6);
    border: 1px solid rgba(59, 130, 246, 0.1);
    border-radius: 1rem; padding: 1.5rem;
    transition: all 0.3s ease;
}
.card:hover {
    border-color: rgba(249, 115, 22, 0.3);
    transform: translateY(-4px); box-shadow: var(--shadow-xl);
}

.card-orange {
    background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(234,88,12,0.05));
    border: 1px solid rgba(249, 115, 22, 0.2);
}

.card-blue {
    background: linear-gradient(135deg, rgba(30,58,138,0.3), rgba(15,23,42,0.5));
    border: 1px solid rgba(59, 130, 246, 0.2);
}

.form-group { margin-bottom: 1.25rem; }
.form-label {
    display: block; margin-bottom: 0.5rem; font-weight: 500;
    color: var(--gray-200); font-size: 0.9rem;
}
.form-input {
    width: 100%; padding: 0.875rem 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem; color: white; font-size: 0.95rem;
    transition: all 0.3s ease;
}
.form-input:focus {
    outline: none; border-color: var(--primary-orange);
    box-shadow: 0 0 0 3px rgba(249, 115, 22, 0.1);
}
.form-input::placeholder { color: var(--gray-600); }

.navbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 0; transition: all 0.3s ease;
}
.navbar.scrolled {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px); box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1280px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; justify-content: space-between; align-items: center;
}

.logo {
    font-size: 1.75rem; font-weight: 900; text-decoration: none;
    display: flex; align-items: center; gap: 0.5rem;
}
.logo span { color: var(--primary-orange); }

.nav-links { display: flex; gap: 2rem; align-items: center; }
.nav-link {
    color: var(--gray-300); text-decoration: none; font-weight: 500;
    transition: color 0.3s ease; position: relative;
}
.nav-link:hover { color: var(--primary-orange); }
.nav-link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px; background: var(--primary-orange);
    transition: width 0.3s ease;
}
.nav-link:hover::after { width: 100%; }

.hero {
    min-height: 100vh; display: flex; align-items: center;
    position: relative; overflow: hidden; padding-top: 80px;
}
.hero-bg {
    position: absolute; inset: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(59,130,246,0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.1) 0%, transparent 50%),
        var(--dark);
}
.hero-grid {
    position: absolute; inset: 0;
    background-image: 
        linear-gradient(rgba(59,130,246,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}
.hero-content {
    position: relative; z-index: 2; max-width: 1280px;
    margin: 0 auto; padding: 0 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr;
    gap: 4rem; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.5rem 1rem; background: rgba(249,115,22,0.1);
    border: 1px solid rgba(249,115,22,0.3); border-radius: 2rem;
    color: var(--accent-orange); font-size: 0.875rem; font-weight: 600;
    margin-bottom: 1.5rem;
}
.hero-title {
    font-size: 4rem; font-weight: 900; line-height: 1.1;
    margin-bottom: 1.5rem; letter-spacing: -0.02em;
}
.hero-title .highlight { color: var(--primary-orange); position: relative; }
.hero-description {
    font-size: 1.25rem; color: var(--gray-300);
    margin-bottom: 2rem; max-width: 540px;
}
.hero-buttons { display: flex; gap: 1rem; margin-bottom: 3rem; }
.hero-stats { display: flex; gap: 2.5rem; }
.hero-stat { display: flex; flex-direction: column; }
.hero-stat-number { font-size: 2rem; font-weight: 800; color: var(--primary-orange); }
.hero-stat-label { font-size: 0.875rem; color: var(--gray-600); }

.hero-visual { position: relative; height: 500px; }
.float-card {
    position: absolute; background: rgba(30,41,59,0.9);
    border: 1px solid rgba(59,130,246,0.2); border-radius: 1rem;
    padding: 1.25rem; box-shadow: var(--shadow-xl);
    animation: float 6s ease-in-out infinite;
}
.float-card:nth-child(1) { top: 10%; left: 10%; animation-delay: 0s; border-color: rgba(249,115,22,0.3); }
.float-card:nth-child(2) { top: 40%; right: 5%; animation-delay: 2s; }
.float-card:nth-child(3) { bottom: 15%; left: 20%; animation-delay: 4s; border-color: rgba(249,115,22,0.3); }

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
}

.section { padding: 6rem 0; position: relative; }
.section-header {
    text-align: center; max-width: 640px;
    margin: 0 auto 4rem;
}
.section-label {
    display: inline-block; padding: 0.375rem 1rem;
    background: rgba(249,115,22,0.1); border: 1px solid rgba(249,115,22,0.3);
    border-radius: 2rem; color: var(--accent-orange);
    font-size: 0.875rem; font-weight: 600; margin-bottom: 1rem;
}
.section-title { font-size: 2.5rem; font-weight: 800; margin-bottom: 1rem; line-height: 1.2; }
.section-desc { color: var(--gray-300); font-size: 1.1rem; }

.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.feature-card {
    background: linear-gradient(135deg, rgba(30,58,138,0.2), rgba(15,23,42,0.4));
    border: 1px solid rgba(59,130,246,0.1); border-radius: 1rem;
    padding: 2rem; transition: all 0.3s ease; position: relative; overflow: hidden;
}
.feature-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px; background: var(--gradient-orange);
    transform: scaleX(0); transition: transform 0.3s ease;
}
.feature-card:hover::before { transform: scaleX(1); }
.feature-card:hover {
    border-color: rgba(249,115,22,0.2);
    transform: translateY(-4px); box-shadow: var(--shadow-xl);
}
.feature-icon {
    width: 56px; height: 56px; background: var(--gradient-orange);
    border-radius: 1rem; display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: white; margin-bottom: 1.25rem;
}
.feature-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.75rem; }
.feature-desc { color: var(--gray-300); font-size: 0.95rem; line-height: 1.6; }

.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card {
    background: rgba(30,41,59,0.6); border: 1px solid rgba(59,130,246,0.1);
    border-radius: 1rem; padding: 1.5rem; text-align: center;
    transition: all 0.3s ease; cursor: pointer;
}
.service-card:hover {
    border-color: var(--primary-orange); transform: translateY(-4px);
    box-shadow: var(--shadow-glow-orange);
}
.service-icon {
    width: 64px; height: 64px; margin: 0 auto 1rem;
    background: linear-gradient(135deg, rgba(59,130,246,0.2), rgba(249,115,22,0.2));
    border-radius: 1rem; display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem;
}
.service-name { font-weight: 700; margin-bottom: 0.5rem; }
.service-count { color: var(--primary-orange); font-size: 0.875rem; font-weight: 600; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1000px; margin: 0 auto; }
.pricing-card {
    background: rgba(30,41,59,0.6); border: 1px solid rgba(59,130,246,0.1);
    border-radius: 1.5rem; padding: 2.5rem 2rem; text-align: center;
    transition: all 0.3s ease; position: relative;
}
.pricing-card.popular {
    border-color: var(--primary-orange); transform: scale(1.05);
    box-shadow: var(--shadow-glow-orange);
}
.pricing-card.popular::before {
    content: 'MOST POPULAR'; position: absolute; top: -12px; left: 50%;
    transform: translateX(-50%); background: var(--gradient-orange);
    color: white; padding: 0.375rem 1rem; border-radius: 2rem;
    font-size: 0.75rem; font-weight: 700;
}
.pricing-card:hover { border-color: rgba(249,115,22,0.3); }
.pricing-name { font-size: 1.5rem; font-weight: 800; margin-bottom: 0.5rem; }
.pricing-price { font-size: 3.5rem; font-weight: 900; color: var(--primary-orange); margin: 1rem 0; }
.pricing-price span { font-size: 1rem; color: var(--gray-300); font-weight: 400; }
.pricing-features { list-style: none; margin: 2rem 0; text-align: left; }
.pricing-features li {
    padding: 0.5rem 0; color: var(--gray-300);
    display: flex; align-items: center; gap: 0.75rem;
}
.pricing-features li i { color: var(--success); }

.steps {
    display: flex; justify-content: space-between; position: relative;
    max-width: 900px; margin: 0 auto;
}
.steps::before {
    content: ''; position: absolute; top: 40px; left: 10%; right: 10%;
    height: 2px; background: linear-gradient(90deg, var(--accent-blue), var(--primary-orange));
}
.step { text-align: center; position: relative; z-index: 2; flex: 1; }
.step-number {
    width: 80px; height: 80px; background: var(--gradient-primary);
    border: 3px solid var(--primary-orange); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.75rem; font-weight: 900; color: white;
    margin: 0 auto 1.5rem; position: relative;
}
.step-title { font-size: 1.25rem; font-weight: 700; margin-bottom: 0.5rem; }
.step-desc { color: var(--gray-300); font-size: 0.9rem; max-width: 200px; margin: 0 auto; }

.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
    background: rgba(30,41,59,0.6); border: 1px solid rgba(59,130,246,0.1);
    border-radius: 1rem; padding: 2rem; position: relative;
}
.testimonial-card::before {
    content: '"'; position: absolute; top: 1rem; right: 1.5rem;
    font-size: 4rem; color: rgba(249,115,22,0.2); font-family: serif; line-height: 1;
}
.testimonial-text { color: var(--gray-300); margin-bottom: 1.5rem; font-style: italic; line-height: 1.7; }
.testimonial-author { display: flex; align-items: center; gap: 1rem; }
.testimonial-avatar {
    width: 48px; height: 48px; background: var(--gradient-orange);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: white;
}
.testimonial-name { font-weight: 700; }
.testimonial-role { font-size: 0.875rem; color: var(--gray-600); }

.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
    background: rgba(30,41,59,0.6); border: 1px solid rgba(59,130,246,0.1);
    border-radius: 1rem; margin-bottom: 1rem; overflow: hidden;
}
.faq-question {
    padding: 1.25rem 1.5rem; display: flex; justify-content: space-between;
    align-items: center; cursor: pointer; font-weight: 600;
    transition: color 0.3s ease;
}
.faq-question:hover { color: var(--primary-orange); }
.faq-answer {
    padding: 0 1.5rem; max-height: 0; overflow: hidden;
    transition: all 0.3s ease; color: var(--gray-300);
}
.faq-item.active .faq-answer { padding: 0 1.5rem 1.25rem; max-height: 200px; }
.faq-item.active .faq-question { color: var(--primary-orange); }

.cta-section { padding: 5rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; background: var(--gradient-mixed); opacity: 0.1; }
.cta-content { position: relative; z-index: 2; max-width: 700px; margin: 0 auto; }
.cta-title { font-size: 3rem; font-weight: 900; margin-bottom: 1rem; }
.cta-desc { font-size: 1.25rem; color: var(--gray-300); margin-bottom: 2rem; }

.footer {
    background: rgba(2,6,23,0.95); border-top: 1px solid rgba(59,130,246,0.1);
    padding: 4rem 0 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand { font-size: 1.75rem; font-weight: 900; margin-bottom: 1rem; }
.footer-desc { color: var(--gray-300); margin-bottom: 1.5rem; line-height: 1.7; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
    width: 40px; height: 40px; background: rgba(59,130,246,0.1);
    border: 1px solid rgba(59,130,246,0.2); border-radius: 0.5rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--gray-300); transition: all 0.3s ease;
}
.footer-social a:hover {
    background: var(--primary-orange); border-color: var(--primary-orange);
    color: white; transform: translateY(-2px);
}
.footer-title { font-size: 1.125rem; font-weight: 700; margin-bottom: 1.25rem; color: white; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.75rem; }
.footer-links a {
    color: var(--gray-300); text-decoration: none;
    transition: color 0.3s ease; display: flex; align-items: center; gap: 0.5rem;
}
.footer-links a:hover { color: var(--primary-orange); }
.footer-bottom {
    border-top: 1px solid rgba(59,130,246,0.1); padding-top: 2rem;
    display: flex; justify-content: space-between; align-items: center;
    color: var(--gray-600); font-size: 0.875rem;
}

/* Dashboard */
.dashboard { display: flex; min-height: 100vh; background: var(--dark); }
.sidebar {
    width: 280px; background: rgba(15,23,42,0.98);
    border-right: 1px solid rgba(59,130,246,0.1);
    display: flex; flex-direction: column;
    position: fixed; height: 100vh; overflow-y: auto; z-index: 100;
}
.sidebar-header { padding: 1.5rem; border-bottom: 1px solid rgba(59,130,246,0.1); }
.sidebar-logo { font-size: 1.5rem; font-weight: 900; text-decoration: none; display: flex; align-items: center; gap: 0.5rem; }
.sidebar-user {
    padding: 1.5rem; border-bottom: 1px solid rgba(59,130,246,0.1);
    display: flex; align-items: center; gap: 1rem;
}
.sidebar-avatar {
    width: 48px; height: 48px; background: var(--gradient-orange);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: white; font-size: 1.25rem;
}
.sidebar-user-info h4 { font-weight: 600; font-size: 0.95rem; }
.sidebar-user-info p { font-size: 0.8rem; color: var(--gray-600); }
.sidebar-nav { flex: 1; padding: 1rem 0; }
.sidebar-nav-title {
    padding: 0.75rem 1.5rem; font-size: 0.75rem; text-transform: uppercase;
    letter-spacing: 0.05em; color: var(--gray-600); font-weight: 600;
}
.sidebar-nav-item {
    display: flex; align-items: center; gap: 0.875rem;
    padding: 0.875rem 1.5rem; color: var(--gray-300);
    text-decoration: none; font-weight: 500;
    transition: all 0.3s ease; border-left: 3px solid transparent;
}
.sidebar-nav-item:hover, .sidebar-nav-item.active {
    background: rgba(59,130,246,0.1); color: var(--primary-orange);
    border-left-color: var(--primary-orange);
}
.sidebar-nav-item i { width: 20px; text-align: center; }
.sidebar-footer { padding: 1rem 1.5rem; border-top: 1px solid rgba(59,130,246,0.1); }

.main-content { flex: 1; margin-left: 280px; padding: 2rem; min-height: 100vh; }

.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-bottom: 2rem; }
.stat-card {
    background: rgba(30,41,59,0.6); border: 1px solid rgba(59,130,246,0.1);
    border-radius: 1rem; padding: 1.5rem; position: relative; overflow: hidden;
}
.stat-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 4px; height: 100%; background: var(--gradient-orange);
}
.stat-icon {
    width: 48px; height: 48px; border-radius: 0.75rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.25rem; margin-bottom: 1rem;
}
.stat-icon.blue { background: rgba(59,130,246,0.1); color: var(--accent-blue); }
.stat-icon.orange { background: rgba(249,115,22,0.1); color: var(--primary-orange); }
.stat-icon.green { background: rgba(16,185,129,0.1); color: var(--success); }
.stat-icon.red { background: rgba(239,68,68,0.1); color: var(--danger); }
.stat-value { font-size: 1.75rem; font-weight: 800; margin-bottom: 0.25rem; }
.stat-label { font-size: 0.875rem; color: var(--gray-600); }
.stat-change { font-size: 0.8rem; margin-top: 0.5rem; font-weight: 600; }
.stat-change.up { color: var(--success); }
.stat-change.down { color: var(--danger); }

.table-container {
    background: rgba(30,41,59,0.6); border: 1px solid rgba(59,130,246,0.1);
    border-radius: 1rem; overflow: hidden;
}
.table-header {
    padding: 1.25rem 1.5rem; border-bottom: 1px solid rgba(59,130,246,0.1);
    display: flex; justify-content: space-between; align-items: center;
}
.table-title { font-size: 1.125rem; font-weight: 700; }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th {
    text-align: left; padding: 1rem 1.5rem; font-size: 0.75rem;
    text-transform: uppercase; letter-spacing: 0.05em;
    color: var(--gray-600); font-weight: 600;
    border-bottom: 1px solid rgba(59,130,246,0.1);
    background: rgba(15,23,42,0.5);
}
.data-table td { padding: 1rem 1.5rem; border-bottom: 1px solid rgba(59,130,246,0.05); font-size: 0.9rem; }
.data-table tr:hover td { background: rgba(59,130,246,0.03); }

.badge {
    display: inline-flex; align-items: center; gap: 0.375rem;
    padding: 0.375rem 0.75rem; border-radius: 2rem;
    font-size: 0.75rem; font-weight: 600;
}

/* Auth */
.auth-page {
    min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(59,130,246,0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 50%, rgba(249,115,22,0.08) 0%, transparent 50%),
        var(--dark);
    padding: 2rem;
}
.auth-container { width: 100%; max-width: 440px; }
.auth-card {
    background: rgba(30,41,59,0.8); border: 1px solid rgba(59,130,246,0.15);
    border-radius: 1.5rem; padding: 2.5rem; backdrop-filter: blur(12px);
}
.auth-logo { text-align: center; margin-bottom: 2rem; }
.auth-logo a { font-size: 2rem; font-weight: 900; text-decoration: none; }
.auth-title { font-size: 1.5rem; font-weight: 700; text-align: center; margin-bottom: 0.5rem; }
.auth-subtitle { text-align: center; color: var(--gray-600); margin-bottom: 2rem; font-size: 0.9rem; }
.auth-footer { text-align: center; margin-top: 1.5rem; color: var(--gray-600); font-size: 0.9rem; }
.auth-footer a { color: var(--primary-orange); text-decoration: none; font-weight: 600; }

.order-form {
    background: rgba(30,41,59,0.6); border: 1px solid rgba(59,130,246,0.1);
    border-radius: 1rem; padding: 2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.price-display {
    background: linear-gradient(135deg, rgba(249,115,22,0.1), rgba(234,88,12,0.05));
    border: 1px solid rgba(249,115,22,0.2); border-radius: 0.75rem;
    padding: 1rem; text-align: center; margin-top: 1rem;
}
.price-display-label { font-size: 0.875rem; color: var(--gray-300); }
.price-display-value { font-size: 1.5rem; font-weight: 800; color: var(--primary-orange); }

.tabs {
    display: flex; gap: 0.5rem; margin-bottom: 1.5rem;
    border-bottom: 1px solid rgba(59,130,246,0.1); padding-bottom: 0.5rem;
}
.tab {
    padding: 0.625rem 1.25rem; border-radius: 0.5rem; font-weight: 600;
    font-size: 0.9rem; cursor: pointer; transition: all 0.3s ease;
    border: none; background: transparent; color: var(--gray-300);
}
.tab:hover { color: var(--primary-orange); background: rgba(249,115,22,0.05); }
.tab.active { background: rgba(249,115,22,0.1); color: var(--primary-orange); }

@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.5; } }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }

@keyframes slideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-slide-in { animation: slideIn 0.6s ease-out forwards; }

.admin-badge {
    display: inline-flex; align-items: center; gap: 0.375rem;
    padding: 0.25rem 0.75rem; background: rgba(239,68,68,0.1);
    border: 1px solid rgba(239,68,68,0.3); border-radius: 2rem;
    color: var(--danger); font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
}

.chart-placeholder {
    background: rgba(15,23,42,0.5); border-radius: 1rem; padding: 2rem;
    height: 300px; display: flex; align-items: center; justify-content: center;
    color: var(--gray-600); border: 1px dashed rgba(59,130,246,0.2);
}

.mobile-toggle {
    display: none; background: none; border: none;
    color: white; font-size: 1.5rem; cursor: pointer;
}

.spinner {
    width: 40px; height: 40px;
    border: 3px solid rgba(59,130,246,0.2);
    border-top-color: var(--primary-orange); border-radius: 50%;
    animation: spin 1s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1024px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; }
    .hero-description { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-stats { justify-content: center; }
    .hero-visual { display: none; }
    .features-grid, .services-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .features-grid, .services-grid, .testimonials-grid, .pricing-grid { grid-template-columns: 1fr; }
    .pricing-card.popular { transform: none; }
    .steps { flex-direction: column; gap: 2rem; }
    .steps::before { display: none; }
    .stats-grid { grid-template-columns: 1fr; }
    .sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
    .sidebar.open { transform: translateX(0); }
    .main-content { margin-left: 0; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .nav-links { display: none; }
    .mobile-toggle { display: block; }
}
