/* Nexus Archives - Dark Mode Theme */

:root {
    --primary-dark: #1A1A1A;
    --secondary-dark: #2D2D2D;
    --text-light: #E0E0E0;
    --text-muted: #B0B0B0;
    --accent-yellow: #FFEE32;
    --accent-yellow-dark: #E6D42D;
    --success: #28a745;
    --danger: #dc3545;
    --warning: #ffc107;
    --info: #17a2b8;
}

/* Global Styles */
body {
    background-color: var(--primary-dark);
    color: var(--text-light);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
}

/* Custom Bootstrap Overrides */
.bg-dark {
    background-color: var(--primary-dark) !important;
}

.text-muted {
    color: var(--text-muted) !important;
}

/* Navigation */
.navbar-brand {
    font-size: 1.5rem;
    color: var(--accent-yellow) !important;
}

.navbar-nav .nav-link {
    color: var(--text-light) !important;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--accent-yellow) !important;
}

.dropdown-menu {
    background-color: var(--secondary-dark);
    border: 1px solid #444;
}

.dropdown-item {
    color: var(--text-light);
    transition: background-color 0.3s ease;
}

.dropdown-item:hover {
    background-color: #444;
    color: var(--accent-yellow);
}

/* Buttons */
.btn-warning {
    background-color: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--primary-dark);
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-warning:hover {
    background-color: var(--accent-yellow-dark);
    border-color: var(--accent-yellow-dark);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 238, 50, 0.3);
}

