451 lines
21 KiB
HTML
451 lines
21 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>Features - DocuPulse</title>
|
|
<meta name="description" content="Discover the powerful features of DocuPulse - the enterprise document management platform designed for modern businesses.">
|
|
<link href="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/css/bootstrap.min.css" rel="stylesheet">
|
|
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0/css/all.min.css">
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='css/colors.css') }}?v={{ 'css/colors.css'|asset_version }}">
|
|
<style>
|
|
.feature-section {
|
|
padding: 80px 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.feature-card {
|
|
background: var(--white);
|
|
border-radius: 20px;
|
|
padding: 40px 30px;
|
|
box-shadow: 0 10px 30px var(--shadow-color);
|
|
transition: all 0.4s ease;
|
|
height: 100%;
|
|
border: none;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.feature-card::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
height: 4px;
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
|
transform: scaleX(0);
|
|
transition: transform 0.3s ease;
|
|
}
|
|
.feature-card:hover::before {
|
|
transform: scaleX(1);
|
|
}
|
|
.feature-card:hover {
|
|
transform: translateY(-10px);
|
|
box-shadow: 0 20px 40px var(--shadow-color-light);
|
|
}
|
|
.feature-icon {
|
|
width: 90px;
|
|
height: 90px;
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
|
border-radius: 50%;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
margin: 0 auto 30px;
|
|
color: white;
|
|
font-size: 2.2rem;
|
|
position: relative;
|
|
z-index: 2;
|
|
}
|
|
.feature-icon::after {
|
|
content: '';
|
|
position: absolute;
|
|
top: -5px;
|
|
left: -5px;
|
|
right: -5px;
|
|
bottom: -5px;
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
|
border-radius: 50%;
|
|
z-index: -1;
|
|
opacity: 0.3;
|
|
transition: all 0.3s ease;
|
|
}
|
|
.feature-card:hover .feature-icon::after {
|
|
transform: scale(1.2);
|
|
opacity: 0.5;
|
|
}
|
|
.hero-section {
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
|
color: white;
|
|
padding: 120px 0 80px 0;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.hero-section::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
|
|
opacity: 0.3;
|
|
}
|
|
.section-title {
|
|
color: var(--text-dark);
|
|
font-weight: 700;
|
|
margin-bottom: 1rem;
|
|
position: relative;
|
|
}
|
|
.section-title::after {
|
|
content: '';
|
|
position: absolute;
|
|
bottom: -10px;
|
|
left: 0;
|
|
width: 60px;
|
|
height: 3px;
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
|
border-radius: 2px;
|
|
}
|
|
.section-subtitle {
|
|
color: var(--text-muted);
|
|
font-size: 1.1rem;
|
|
margin-bottom: 3rem;
|
|
}
|
|
.visual-guide-placeholder {
|
|
border-radius: 20px;
|
|
padding: 40px;
|
|
text-align: center;
|
|
min-height: 350px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
position: relative;
|
|
overflow: hidden;
|
|
box-shadow: 0 15px 35px var(--shadow-color);
|
|
}
|
|
.visual-guide-placeholder::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
background: linear-gradient(45deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
|
|
transform: translateX(-100%);
|
|
transition: transform 0.6s ease;
|
|
}
|
|
.visual-guide-placeholder:hover::before {
|
|
transform: translateX(100%);
|
|
}
|
|
.feature-highlight {
|
|
background: linear-gradient(135deg, var(--primary-bg-light) 0%, var(--secondary-bg-light) 100%);
|
|
border-radius: 25px;
|
|
padding: 60px 40px;
|
|
position: relative;
|
|
overflow: hidden;
|
|
}
|
|
.feature-highlight::before {
|
|
content: '';
|
|
position: absolute;
|
|
top: -50%;
|
|
right: -50%;
|
|
width: 200%;
|
|
height: 200%;
|
|
background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
|
|
animation: float 6s ease-in-out infinite;
|
|
}
|
|
@keyframes float {
|
|
0%, 100% { transform: translateY(0px) rotate(0deg); }
|
|
50% { transform: translateY(-20px) rotate(180deg); }
|
|
}
|
|
.staggered-grid {
|
|
display: grid;
|
|
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
|
|
gap: 30px;
|
|
margin-top: 50px;
|
|
}
|
|
.staggered-item:nth-child(odd) {
|
|
transform: translateY(30px);
|
|
}
|
|
.floating-elements {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
pointer-events: none;
|
|
overflow: hidden;
|
|
}
|
|
.floating-element {
|
|
position: absolute;
|
|
width: 60px;
|
|
height: 60px;
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
|
border-radius: 50%;
|
|
opacity: 0.1;
|
|
animation: float-around 8s ease-in-out infinite;
|
|
}
|
|
.floating-element:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; }
|
|
.floating-element:nth-child(2) { top: 60%; right: 15%; animation-delay: 2s; }
|
|
.floating-element:nth-child(3) { bottom: 30%; left: 20%; animation-delay: 4s; }
|
|
@keyframes float-around {
|
|
0%, 100% { transform: translate(0, 0) rotate(0deg); }
|
|
25% { transform: translate(20px, -20px) rotate(90deg); }
|
|
50% { transform: translate(-10px, -40px) rotate(180deg); }
|
|
75% { transform: translate(-30px, -10px) rotate(270deg); }
|
|
}
|
|
.gradient-text {
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
|
-webkit-background-clip: text;
|
|
-webkit-text-fill-color: transparent;
|
|
background-clip: text;
|
|
}
|
|
.feature-badge {
|
|
position: absolute;
|
|
top: -15px;
|
|
right: 20px;
|
|
background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
|
|
color: white;
|
|
padding: 8px 16px;
|
|
border-radius: 20px;
|
|
font-size: 0.8rem;
|
|
font-weight: 600;
|
|
transform: rotate(3deg);
|
|
}
|
|
.additional-features .section-title::after {
|
|
display: none;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
{% include 'components/header_nav.html' %}
|
|
|
|
<!-- Hero Section -->
|
|
<section class="hero-section">
|
|
<div class="floating-elements">
|
|
<div class="floating-element"></div>
|
|
<div class="floating-element"></div>
|
|
<div class="floating-element"></div>
|
|
</div>
|
|
<div class="container text-center position-relative">
|
|
<h1 class="display-4 fw-bold mb-4">Powerful Features for Modern Enterprises</h1>
|
|
<p class="lead fs-5">Discover how DocuPulse transforms document management with intelligent workflows, secure collaboration, and scalable architecture.</p>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Room-Based Workspaces Feature -->
|
|
<section class="feature-section">
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
<div class="col-lg-6">
|
|
<div class="feature-highlight">
|
|
<h2 class="section-title gradient-text">Room-Based Workspaces</h2>
|
|
<p class="section-subtitle">Create isolated collaboration environments with granular permissions, file storage, and real-time messaging for teams and projects.</p>
|
|
<ul class="list-unstyled">
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Isolated team spaces for each project</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Granular permissions and access controls</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Integrated file storage and messaging</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Real-time collaboration tools</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="visual-guide-placeholder" style="background: var(--bg-color);">
|
|
<div>
|
|
<i class="fas fa-image fa-4x text-muted mb-3"></i>
|
|
<p class="text-muted fw-bold">Visual Guide: Room Workspace Interface</p>
|
|
<small class="text-muted">Screenshot or demo of room creation and management</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Client Document Requests Feature -->
|
|
<section class="feature-section" style="background-color: var(--bg-color);">
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
<div class="col-lg-6 order-lg-2">
|
|
<div class="feature-highlight">
|
|
<h2 class="section-title gradient-text">Client Document Requests</h2>
|
|
<p class="section-subtitle">Streamlined communication system for requesting documents from clients with file attachments and conversation tracking.</p>
|
|
<ul class="list-unstyled">
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Document request workflows</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Conversation tracking and history</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>File attachments and sharing</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Status tracking and notifications</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6 order-lg-1">
|
|
<div class="visual-guide-placeholder" style="background: var(--white);">
|
|
<div>
|
|
<i class="fas fa-image fa-4x text-muted mb-3"></i>
|
|
<p class="text-muted fw-bold">Visual Guide: Document Request Flow</p>
|
|
<small class="text-muted">Workflow diagram or interface screenshot</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Advanced File Management Feature -->
|
|
<section class="feature-section">
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
<div class="col-lg-6">
|
|
<div class="feature-highlight">
|
|
<h2 class="section-title gradient-text">Advanced File Management</h2>
|
|
<p class="section-subtitle">Upload, organize, search, and manage files with hierarchical folders and comprehensive metadata tracking.</p>
|
|
<ul class="list-unstyled">
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Hierarchical folder structure</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Advanced search and filtering</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Metadata tracking and organization</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>File versioning and history</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="visual-guide-placeholder" style="background: var(--bg-color);">
|
|
<div>
|
|
<i class="fas fa-image fa-4x text-muted mb-3"></i>
|
|
<p class="text-muted fw-bold">Visual Guide: File Management Interface</p>
|
|
<small class="text-muted">File browser and organization interface</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Security & Compliance Feature -->
|
|
<section class="feature-section" style="background-color: var(--bg-color);">
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
<div class="col-lg-6 order-lg-2">
|
|
<div class="feature-highlight">
|
|
<h2 class="section-title gradient-text">Security & Compliance</h2>
|
|
<p class="section-subtitle">Enterprise-grade security with comprehensive compliance features for data protection and regulatory requirements.</p>
|
|
<ul class="list-unstyled">
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Role-based access controls</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>End-to-end encryption</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>GDPR and HIPAA compliance</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Comprehensive audit logging</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6 order-lg-1">
|
|
<div class="visual-guide-placeholder" style="background: var(--white);">
|
|
<div>
|
|
<i class="fas fa-image fa-4x text-muted mb-3"></i>
|
|
<p class="text-muted fw-bold">Visual Guide: Security Dashboard</p>
|
|
<small class="text-muted">Security settings and compliance reports</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- White Labeling Feature -->
|
|
<section class="feature-section">
|
|
<div class="container">
|
|
<div class="row align-items-center">
|
|
<div class="col-lg-6">
|
|
<div class="feature-highlight">
|
|
<h2 class="section-title gradient-text">White Labeling</h2>
|
|
<p class="section-subtitle">Complete brand customization with custom logos, company colors, and personalized branding throughout the platform.</p>
|
|
<ul class="list-unstyled">
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Custom company logo upload</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Brand color customization</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Personalized email templates</li>
|
|
<li class="mb-3"><i class="fas fa-check text-success me-2"></i>Complete platform rebranding</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-6">
|
|
<div class="visual-guide-placeholder" style="background: var(--bg-color);">
|
|
<div>
|
|
<i class="fas fa-image fa-4x text-muted mb-3"></i>
|
|
<p class="text-muted fw-bold">Visual Guide: Brand Customization</p>
|
|
<small class="text-muted">Logo upload and color customization interface</small>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- Additional Features Grid -->
|
|
<section class="feature-section additional-features" style="background-color: var(--bg-color);">
|
|
<div class="container">
|
|
<div class="text-center mb-5">
|
|
<h2 class="section-title gradient-text" style="position: relative;">Additional Features</h2>
|
|
<p class="section-subtitle">More powerful tools to enhance your document management workflow</p>
|
|
</div>
|
|
<div class="row g-4">
|
|
<div class="col-lg-4 col-md-6">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-users"></i>
|
|
</div>
|
|
<h3 class="h5 fw-bold mb-3">Team Management</h3>
|
|
<p class="text-muted">Efficient team management with member roles, permissions, and collaborative workflows for seamless project execution.</p>
|
|
<ul class="list-unstyled mt-3">
|
|
<li><i class="fas fa-check text-success me-2"></i>Member roles</li>
|
|
<li><i class="fas fa-check text-success me-2"></i>Collaborative workflows</li>
|
|
<li><i class="fas fa-check text-success me-2"></i>Project execution</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-4 col-md-6">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-star"></i>
|
|
</div>
|
|
<h3 class="h5 fw-bold mb-3">File Organization</h3>
|
|
<p class="text-muted">Advanced file organization with starring, tagging, and intelligent search capabilities for quick access to important documents.</p>
|
|
<ul class="list-unstyled mt-3">
|
|
<li><i class="fas fa-check text-success me-2"></i>File starring</li>
|
|
<li><i class="fas fa-check text-success me-2"></i>Intelligent search</li>
|
|
<li><i class="fas fa-check text-success me-2"></i>Quick access</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<div class="col-lg-4 col-md-6">
|
|
<div class="feature-card">
|
|
<div class="feature-icon">
|
|
<i class="fas fa-bell"></i>
|
|
</div>
|
|
<h3 class="h5 fw-bold mb-3">Smart Notifications</h3>
|
|
<p class="text-muted">Comprehensive notification system with customizable email templates, SMTP integration, and real-time alerts.</p>
|
|
<ul class="list-unstyled mt-3">
|
|
<li><i class="fas fa-check text-success me-2"></i>Email templates</li>
|
|
<li><i class="fas fa-check text-success me-2"></i>SMTP integration</li>
|
|
<li><i class="fas fa-check text-success me-2"></i>Real-time alerts</li>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
|
|
<!-- CTA Section -->
|
|
<section class="py-5">
|
|
<div class="container text-center">
|
|
<h2 class="display-5 fw-bold mb-4">Ready to Get Started?</h2>
|
|
<p class="lead text-muted mb-5">Experience the power of DocuPulse for your enterprise document management needs</p>
|
|
{% with primary_url=url_for('public.pricing'), primary_icon='fas fa-rocket', primary_text='View Pricing', secondary_url=url_for('public.contact'), secondary_icon='fas fa-envelope', secondary_text='Contact Sales' %}
|
|
{% include 'components/cta_buttons.html' %}
|
|
{% endwith %}
|
|
</div>
|
|
</section>
|
|
|
|
{% include 'components/footer_nav.html' %}
|
|
|
|
<script src="https://cdn.jsdelivr.net/npm/bootstrap@5.3.0/dist/js/bootstrap.bundle.min.js"></script>
|
|
</body>
|
|
</html> |