/* Landing Page Specific Styles - SEO Optimized */
/* Extracted inline styles to external CSS file for better performance */

/* Hero Section Icon Circles */
.feature-icon-circle {
    width: 80px;
    height: 80px;
}

/* Workspace Progress Bar */
.workspace-progress-bar {
    width: var(--progress-width, 0%);
}

/* Form Display Helpers */
.inline-form {
    display: inline;
}

/* Email Template Styles - for consistency */
.email-container {
    font-family: Arial, sans-serif;
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
}

.email-header {
    color: #333;
    border-bottom: 2px solid #007bff;
    padding-bottom: 10px;
}

.email-text {
    font-size: 16px;
    line-height: 1.6;
    color: #555;
}

.email-button {
    background-color: #007bff;
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    display: inline-block;
}

.email-footer {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #dee2e6;
    font-size: 14px;
    color: #6c757d;
}

/* Icon Sizes */
.icon-4rem {
    font-size: 4rem;
}

.icon-1-5rem {
    font-size: 1.5rem;
}

/* Avatar Circle */
.avatar-circle {
    width: 32px;
    height: 32px;
    font-size: 14px;
}

/* Feature Cards Circular Icons */
.feature-icon-sm {
    width: 40px;
    height: 40px;
}

.feature-icon-md {
    width: 60px;
    height: 60px;
}

.feature-icon-lg {
    width: 80px;
    height: 80px;
}

/* Progress Bar Heights */
.progress-thin {
    height: 8px;
}

/* Sticky Positioning */
.sticky-top-2 {
    top: 2rem;
}

/* Main Layout Padding - for fixed navbar */
.main-with-navbar {
    padding-top: 80px;
}

/* Text Breaking */
.break-all {
    word-break: break-all;
}

/* Integration Page Specific */
.integration-icon-circle {
    width: 80px;
    height: 80px;
}

/* Dashboard Progress */
.dashboard-progress {
    height: 8px;
}

.dashboard-progress-bar {
    width: var(--progress-percentage, 0%);
}

/* Critical CSS for above-the-fold content */
@media (min-width: 768px) {
    .feature-icon-circle,
    .integration-icon-circle {
        width: 80px;
        height: 80px;
    }
}

/* Performance optimizations */
.lazy-load {
    opacity: 0;
    transition: opacity 0.3s;
}

.lazy-load.loaded {
    opacity: 1;
}