.btn-outline-light {
    color: var(--text-light);
    border-color: var(--text-light);
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: var(--text-light);
    color: var(--primary-dark);
    transform: translateY(-2px);
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, #0F0F0F 100%);
    padding-top: 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section h1 {
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.2;
}

.hero-section .lead {
    color: var(--text-muted);
    font-size: 1.25rem;
}

/* Interface Mockup */
.interface-mockup {
    position: relative;
    padding: 2rem;
}

.mockup-window {
    background: var(--secondary-dark);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid #444;
}

.mockup-header {
    background: #333;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #444;
}

.mockup-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background-color: #ff5f56; }
.control.yellow { background-color: #ffbd2e; }
.control.green { background-color: #27ca3f; }

.mockup-title {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.mockup-content {
    padding: 1.5rem;
}

.search-bar {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-bar i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.search-bar input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: var(--primary-dark);
    border: 1px solid #444;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.search-bar input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 2px rgba(255, 238, 50, 0.2);
}

.asset-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 1rem;
}

.asset-item {
    background: var(--primary-dark);
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.asset-item:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

.asset-preview {
    width: 100%;
    height: 80px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    position: relative;
    overflow: hidden;
}

.asset-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.asset-info {
    text-align: center;
}

.asset-name {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.asset-meta {
    color: var(--text-muted);
    font-size: 0.7rem;
}

/* Feature Cards */
.feature-card {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #333;
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 238, 50, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.feature-card h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Stats Section */
.stat-item h3 {
    color: var(--primary-dark);
    font-weight: 700;
}

.stat-item p {
    color: var(--primary-dark);
    font-weight: 500;
    margin-bottom: 0;
}

/* Footer */
footer {
    background: var(--primary-dark) !important;
    border-top: 1px solid #333;
}

footer h5, footer h6 {
    color: var(--accent-yellow);
    font-weight: 600;
}

footer a {
    transition: color 0.3s ease;
}

footer a:hover {
    color: var(--accent-yellow) !important;
}

.security-badge {
    height: 30px;
    border-radius: 4px;
}

/* Utility Classes */
.text-warning {
    color: var(--accent-yellow) !important;
}

.bg-warning {
    background-color: var(--accent-yellow) !important;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2.5rem;
    }
    
    .hero-section .lead {
        font-size: 1.1rem;
    }
    
    .interface-mockup {
        padding: 1rem;
    }
    
    .asset-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-item h3 {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .hero-section {
        padding-top: 100px;
    }
    
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .btn-lg {
        padding: 0.75rem 1.5rem;
        font-size: 1rem;
    }
    
    .asset-grid {
        grid-template-columns: 1fr;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--primary-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--accent-yellow);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-yellow-dark);
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Focus States */
.btn:focus,
.form-control:focus {
    box-shadow: 0 0 0 0.2rem rgba(255, 238, 50, 0.25);
}

/* Card Hover Effects */
.card {
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.card:hover {
    border-color: var(--accent-yellow);
    box-shadow: 0 4px 15px rgba(255, 238, 50, 0.1);
}

/* Form Styling */
.form-control {
    background-color: var(--secondary-dark);
    border: 1px solid #444;
    color: var(--text-light);
}

.form-control:focus {
    background-color: var(--secondary-dark);
    border-color: var(--accent-yellow);
    color: var(--text-light);
}

.form-control::placeholder {
    color: var(--text-muted);
}

/* Alert Styling */
.alert-warning {
    background-color: rgba(255, 238, 50, 0.1);
    border-color: var(--accent-yellow);
    color: var(--accent-yellow);
}

/* Progress Bars */
.progress {
    background-color: #333;
}

.progress-bar {
    background-color: var(--accent-yellow);
}

/* Modal Styling */
.modal-content {
    background-color: var(--secondary-dark);
    border: 1px solid #444;
}

.modal-header {
    border-bottom: 1px solid #444;
}

.modal-footer {
    border-top: 1px solid #444;
}

/* Table Styling */
.table-dark {
    --bs-table-bg: var(--secondary-dark);
    --bs-table-striped-bg: #333;
    --bs-table-hover-bg: #444;
}

/* Badge Styling */
.badge {
    font-weight: 500;
}

.badge-warning {
    background-color: var(--accent-yellow);
    color: var(--primary-dark);
}

/* Features Page Styles */
.feature-demo {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #444;
    margin: 2rem 0;
}

.search-interface {
    background: var(--primary-dark);
    border-radius: 8px;
    padding: 1.5rem;
}

.search-header h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.search-header p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.search-bar-large {
    position: relative;
    margin-bottom: 1.5rem;
}

.search-bar-large i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    z-index: 2;
}

.search-bar-large input {
    width: 100%;
    padding: 1rem 1rem 1rem 3rem;
    background: var(--secondary-dark);
    border: 2px solid #444;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    margin-right: 1rem;
}

.search-bar-large input:focus {
    outline: none;
    border-color: var(--accent-yellow);
    box-shadow: 0 0 0 3px rgba(255, 238, 50, 0.2);
}

.search-bar-large .btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    padding: 0.5rem 1rem;
}

.search-filters {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.filter-group label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: block;
}

.color-picker {
    display: flex;
    gap: 0.5rem;
}

.color-option {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.color-option:hover,
.color-option.active {
    border-color: var(--accent-yellow);
    transform: scale(1.1);
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--text-light);
    font-size: 1.1rem;
}

/* Client Portal Demo */
.client-portal-demo {
    background: var(--primary-dark);
    border-radius: 8px;
    padding: 1.5rem;
}

.portal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #444;
}

.client-logo {
    width: 40px;
    height: 40px;
    background: var(--accent-yellow);
    border-radius: 8px;
    margin-right: 1rem;
}

.portal-header h4 {
    color: var(--text-light);
    margin: 0;
    flex: 1;
}

.portal-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.gallery-item {
    background: var(--secondary-dark);
    border-radius: 8px;
    padding: 1rem;
    text-align: center;
    border: 1px solid #333;
}

.item-preview {
    width: 100%;
    height: 80px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    position: relative;
}

.item-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.item-status {
    font-size: 0.8rem;
    font-weight: 500;
    padding: 0.25rem 0.5rem;
    border-radius: 4px;
}

.item-status.approved {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
}

.item-status.pending {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.item-status.rejected {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
}

.portal-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

/* Brand Kit Demo */
.brand-kit-demo {
    background: var(--primary-dark);
    border-radius: 8px;
    padding: 1.5rem;
}

.brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #444;
}

.brand-header h4 {
    color: var(--text-light);
    margin: 0;
}

.brand-name {
    color: var(--accent-yellow);
    font-weight: 600;
}

.brand-section {
    margin-bottom: 1.5rem;
}

.brand-section h5 {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.asset-row {
    display: flex;
    gap: 1rem;
}

.brand-asset {
    text-align: center;
    flex: 1;
}

.brand-asset .asset-preview {
    width: 100%;
    height: 60px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    position: relative;
}

.brand-asset .asset-preview::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.brand-asset span {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.color-palette {
    display: flex;
    gap: 0.75rem;
}

.color-swatch {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid #444;
    cursor: pointer;
    transition: all 0.3s ease;
}

.color-swatch:hover {
    transform: scale(1.1);
    border-color: var(--accent-yellow);
}

.font-preview {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.font-primary {
    color: var(--text-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.font-secondary {
    color: var(--text-muted);
    font-weight: 400;
    font-size: 1rem;
}

/* Workflow Demo */
.workflow-demo {
    background: var(--primary-dark);
    border-radius: 8px;
    padding: 1.5rem;
}

.workflow-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #444;
}

.workflow-header h4 {
    color: var(--text-light);
    margin: 0;
}

.workflow-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.workflow-step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--secondary-dark);
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.workflow-step.completed {
    border-color: #28a745;
    background: rgba(40, 167, 69, 0.1);
}

.workflow-step.active {
    border-color: var(--accent-yellow);
    background: rgba(255, 238, 50, 0.1);
}

.step-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--accent-yellow);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.workflow-step.completed .step-icon {
    background: #28a745;
    color: white;
}

.step-content h6 {
    color: var(--text-light);
    margin: 0 0 0.25rem 0;
    font-size: 1rem;
}

.step-content p {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

/* Integrations Demo */
.integrations-demo {
    background: var(--primary-dark);
    border-radius: 8px;
    padding: 1.5rem;
}

.integrations-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #444;
}

.integrations-header h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.integrations-header p {
    color: var(--text-muted);
    margin: 0;
}

.integrations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.integration-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    background: var(--secondary-dark);
    border-radius: 8px;
    border: 1px solid #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.integration-item:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

.integration-logo {
    width: 32px;
    height: 32px;
    border-radius: 6px;
    flex-shrink: 0;
}

.integration-logo.adobe { background: #FF0000; }
.integration-logo.figma { background: #F24E1E; }
.integration-logo.slack { background: #4A154B; }
.integration-logo.dropbox { background: #0061FF; }
.integration-logo.google { background: #4285F4; }
.integration-logo.notion { background: #000000; }

.integration-item span {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

/* Responsive adjustments for features page */
@media (max-width: 768px) {
    .search-filters {
        grid-template-columns: 1fr;
    }
    
    .portal-gallery {
        grid-template-columns: 1fr;
    }
    
    .asset-row {
        flex-direction: column;
    }
    
    .integrations-grid {
        grid-template-columns: 1fr;
    }
    
    .workflow-steps {
        gap: 0.75rem;
    }
    
    .workflow-step {
        padding: 0.75rem;
    }
}

/* Pricing Page Styles */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.toggle-label {
    color: var(--text-light);
    font-weight: 500;
}

.pricing-card {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 238, 50, 0.1);
}

.pricing-card.featured {
    border-color: var(--accent-yellow);
    box-shadow: 0 8px 25px rgba(255, 238, 50, 0.2);
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #444;
}

.pricing-header h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.pricing-header p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.currency {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 600;
}

.amount {
    color: var(--accent-yellow);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1;
}

.period {
    color: var(--text-muted);
    font-size: 1rem;
    font-weight: 500;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-features .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features .feature-list li {
    padding: 0.75rem 0;
    color: var(--text-light);
    font-size: 1rem;
    border-bottom: 1px solid #333;
}

.pricing-features .feature-list li:last-child {
    border-bottom: none;
}

.pricing-footer {
    text-align: center;
}

.trial-info {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-top: 1rem;
    margin-bottom: 0;
}

/* Pricing Calculator */
.pricing-calculator {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #444;
}

.calculator-section {
    margin-bottom: 2rem;
}

.calculator-section label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 1rem;
    display: block;
}

.form-range {
    background: var(--primary-dark);
    height: 6px;
    border-radius: 3px;
}

.form-range::-webkit-slider-thumb {
    background: var(--accent-yellow);
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.form-range::-moz-range-thumb {
    background: var(--accent-yellow);
    border: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    cursor: pointer;
}

.range-labels {
    display: flex;
    justify-content: space-between;
    margin-top: 0.5rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.calculator-result {
    background: var(--primary-dark);
    border-radius: 8px;
    padding: 2rem;
    margin-top: 2rem;
}

.estimated-price {
    margin-bottom: 1rem;
}

.price-label {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 500;
    margin-right: 1rem;
}

.price-amount {
    color: var(--accent-yellow);
    font-size: 2.5rem;
    font-weight: 700;
}

.price-note {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

/* Feature Comparison Table */
.table-dark {
    --bs-table-bg: var(--secondary-dark);
    --bs-table-striped-bg: #333;
    --bs-table-hover-bg: #444;
    --bs-table-border-color: #444;
}

.table-dark th {
    background: var(--primary-dark);
    color: var(--text-light);
    font-weight: 600;
    border-color: #444;
}

.table-dark td {
    color: var(--text-light);
    border-color: #444;
    vertical-align: middle;
}

/* Accordion Styling */
.accordion-item {
    background: var(--secondary-dark);
    border: 1px solid #444;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
}

.accordion-button {
    background: var(--secondary-dark);
    color: var(--text-light);
    border: none;
    font-weight: 500;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-dark);
    color: var(--accent-yellow);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 238, 50, 0.25);
}

.accordion-body {
    background: var(--primary-dark);
    color: var(--text-muted);
    padding: 1.5rem;
}

/* Responsive adjustments for pricing page */
@media (max-width: 768px) {
    .pricing-toggle {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .calculator-result {
        padding: 1.5rem;
    }
}

/* Demo Page Styles */
.demo-benefits {
    margin-top: 2rem;
}

.benefit-item {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    color: var(--text-light);
    font-size: 1.1rem;
}

.demo-preview {
    position: relative;
    padding: 2rem;
}

.demo-window {
    background: var(--secondary-dark);
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    border: 1px solid #444;
}

.demo-header {
    background: #333;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid #444;
}

.demo-controls {
    display: flex;
    gap: 0.5rem;
}

.control {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.control.red { background-color: #ff5f56; }
.control.yellow { background-color: #ffbd2e; }
.control.green { background-color: #27ca3f; }

.demo-title {
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
}

.demo-content {
    display: flex;
    height: 400px;
}

.demo-sidebar {
    width: 250px;
    background: var(--primary-dark);
    padding: 1.5rem;
    border-right: 1px solid #444;
}

.sidebar-section {
    margin-bottom: 2rem;
}

.sidebar-section h6 {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid #333;
}

.project-item:last-child {
    border-bottom: none;
}

.project-icon {
    width: 32px;
    height: 32px;
    background: var(--accent-yellow);
    border-radius: 6px;
    flex-shrink: 0;
}

.project-info {
    flex: 1;
}

.project-name {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.project-meta {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.demo-btn {
    width: 100%;
    background: var(--secondary-dark);
    border: 1px solid #444;
    color: var(--text-light);
    padding: 0.5rem;
    border-radius: 6px;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    transition: all 0.3s ease;
}

.demo-btn:hover {
    background: var(--accent-yellow);
    color: var(--primary-dark);
    border-color: var(--accent-yellow);
}

.demo-main {
    flex: 1;
    padding: 1.5rem;
    background: var(--secondary-dark);
}

.demo-search {
    position: relative;
    margin-bottom: 1.5rem;
}

.demo-search i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.demo-search input {
    width: 100%;
    padding: 0.75rem 1rem 0.75rem 2.5rem;
    background: var(--primary-dark);
    border: 1px solid #444;
    border-radius: 8px;
    color: var(--text-light);
    font-size: 0.9rem;
}

.demo-assets {
    height: 280px;
    overflow-y: auto;
}

.asset-grid-demo {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 1rem;
}

.asset-card {
    background: var(--primary-dark);
    border-radius: 8px;
    padding: 0.75rem;
    border: 1px solid #333;
    text-align: center;
    transition: all 0.3s ease;
}

.asset-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

.asset-thumb {
    width: 100%;
    height: 60px;
    background: linear-gradient(45deg, #333, #555);
    border-radius: 4px;
    margin-bottom: 0.5rem;
    position: relative;
}

.asset-thumb::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--accent-yellow);
    border-radius: 2px;
}

.asset-label {
    color: var(--text-light);
    font-size: 0.8rem;
    font-weight: 500;
    word-break: break-word;
}

/* Demo Form Styles */
.demo-form-container {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid #444;
}

.demo-form {
    max-width: 600px;
    margin: 0 auto;
}

.demo-form .form-label {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.demo-form .form-control,
.demo-form .form-select {
    background: var(--primary-dark);
    border: 1px solid #444;
    color: var(--text-light);
    padding: 0.75rem 1rem;
}

.demo-form .form-control:focus,
.demo-form .form-select:focus {
    background: var(--primary-dark);
    border-color: var(--accent-yellow);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(255, 238, 50, 0.25);
}

.demo-form .form-control::placeholder {
    color: var(--text-muted);
}

.demo-form .invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.demo-form .form-check-label {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Demo Features */
.demo-feature {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--secondary-dark);
    border-radius: 12px;
    border: 1px solid #333;
    height: 100%;
    transition: all 0.3s ease;
}

.demo-feature:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
}

.demo-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.demo-feature h5 {
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 600;
}

.demo-feature p {
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Testimonials */
.testimonial-card {
    background: var(--primary-dark);
    border-radius: 12px;
    padding: 2rem;
    height: 100%;
    border: 1px solid #333;
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-light);
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Responsive adjustments for demo page */
@media (max-width: 768px) {
    .demo-content {
        flex-direction: column;
        height: auto;
    }
    
    .demo-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #444;
    }
    
    .asset-grid-demo {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .demo-form-container {
        padding: 2rem 1.5rem;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 576px) {
    .asset-grid-demo {
        grid-template-columns: 1fr;
    }
    
    .demo-form-container {
        padding: 1.5rem 1rem;
    }
}

/* Case Studies Page Styles */
.case-study-card {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333;
    height: 100%;
    transition: all 0.3s ease;
}

.case-study-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 238, 50, 0.1);
}

.case-study-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #444;
}

.company-logo {
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.logo-placeholder {
    color: var(--primary-dark);
    font-weight: 700;
    font-size: 1.2rem;
}

.company-info h3 {
    color: var(--text-light);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.company-details {
    color: var(--text-muted);
    margin: 0;
    font-size: 0.9rem;
}

.case-study-content h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.case-study-description {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 2rem;
}

.results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.result-item {
    text-align: center;
    padding: 1rem;
    background: var(--primary-dark);
    border-radius: 8px;
    border: 1px solid #333;
}

.result-number {
    color: var(--accent-yellow);
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.result-label {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.testimonial {
    background: var(--primary-dark);
    border-left: 4px solid var(--accent-yellow);
    padding: 1.5rem;
    margin: 0;
    border-radius: 0 8px 8px 0;
}

.testimonial p {
    color: var(--text-light);
    font-style: italic;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.testimonial-author {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
}

.testimonial-author strong {
    color: var(--accent-yellow);
}

/* Industry Cards */
.industry-card {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #333;
    height: 100%;
    transition: all 0.3s ease;
}

.industry-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 238, 50, 0.1);
}

.industry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.industry-card h5 {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.industry-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.industry-stats {
    margin-top: auto;
}

.industry-stats .stat {
    background: var(--primary-dark);
    color: var(--accent-yellow);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive adjustments for case studies page */
@media (max-width: 768px) {
    .case-study-header {
        flex-direction: column;
        text-align: center;
    }
    
    .results {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .result-item {
        padding: 0.75rem;
    }
    
    .result-number {
        font-size: 1.5rem;
    }
    
    .testimonial {
        padding: 1rem;
    }
    
    .industry-card {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .case-study-card {
        padding: 1.5rem;
    }
    
    .company-logo {
        width: 50px;
        height: 50px;
    }
    
    .logo-placeholder {
        font-size: 1rem;
    }
    
    .company-info h3 {
        font-size: 1.25rem;
    }
}

/* Blog Page Styles */
.featured-article {
    background: var(--secondary-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    margin-bottom: 2rem;
}

.article-image {
    position: relative;
    height: 300px;
    background: linear-gradient(135deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-placeholder {
    font-size: 3rem;
    color: var(--text-muted);
}

.article-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--accent-yellow);
    color: var(--primary-dark);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.category {
    background: var(--primary-dark);
    color: var(--accent-yellow);
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.date {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.article-title {
    color: var(--text-light);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.article-excerpt {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.article-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--accent-yellow);
    border-radius: 50%;
    flex-shrink: 0;
}

.author-info {
    flex: 1;
}

.author-name {
    color: var(--text-light);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.author-title {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.sidebar {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333;
    height: fit-content;
}

.sidebar h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.topic-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.topic-tag {
    background: var(--primary-dark);
    color: var(--text-light);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid #333;
    transition: all 0.3s ease;
}

.topic-tag:hover {
    background: var(--accent-yellow);
    color: var(--primary-dark);
    border-color: var(--accent-yellow);
}

.newsletter-text {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.newsletter-form .form-control {
    background: var(--primary-dark);
    border: 1px solid #444;
    color: var(--text-light);
}

.newsletter-form .form-control:focus {
    background: var(--primary-dark);
    border-color: var(--accent-yellow);
    color: var(--text-light);
}

/* Blog Cards */
.blog-card {
    background: var(--secondary-dark);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #333;
    height: 100%;
    transition: all 0.3s ease;
}

.blog-card:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 238, 50, 0.1);
}

.blog-image {
    height: 200px;
    background: linear-gradient(135deg, #333, #555);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.blog-image .image-placeholder {
    font-size: 2rem;
    color: var(--text-muted);
}

.blog-content {
    padding: 1.5rem;
}

.blog-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-title {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.blog-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-title a:hover {
    color: var(--accent-yellow);
}

.blog-excerpt {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.blog-author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.author-avatar.small {
    width: 32px;
    height: 32px;
}

.blog-author .author-name {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

/* Pagination */
.pagination .page-link {
    background: var(--secondary-dark);
    border: 1px solid #444;
    color: var(--text-light);
}

.pagination .page-link:hover {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--primary-dark);
}

.pagination .page-item.active .page-link {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow);
    color: var(--primary-dark);
}

/* Help Center Styles */
.search-box {
    max-width: 600px;
    margin: 0 auto;
}

.search-box .form-control {
    background: var(--secondary-dark);
    border: 2px solid #444;
    color: var(--text-light);
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
}

.search-box .form-control:focus {
    background: var(--secondary-dark);
    border-color: var(--accent-yellow);
    color: var(--text-light);
    box-shadow: 0 0 0 0.2rem rgba(255, 238, 50, 0.25);
}

.help-category {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 2rem;
    text-align: center;
    border: 1px solid #333;
    height: 100%;
    transition: all 0.3s ease;
}

.help-category:hover {
    border-color: var(--accent-yellow);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(255, 238, 50, 0.1);
}

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--accent-yellow), var(--accent-yellow-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.5rem;
    color: var(--primary-dark);
}

.help-category h4 {
    color: var(--text-light);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.help-category p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.help-links {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.help-links li {
    margin-bottom: 0.5rem;
}

.help-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.help-links a:hover {
    color: var(--accent-yellow);
}

/* Help Articles */
.help-articles {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid #333;
}

.help-article {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid #333;
}

.help-article:last-child {
    border-bottom: none;
}

.article-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-dark);
}

.article-content h4 {
    margin-bottom: 0.5rem;
}

.article-content h4 a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-content h4 a:hover {
    color: var(--accent-yellow);
}

.article-content p {
    color: var(--text-muted);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.views::before {
    content: "👁 ";
}

.updated::before {
    content: "🕒 ";
}

/* API Section */
.api-section {
    background: var(--secondary-dark);
    border-radius: 12px;
    padding: 3rem;
    border: 1px solid #333;
}

.api-features {
    margin: 2rem 0;
}

.api-feature {
    background: var(--primary-dark);
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid #333;
    height: 100%;
}

.api-feature h5 {
    color: var(--text-light);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.api-feature p {
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Support Options */
.support-option {
    text-align: center;
    padding: 2rem 1rem;
}

.support-icon {
    font-size: 2.5rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.support-option h5 {
    color: var(--primary-dark);
    font-weight: 600;
    margin-bottom: 1rem;
}

.support-option p {
    color: var(--primary-dark);
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

/* Responsive adjustments for blog and help pages */
@media (max-width: 768px) {
    .featured-article .article-content {
        padding: 1.5rem;
    }
    
    .article-title {
        font-size: 1.5rem;
    }
    
    .sidebar {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .help-article {
        flex-direction: column;
        text-align: center;
    }
    
    .article-meta {
        justify-content: center;
    }
    
    .api-section {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 576px) {
    .article-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .help-category {
        padding: 1.5rem;
    }
    
    .help-articles {
        padding: 1.5rem;
    }
    
    .api-section {
        padding: 1.5rem 1rem;
    }
}
