/* Showcase Page Styles */
.showcase-body {
    background: #0f172a;
    color: #f8fafc;
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.showcase-hero {
    padding: 6rem 1rem;
    position: relative;
    background: radial-gradient(circle at 50% 0%, rgba(99, 102, 241, 0.15) 0%, transparent 50%);
    text-align: center;
}

.showcase-hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.showcase-hero-subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    max-width: 700px;
    margin: 0 auto 2.5rem;
}

.showcase-visual {
    margin: 4rem auto;
    max-width: 1000px;
    border-radius: 24px;
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(148, 163, 184, 0.1);
    box-shadow: 0 50px 100px -20px rgba(0, 0, 0, 0.5);
    padding: 1rem;
    position: relative;
}

.showcase-visual img {
    width: 100%;
    border-radius: 16px;
    display: block;
}

.showcase-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 1rem;
}

.showcase-feature-item {
    padding: 2.5rem;
    background: rgba(30, 41, 59, 0.3);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.showcase-feature-item:hover {
    transform: translateY(-5px);
    background: rgba(30, 41, 59, 0.5);
    border-color: rgba(99, 102, 241, 0.3);
}

.showcase-feature-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.showcase-cta {
    padding: 6rem 1rem;
    background: linear-gradient(180deg, transparent 0%, rgba(99, 102, 241, 0.05) 100%);
    text-align: center;
}

.showcase-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2.5rem;
    background: #6366f1;
    color: #fff;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.2s;
}

.showcase-btn:hover {
    background: #4f46e5;
    transform: translateY(-2px);
    color: #fff;
}

@media (max-width: 768px) {
    .showcase-hero-title {
        font-size: 2.5rem;
    }
}

/* ?? Live CSS Mockup Utilities ??????????????????????????????????? */
.mockup-container {
    background: #f4f6fa;
    border-radius: 12px;
    overflow: hidden;
    color: #111827;
    text-align: left;
    font-size: 13px;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.05);
}

.mockup-sidebar {
    width: 180px;
    background: #0f172a;
    padding: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.5);
}

.mockup-sidebar-brand {
    color: #fff;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mockup-sidebar-item {
    padding: 0.5rem;
    border-radius: 6px;
}

.mockup-sidebar-item.active {
    background: #3b82f6;
    color: #fff;
}

.mockup-main {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.mockup-topbar {
    height: 40px;
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    justify-content: space-between;
}

.mockup-content {
    padding: 1rem;
    background: #f4f6fa;
    min-height: 400px;
}

.mockup-stat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1rem;
}

.mockup-stat-card {
    padding: 1rem;
    border-radius: 10px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.mockup-stat-card i {
    position: absolute;
    right: 0.75rem;
    bottom: 0.75rem;
    opacity: 0.2;
    font-size: 2rem;
}

.mockup-stat-label {
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    opacity: 0.8;
}

.mockup-stat-value {
    font-size: 1.25rem;
    font-weight: 700;
    margin-top: 0.25rem;
}

.mockup-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    padding: 1rem;
    margin-bottom: 1rem;
}

.mockup-card-title {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mockup-table {
    width: 100%;
    border-collapse: collapse;
}

.mockup-table th {
    text-align: left;
    padding: 0.5rem;
    font-size: 11px;
    text-transform: uppercase;
    color: #6b7280;
    border-bottom: 1px solid #f3f4f6;
}

.mockup-table td {
    padding: 0.75rem 0.5rem;
    border-bottom: 1px solid #f3f4f6;
}

.mockup-badge {
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
}

.bg-soft-blue {
    background: #3b82f6;
}

.bg-soft-green {
    background: #10b981;
}

.bg-soft-orange {
    background: #f59e0b;
}

.bg-soft-purple {
    background: #8b5cf6;
}

.bg-soft-red {
    background: #ef4444;
}

.text-success {
    color: #10b981;
}

.text-danger {
    color: #ef4444;
}

.text-warning {
    color: #f59e0b;
}

.mockup-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f3f4f6;
}