/*
Theme Name: EximAuto SaaS
Theme URI: https://eximauto.eximbuyers.com
Author: EximAuto
Description: Premium Bespoke SaaS Theme for EximBuyers CRM
Version: 1.0
*/

:root {
    --bg-main: #0f172a;
    --bg-card: rgba(30, 41, 59, 0.7);
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --accent: #3b82f6;
    --accent-hover: #2563eb;
    --border: rgba(255, 255, 255, 0.1);
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism Utilities */
.glass-panel {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid var(--border);
}
.site-logo {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(90deg, #60a5fa, #a78bfa);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}
.nav-menu a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}
.nav-menu a:hover {
    color: #fff;
}
.btn-primary {
    background: var(--accent);
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 14px 0 rgba(59, 130, 246, 0.39);
}
.btn-primary:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
}

/* Hero Section */
.hero {
    padding: 100px 20px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}
.hero h1 {
    font-size: 56px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -1px;
}
.hero p {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* Pricing Section */
.pricing-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}
.pricing-card {
    padding: 40px;
    text-align: left;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
}
.pricing-card:hover {
    transform: translateY(-10px);
}
.pricing-card.popular {
    border-color: var(--accent);
    box-shadow: 0 0 30px rgba(59, 130, 246, 0.2);
}
.popular-badge {
    position: absolute;
    top: 15px;
    right: -35px;
    background: var(--accent);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 5px 40px;
    transform: rotate(45deg);
}
.pricing-price {
    font-size: 48px;
    font-weight: 800;
    margin: 20px 0;
    color: #fff;
}
.pricing-price span {
    font-size: 16px;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}
.pricing-features li {
    margin-bottom: 15px;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 10px;
}
.pricing-features li.disabled {
    color: var(--text-muted);
    opacity: 0.5;
}

/* Dashboard & Knowledge Base */
.container {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
}
.dashboard-grid {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
}
.dashboard-menu {
    list-style: none;
    padding: 0;
}
.dashboard-menu li {
    margin-bottom: 10px;
}
.dashboard-menu a {
    color: var(--text-muted);
    text-decoration: none;
    padding: 10px 15px;
    display: block;
    border-radius: 8px;
    transition: all 0.2s;
}
.dashboard-menu a:hover, .dashboard-menu a.active {
    background: rgba(255,255,255,0.05);
    color: #fff;
}
.license-key-box {
    background: rgba(0,0,0,0.3);
    padding: 15px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 18px;
    color: #a78bfa;
    border: 1px dashed #a78bfa;
    display: inline-block;
    margin: 10px 0;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border);
    margin-top: 80px;
    color: var(--text-muted);
}
