/* input(3528,1): run-time error CSS1019: Unexpected token, found '}' */
/* ============================================
   BidHero Marketing Website - Custom Styles
   ============================================ */

/* Root Variables */
:root {
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --primary-light: #3b82f6;
    --success-color: #059669;
    --success-dark: #047857;
    --warning-color: #d97706;
    --danger-color: #dc2626;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    overflow-x: hidden;
    padding-top: 80px;
}

.text-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Navigation */
.navbar {
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gray-900) !important;
    padding: 0.5rem 0;
}

.navbar-brand img {
    max-height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.navbar-brand i {
    font-size: 1.8rem;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700) !important;
    padding: 0.5rem 1rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color) !important;
}

.nav-link.active {
    color: var(--primary-color) !important;
    font-weight: 600;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 1rem;
    right: 1rem;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

/* Hero Section */
.hero-section {
    padding-top: 80px;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(5, 150, 105, 0.05));
    border-radius: 0 0 0 50%;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.stat-item i {
    font-size: 2rem;
}

.stat-item strong {
    display: block;
    font-size: 1.25rem;
    color: var(--gray-900);
}

.stat-item small {
    display: block;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.cta-buttons .btn {
    padding: 0.875rem 2rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    border: none;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.3);
}

.btn-outline-secondary {
    border: 2px solid var(--gray-300);
    color: var(--gray-700);
}

.btn-outline-secondary:hover {
    background: var(--gray-100);
    border-color: var(--gray-400);
}

/* Hero Image */
.hero-image-container {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 0 50%;
    overflow: hidden;
    z-index: 1;
}

.hero-main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.floating-cards-container {
    position: relative;
    height: 600px;
    z-index: 3;
}

.floating-card {
    position: absolute;
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 1rem;
    animation: float 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

.floating-card i {
    font-size: 2rem;
    color: var(--primary-color);
}

.floating-card strong {
    display: block;
    font-size: 1rem;
    color: var(--gray-900);
}

.floating-card small {
    display: block;
    color: var(--gray-600);
    font-size: 0.875rem;
}

.card-1 {
    top: 10%;
    left: 10%;
    animation-delay: 0s;
}

.card-2 {
    top: 50%;
    right: 5%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 15%;
    left: 20%;
    animation-delay: 2s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Video Introduction Section */
.video-intro-section {
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.video-showcase-container {
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    border: 8px solid #f1f5f9;
    background: #000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.video-showcase-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
}

.video-showcase-container .ratio {
    background: #000;
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
}

.problem-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.problem-card i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.problem-card h5 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.problem-card p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
}

.platform-features {
    margin-top: 2rem;
}

.platform-feature {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 0.75rem;
    border-left: 4px solid var(--primary-color);
}

.platform-feature i {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.platform-feature h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

/* Split Screen Comparison */
.split-screen-comparison {
    margin-top: 2rem;
}

.comparison-container {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
}

.screenshot-side {
    flex: 1;
    position: relative;
}

.screenshot-label {
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gray-900);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    white-space: nowrap;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.screenshot-image {
    border-radius: 0.75rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--gray-200);
    transition: all 0.3s ease;
}

.screenshot-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.comparison-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-arrow i {
    font-size: 2.5rem;
    color: var(--primary-color);
    background: white;
    padding: 0.75rem;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

/* Responsive adjustments for split screen */
@media (max-width: 991px) {
    .comparison-container {
        flex-direction: column;
        gap: 3rem;
    }

    .comparison-arrow {
        transform: rotate(90deg);
    }

    .screenshot-label {
        top: -25px;
    }
}

.platform-feature p {
    color: var(--gray-600);
    margin: 0;
}

/* Platform Diagram */
.platform-diagram {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.diagram-box {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.diagram-box i {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.diagram-box h4 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.diagram-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.diagram-box li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    padding-left: 1.5rem;
    position: relative;
}

.diagram-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.contractor-box {
    border-top: 4px solid var(--primary-color);
}

.contractor-box i {
    color: var(--primary-color);
}

.customer-box {
    border-top: 4px solid var(--success-color);
}

.customer-box i {
    color: var(--success-color);
}

.diagram-arrow {
    font-size: 2rem;
    color: var(--gray-400);
}

/* Features Section */
.features-section {
    padding: 5rem 0;
}

/* Features Banner */
.features-banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.features-banner {
    background: white;
    border-radius: 1.5rem;
    padding: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 3px solid var(--primary-color);
    overflow: hidden;
    position: relative;
}

.banner-label {
    background: var(--primary-color);
    color: white;
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-label i {
    font-size: 1.25rem;
}

.features-banner-image {
    width: 100%;
    height: auto;
    display: block;
    border: none;
}

.banner-caption {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.caption-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
    justify-content: center;
}

.caption-item i {
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Badge styling for Feature-Rich Platform */
.features-banner-container .badge {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Responsive banner adjustments */
@media (max-width: 991px) {
    .banner-label {
        padding: 0.875rem 1rem;
        font-size: 0.9rem;
    }

    .banner-caption {
        padding: 1.25rem;
    }

    .caption-item {
        font-size: 0.875rem;
    }
}

@media (max-width: 576px) {
    .banner-label {
        padding: 0.75rem;
        font-size: 0.85rem;
    }

    .banner-caption {
        padding: 1rem;
    }

    .caption-item {
        font-size: 0.8rem;
        gap: 0.375rem;
    }

    .caption-item i {
        font-size: 1rem;
    }
}

/* Dual Dashboard Screenshots */
.dual-dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
}

.dual-dashboard-container .badge {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.dashboard-screenshot-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dashboard-screenshot-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
}

.screenshot-header {
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bid-tools-header {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.tools-header {
    background: linear-gradient(135deg, #059669, #047857);
}

.screenshot-wrapper {
    flex: 1;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.dashboard-screenshot {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1.25rem 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.footer-highlights {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--gray-700);
}

.highlight-item i {
    font-size: 1.125rem;
    flex-shrink: 0;
}

/* Feature Callout */
.feature-callout {
    background: linear-gradient(135deg, #fffbeb 0%, #fef3c7 100%);
    border: 2px solid #fbbf24;
    border-radius: 1rem;
    padding: 1.5rem 2rem;
}

.feature-callout h5 {
    color: var(--gray-900);
    font-weight: 700;
}

.callout-stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #374151 !important;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Responsive adjustments for dual dashboard */
@media (max-width: 991px) {
    .screenshot-header {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .screenshot-footer {
        padding: 1rem 1.25rem;
    }

    .highlight-item {
        font-size: 0.85rem;
    }

    .feature-callout {
        padding: 1.25rem 1.5rem;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .dashboard-screenshot-card {
        margin-bottom: 1.5rem;
    }

    .callout-stat {
        margin-top: 1rem;
    }
}

@media (max-width: 576px) {
    .screenshot-header {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .screenshot-footer {
        padding: 1rem;
    }

    .highlight-item {
        font-size: 0.8rem;
        gap: 0.5rem;
    }

    .highlight-item i {
        font-size: 1rem;
    }

    .feature-callout {
        padding: 1rem;
    }

    .stat-number {
        font-size: 1.75rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }
}

/* Analytics Dashboards Section */
.analytics-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
}

.analytics-showcase-container .badge {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

/* Featured Analytics Card (Timeline) */
.featured-analytics {
    margin-bottom: 2rem;
}

.analytics-card {
    background: white;
    border-radius: 1.25rem;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.analytics-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.15);
}

.analytics-card.featured-card {
    border: 3px solid var(--primary-color);
    box-shadow: 0 10px 40px rgba(37, 99, 235, 0.15);
}

.analytics-header {
    padding: 1rem 1.5rem;
    font-weight: 600;
    font-size: 1rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-header {
    background: linear-gradient(135deg, #6366f1, #4f46e5);
    padding: 1.25rem 1.5rem;
    font-size: 1.1rem;
}

.bids-header {
    background: linear-gradient(135deg, #2563eb, #1e40af);
}

.projects-header {
    background: linear-gradient(135deg, #059669, #047857);
}

.customers-header {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.acceptance-header {
    background: linear-gradient(135deg, #ec4899, #db2777);
}

.bidder-header {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
}

.analytics-image-wrapper {
    flex: 1;
    background: var(--gray-50);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.analytics-image {
    width: 100%;
    height: auto;
    display: block;
}

.analytics-caption {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 1rem 1.5rem;
    border-top: 2px solid var(--primary-color);
}

.analytics-caption p {
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
}

.analytics-footer {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 1rem 1.5rem;
    border-top: 2px solid var(--gray-200);
}

.analytics-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.feature-tag {
    background: white;
    border: 1px solid var(--gray-300);
    padding: 0.375rem 0.75rem;
    border-radius: 0.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--gray-700);
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.feature-tag i {
    color: var(--success-color);
    font-size: 0.75rem;
}

/* Analytics Callout */
.analytics-callout {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid var(--primary-color);
    border-radius: 1rem;
    padding: 2rem;
}

.analytics-callout h5 {
    color: var(--gray-900);
    font-weight: 700;
    font-size: 1.25rem;
}

.analytics-callout p {
    font-size: 1rem;
}

.analytics-benefit {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 0.75rem;
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: all 0.3s ease;
    height: 100%;
}

.analytics-benefit:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.analytics-benefit i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.analytics-benefit span {
    color: var(--gray-700);
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.5;
}

.featured-benefit {
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    border: 2px solid var(--primary-color);
    font-weight: 600;
}

.featured-benefit span {
    font-weight: 600;
    color: var(--gray-800);
}

/* Bidder Analytics Spotlight */
.bidder-analytics-spotlight {
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 100%);
    border: 2px solid #8b5cf6;
    border-radius: 1.5rem;
    padding: 3rem 2rem;
}

.bg-purple {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed) !important;
    color: white !important;
    border: none;
}

.spotlight-content h3 {
    color: var(--gray-900);
    font-size: 1.75rem;
}

.spotlight-benefits {
    display: grid;
    gap: 1.5rem;
}

.spotlight-benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.spotlight-benefit-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.spotlight-benefit-item strong {
    display: block;
    color: var(--gray-900);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.spotlight-benefit-item p {
    font-size: 0.9rem;
}

.spotlight-visual {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.15);
}

.spotlight-stats {
    display: grid;
    gap: 1.5rem;
}

.spotlight-stat-card {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, #faf5ff 0%, #ffffff 100%);
    border: 1px solid #e9d5ff;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.spotlight-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2);
}

.spotlight-stat-card i {
    font-size: 2rem;
    color: #8b5cf6;
    background: linear-gradient(135deg, #f3e8ff, #e9d5ff);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.75rem;
    flex-shrink: 0;
}

.stat-info {
    flex: 1;
}

.spotlight-stat-card .stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: #000000 !important;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.spotlight-stat-card .stat-label {
    font-size: 0.875rem;
    color: #000000 !important;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    font-weight: 500;
}

/* Responsive adjustments for analytics */
@media (max-width: 991px) {
    .analytics-header {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .featured-header {
        padding: 1rem 1.25rem;
        font-size: 1rem;
    }

    .analytics-footer {
        padding: 0.875rem 1.25rem;
    }

    .analytics-caption {
        padding: 0.875rem 1.25rem;
    }

    .analytics-callout {
        padding: 1.5rem;
    }

    .analytics-benefit {
        padding: 0.875rem 1rem;
    }

    .analytics-benefit i {
        font-size: 1.375rem;
    }

    .analytics-benefit span {
        font-size: 0.9rem;
    }

    .bidder-analytics-spotlight {
        padding: 2rem 1.5rem;
    }

    .spotlight-content h3 {
        font-size: 1.5rem;
    }

    .spotlight-visual {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .analytics-card {
        margin-bottom: 1.5rem;
    }

    .analytics-benefit {
        margin-bottom: 0.5rem;
    }
}

@media (max-width: 576px) {
    .analytics-header {
        padding: 0.75rem;
        font-size: 0.9rem;
    }

    .featured-header {
        padding: 0.875rem 1rem;
        font-size: 0.95rem;
    }

    .analytics-footer {
        padding: 0.875rem 1rem;
    }

    .analytics-caption {
        padding: 0.75rem 1rem;
    }

    .analytics-caption p {
        font-size: 0.875rem;
    }

    .feature-tag {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }

    .analytics-callout {
        padding: 1.25rem;
    }

    .analytics-callout h5 {
        font-size: 1.1rem;
    }

    .analytics-benefit {
        padding: 0.75rem 1rem;
    }

    .analytics-benefit i {
        font-size: 1.25rem;
    }

    .analytics-benefit span {
        font-size: 0.875rem;
    }
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-card.featured {
    border: 2px solid var(--primary-color);
}

.badge-new {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary-color);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.feature-card h4 {
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.feature-card p {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.feature-list li {
    padding: 0.5rem 0;
    color: var(--gray-700);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.feature-list i {
    color: var(--success-color);
    font-size: 1rem;
}

/* Customer Portal Section */
.customer-portal-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.portal-mockup {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    overflow: hidden;
}

.browser-bar {
    background: var(--gray-200);
    padding: 1rem;
    display: flex;
    gap: 0.5rem;
}

.browser-bar span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-400);
}

.portal-content {
    padding: 2rem;
}

.portal-content h3 {
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--gray-900);
}

.portal-features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.portal-feature-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.portal-feature-item i {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.portal-feature-item strong {
    display: block;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.portal-feature-item p {
    color: var(--gray-600);
    margin: 0;
    font-size: 0.95rem;
}

/* Differentiators */
.differentiator {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.diff-icon {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    flex-shrink: 0;
}

.differentiator h5 {
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--gray-900);
}

.differentiator p {
    color: var(--gray-600);
    margin: 0;
}

/* Customer Journey */
.customer-journey {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.journey-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 3rem;
    height: 3rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    margin: 0 auto 1rem;
}

.journey-step i {
    font-size: 2.5rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.journey-step h5 {
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gray-900);
}

.journey-step p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
}

.benefit-card {
    background: white;
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.benefit-icon {
    width: 5rem;
    height: 5rem;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.benefit-icon.time {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
}

.benefit-icon.money {
    background: linear-gradient(135deg, var(--success-color), var(--success-dark));
}

.benefit-icon.insights {
    background: linear-gradient(135deg, var(--warning-color), #f59e0b);
}

.benefit-card h3 {
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--gray-900);
}

.benefit-metrics {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.metric {
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 0.5rem;
    border-left: 4px solid var(--primary-color);
}

.metric strong {
    display: block;
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.metric span {
    color: var(--gray-700);
    font-size: 0.95rem;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f9fafb 0%, #f3f4f6 100%);
}

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.stars {
    color: #fbbf24;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.testimonial-text {
    color: var(--gray-700);
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-200);
}

.author-avatar {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--gray-900);
    font-weight: 600;
}

.testimonial-author small {
    display: block;
    color: var(--gray-600);
    font-size: 0.875rem;
}

/* Pricing Section */
.pricing-section {
    padding: 5rem 0;
}

.pricing-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    overflow: visible;
    transition: all 0.3s ease;
    position: relative;
    margin-top: 2rem;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.pricing-header {
    border-radius: 1rem 1rem 0 0;
    overflow: hidden;
}

.pricing-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    padding: 2.5rem 2rem;
    text-align: center;
}

.pricing-header h3 {
    font-weight: 700;
    margin-bottom: 1rem;
}

.price {
    margin: 1.5rem 0;
}

.price .currency {
    font-size: 2rem;
    vertical-align: top;
}

.price .amount {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1;
}

.price .period {
    font-size: 1.25rem;
    opacity: 0.9;
}

.pricing-header p {
    margin: 0;
    opacity: 0.9;
}

.price-subtext {
    margin-top: 0.5rem !important;
    font-size: 0.95rem !important;
    opacity: 0.95 !important;
    font-weight: 600 !important;
}

.pricing-features {
    padding: 2rem;
    min-height: 500px;
}

.pricing-features .feature {
    padding: 0.875rem 0;
    border-bottom: 1px solid var(--gray-100);
    display: flex;
    align-items: center;
    gap: 1rem;
}

.pricing-features .feature:last-child {
    border-bottom: none;
}

.pricing-features .feature i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.pricing-footer {
    padding: 0 2rem 2rem;
}

.pricing-card .btn {
    margin-bottom: 0;
}

/* Featured Plan Styling */
.featured-plan {
    position: relative;
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--success-color), var(--success-dark));
    color: white;
    padding: 0.5rem 2rem;
    border-radius: 2rem;
    font-weight: 700;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
    white-space: nowrap;
    z-index: 10;
}

.featured-plan .pricing-header {
    background: linear-gradient(135deg, var(--success-color), var(--success-dark));
}

/* ROI Calculator */
.roi-calculator {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.roi-metric {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    border: 2px solid var(--gray-100);
    height: 100%;
    transition: all 0.3s ease;
}

.roi-metric:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.1);
}

.roi-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white;
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.roi-icon i {
    font-size: 1.75rem;
}

.roi-content h5 {
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.roi-description {
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.roi-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

.roi-value span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-left: 0.25rem;
}

.roi-total {
    background: linear-gradient(135deg, var(--primary-color), var(--success-color));
    color: white;
    padding: 3rem;
    border-radius: 1rem;
    margin-top: 3rem;
}

.roi-total-content {
    text-align: center;
}

.roi-total-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    opacity: 0.95;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.roi-total-value {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1;
}

.roi-divider {
    width: 100px;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    margin: 2rem auto;
    border-radius: 2px;
}

.roi-investment,
.roi-return {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin: 1rem 0;
    font-size: 1.125rem;
}

.roi-investment span,
.roi-return span {
    opacity: 0.9;
}

.roi-investment strong,
.roi-return strong {
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: white;
    padding: 5rem 0;
}

.cta-section h2 {
    color: white;
}

.cta-section .lead {
    color: rgba(255, 255, 255, 0.9);
}

/* Path Cards */
.cta-path-card {
    background: white;
    border-radius: 1.5rem;
    padding: 2.5rem;
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.cta-path-free {
    border: 3px solid var(--primary-color);
}

.cta-path-founders {
    border: 3px solid #fbbf24;
    background: linear-gradient(135deg, #fffbeb 0%, #ffffff 100%);
}

.cta-path-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary-color);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.cta-path-badge.founders-badge {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.cta-path-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-top: 1rem;
}

.cta-path-title {
    color: var(--gray-900);
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-path-price {
    margin-bottom: 1rem;
}

.price-amount {
    color: var(--gray-900);
    font-size: 3rem;
    font-weight: 800;
    display: block;
    line-height: 1;
}

.price-period {
    color: var(--gray-600);
    font-size: 1rem;
    display: block;
    margin-top: 0.5rem;
}

.cta-path-description {
    color: var(--gray-700);
    font-size: 1rem;
    margin: 0;
}

.cta-path-features {
    flex: 1;
    margin-bottom: 2rem;
}

.cta-path-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.cta-path-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--gray-800);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.cta-path-features i {
    color: var(--success-color);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.cta-path-founders .cta-path-features i {
    color: #f59e0b;
}

.cta-path-action {
    text-align: center;
}

.cta-path-note {
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-top: 0.75rem;
    margin-bottom: 0;
}

.btn-founders {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border: none;
    color: var(--gray-900);
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-founders:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: var(--gray-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
}

/* Legacy styles - kept for backwards compatibility */
.cta-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.cta-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
}

.cta-features i {
    color: var(--success-color);
    font-size: 1.25rem;
}

.cta-form {
    background: white;
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.cta-form h4 {
    color: var(--gray-900);
    font-weight: 700;
}

/* Responsive */
@media (max-width: 991px) {
    .cta-path-card {
        margin-bottom: 2rem;
    }
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
}

.accordion-item {
    border: 1px solid var(--gray-200);
    margin-bottom: 1rem;
    border-radius: 0.5rem !important;
    overflow: hidden;
}

.accordion-button {
    font-weight: 600;
    color: var(--gray-900);
    background: white;
}

.accordion-button:not(.collapsed) {
    background: var(--gray-50);
    color: var(--primary-color);
}

.accordion-button:focus {
    box-shadow: none;
    border-color: var(--primary-color);
}

.accordion-body {
    color: var(--gray-700);
    line-height: 1.7;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: rgba(255, 255, 255, 0.85);
}

.footer p {
    color: rgba(255, 255, 255, 0.85);
}

.footer h5, .footer h6 {
    color: white;
}

.footer img {
    opacity: 0.95;
    transition: opacity 0.3s ease;
}

.footer img:hover {
    opacity: 1;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 0.5rem;
    margin-right: 0.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer hr {
    border-color: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */

/* Mobile First Improvements - Small Phones (up to 576px) */
@media (max-width: 576px) {
    /* Typography - Extra small screens */
    .display-3 {
        font-size: 1.75rem !important;
        line-height: 1.2;
    }

    .display-5 {
        font-size: 1.5rem !important;
        line-height: 1.3;
    }

    .lead {
        font-size: 1rem !important;
    }

    /* Hero Section - Mobile */
    .hero-section {
        padding-top: 60px;
        min-height: auto !important;
    }

    .hero-section .row {
        min-height: auto !important;
    }

    .hero-content {
        padding: 1.5rem 0;
    }

    .hero-stats {
        gap: 1rem;
        margin-bottom: 1.5rem !important;
    }

    .stat-item {
        flex-direction: row;
        gap: 0.5rem;
        padding: 0.75rem;
        background: rgba(255, 255, 255, 0.9);
        border-radius: 0.5rem;
        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    }

    .stat-item i {
        font-size: 1.5rem;
    }

    .stat-item strong {
        font-size: 1rem;
    }

    .stat-item small {
        font-size: 0.75rem;
    }

    /* CTA Buttons - Stack vertically on mobile */
    .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 0.75rem;
        width: 100%;
    }

    .cta-buttons .btn {
        width: 100%;
        margin: 0 !important;
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    /* Hide floating cards on mobile */
    .floating-cards-container {
        display: none;
    }

    /* Video Introduction Section - Mobile */
    .video-showcase-container {
        border-width: 4px;
        border-radius: 1rem;
    }

    /* Hero Image - Better mobile display */
    .hero-image-container {
        width: 100%;
        height: 300px;
        position: relative;
        margin-top: 2rem;
        border-radius: 1rem;
    }

    .hero-image-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.15);
        z-index: 1;
    }

    /* Navigation */
    .navbar-brand img {
        max-height: 32px;
    }

    .nav-link {
        padding: 0.75rem 1rem !important;
        font-size: 0.95rem;
    }

    /* Problem Cards */
    .problem-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .problem-card i {
        font-size: 2rem;
    }

    .problem-card h5 {
        font-size: 1.1rem;
    }

    /* Feature Cards */
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .feature-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    .feature-card h4 {
        font-size: 1.25rem;
    }

    /* Platform Features */
    .platform-feature {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }

    .platform-feature i {
        font-size: 2rem;
    }

    /* Differentiators */
    .differentiator {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
    }

    .diff-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    /* Customer Journey */
    .customer-journey {
        padding: 2rem 1rem;
    }

    .journey-step {
        margin-bottom: 2rem;
    }

    .step-number {
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }

    .journey-step i {
        font-size: 2rem;
    }

    /* Benefits Section */
    .benefit-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .benefit-icon {
        width: 4rem;
        height: 4rem;
        font-size: 2rem;
    }

    .benefit-card h3 {
        font-size: 1.25rem;
    }

    .metric {
        padding: 0.75rem;
    }

    .metric strong {
        font-size: 1.25rem;
    }

    /* Pricing Cards */
    .pricing-card {
        margin-top: 1.5rem;
    }

    .pricing-header {
        padding: 2rem 1.5rem;
    }

    .price .currency {
        font-size: 1.5rem;
    }

    .price .amount {
        font-size: 3rem;
    }

    .price .period {
        font-size: 1rem;
    }

    .pricing-features {
        padding: 1.5rem;
        min-height: auto;
    }

    .pricing-footer {
        padding: 0 1.5rem 1.5rem;
    }

    .featured-plan {
        transform: scale(1);
    }

    .pricing-badge {
        font-size: 0.7rem;
        padding: 0.35rem 1rem;
    }

    /* ROI Calculator */
    .roi-calculator {
        padding: 2rem 1rem;
    }

    .roi-metric {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .roi-icon {
        width: 50px;
        height: 50px;
    }

    .roi-icon i {
        font-size: 1.5rem;
    }

    .roi-value {
        font-size: 1.5rem;
    }

    .roi-total {
        padding: 2rem 1rem;
    }

    .roi-total-value {
        font-size: 2rem;
    }

    .roi-investment,
    .roi-return {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 1rem;
    }

    .roi-investment strong,
    .roi-return strong {
        font-size: 1.25rem;
    }

    /* Login Cards */
    .login-card {
        padding: 2rem;
        margin-bottom: 1.5rem;
    }

    .login-card-icon {
        width: 60px;
        height: 60px;
        font-size: 2rem;
    }

    .login-card-title {
        font-size: 1.5rem;
    }

    /* CTA Features */
    .cta-features {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .cta-features li {
        font-size: 0.95rem;
    }

    /* Portal Mockup */
    .portal-mockup {
        margin-top: 2rem;
    }

    .portal-content {
        padding: 1.5rem;
    }

    .portal-content h3 {
        font-size: 1.25rem;
    }

    /* Testimonials */
    .testimonial-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    /* FAQ */
    .accordion-button {
        font-size: 0.95rem;
        padding: 1rem;
    }

    .accordion-body {
        font-size: 0.95rem;
        padding: 1rem;
    }

    /* Footer */
    .footer {
        font-size: 0.9rem;
    }

    /* Document Type Cards */
    .document-type-card {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .document-type-card i {
        font-size: 2rem;
    }

    .document-type-card h5 {
        font-size: 1rem;
    }

    .document-type-card ul li {
        font-size: 0.85rem;
    }
}

/* Tablets and Small Desktops (577px to 991px) */
@media (min-width: 577px) and (max-width: 991px) {
    .hero-section {
        padding-bottom: 3rem;
    }

    .hero-stats {
        justify-content: center;
        flex-wrap: wrap;
    }

    .stat-item {
        min-width: 45%;
    }

    .cta-buttons {
        text-align: center;
    }

    .floating-cards-container {
        height: 400px;
    }

    .platform-diagram {
        margin-top: 3rem;
    }

    .diagram-arrow {
        transform: rotate(90deg);
    }

    .cta-features {
        grid-template-columns: 1fr;
    }

    /* Brighten hero image on tablets */
    .hero-image-container::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255, 255, 255, 0.25);
        z-index: 1;
    }

    .hero-main-image {
        filter: brightness(1.2) contrast(0.95);
    }

    .display-3 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }
}

/* Standard Tablets (768px to 991px) */
@media (max-width: 768px) {
    .display-3 {
        font-size: 2.5rem;
    }

    .display-5 {
        font-size: 2rem;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }

    .stat-item {
        width: 100%;
        justify-content: center;
    }

    .cta-buttons .btn {
        margin: 0.5rem;
    }

    .benefit-card,
    .testimonial-card,
    .feature-card {
        margin-bottom: 1.5rem;
    }

    .problem-card {
        margin-bottom: 1.5rem;
    }

    .differentiator {
        flex-direction: column;
    }

    .diff-icon {
        width: 3rem;
        height: 3rem;
        font-size: 1.5rem;
    }

    .featured-plan {
        transform: scale(1);
        margin-top: 1rem;
    }

    .pricing-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1.5rem;
    }

    .pricing-features {
        min-height: auto;
    }
}

/* Improve touch targets for mobile */
@media (max-width: 768px) {
    .btn {
        min-height: 48px;
        padding: 0.75rem 1.5rem;
    }

    .nav-link {
        min-height: 48px;
        display: flex;
        align-items: center;
    }

    .accordion-button {
        min-height: 56px;
    }
}

/* Scroll Animations */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Utility Classes */
.shadow-lg {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
}

.rounded-lg {
    border-radius: 1rem !important;
}

/* Contractor Portal Section - Document Type Cards */
.document-type-card {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    height: 100%;
}

.document-type-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
    border-color: var(--warning-color);
}

.document-type-card i {
    font-size: 2.5rem;
    color: var(--warning-color);
    margin-bottom: 1rem;
    display: block;
}

.document-type-card h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 1rem;
}

.document-type-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.document-type-card ul li {
    padding: 0.4rem 0;
    color: var(--gray-600);
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.document-type-card ul li:before {
    content: '\2022';
    color: var(--warning-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

/* ============================================
   Login Portal Selection Section
   ============================================ */

.login-portal-section {
    background: var(--gray-50);
}

.login-card {
    background: white;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.login-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.contractor-card {
    border-color: rgba(37, 99, 235, 0.1);
}

.contractor-card:hover {
    border-color: var(--primary-color);
}

.customer-card {
    border-color: rgba(5, 150, 105, 0.1);
}

.customer-card:hover {
    border-color: var(--success-color);
}

.login-card-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2.5rem;
}

.contractor-card .login-card-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.customer-card .login-card-icon {
    background: linear-gradient(135deg, var(--success-color), var(--success-dark));
    color: white;
}

.login-card-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gray-900);
    text-align: center;
    margin-bottom: 0.5rem;
}

.login-card-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 1rem;
}

.login-card-description {
    text-align: center;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.login-card-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    flex-grow: 1;
}

.login-card-features li {
    padding: 0.75rem 0;
    color: var(--gray-700);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
}

.login-card-features li i {
    font-size: 1.1rem;
    margin-right: 0.75rem;
    flex-shrink: 0;
}

.contractor-card .login-card-features li i {
    color: var(--primary-color);
}

.customer-card .login-card-features li i {
    color: var(--success-color);
}

.login-card .btn {
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 0.875rem 1.5rem;
}

.login-card .btn:hover {
    transform: scale(1.02);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* Security Section */
.security-section {
    background: var(--gray-50);
}

.security-features {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.security-feature-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.security-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--success-color), var(--success-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.3);
}

.security-feature-item h5 {
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.security-feature-item p {
    color: var(--gray-600);
    margin: 0;
    line-height: 1.6;
}

.security-trust-box {
    background: white;
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--success-color);
}

.trust-header {
    text-align: center;
    margin-bottom: 2rem;
}

.trust-header h3 {
    color: var(--gray-800);
}

.trust-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--gray-200);
}

.trust-stat {
    text-align: center;
}

.trust-stat-value {
    font-size: 2rem;
    font-weight: 800;
    color: var(--success-color);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.trust-stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

.trust-badges p {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .login-card {
        margin-bottom: 1.5rem;
    }

    .security-features {
        margin-bottom: 2rem;
    }

    .trust-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}

@media (max-width: 767px) {
    .security-feature-item {
        flex-direction: column;
        text-align: center;
    }

    .security-icon {
        margin: 0 auto;
    }
}

/* ============================================
   Catalog System Section Styles
   ============================================ */

/* Catalog Type Cards */
.catalog-type-card {
    background: white;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.catalog-type-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.catalog-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: white;
    margin: 0 auto 24px;
}

.catalog-icon.preset {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.catalog-icon.uploaded {
    background: linear-gradient(135deg, #059669, #10b981);
}

.catalog-icon.connected {
    background: linear-gradient(135deg, #d97706, #f59e0b);
}

.catalog-type-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    text-align: center;
}

.catalog-subtitle {
    font-size: 14px;
    color: var(--gray-500);
    text-align: center;
    margin-bottom: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.catalog-type-card > p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

.catalog-benefits {
    margin-bottom: 24px;
}

.benefit-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.benefit-item i {
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.benefit-item span {
    color: var(--gray-700);
    line-height: 1.5;
}

.use-case {
    background: var(--gray-50);
    padding: 16px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-color);
    font-size: 14px;
    color: var(--gray-600);
}

.use-case strong {
    color: var(--gray-900);
}

/* Workflow Example */
.workflow-example {
    margin-top: 24px;
}

.workflow-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.step-icon {
    width: 48px !important;
    height: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50% !important;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    flex-shrink: 0;
}

.workflow-step > div:not(.step-icon) {
    flex: 1;
}

.workflow-step strong {
    color: var(--gray-900);
    font-size: 18px;
    display: block;
    margin-bottom: 12px;
}

.workflow-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.workflow-list li {
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: var(--gray-600);
    line-height: 1.6;
}

.workflow-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 20px;
}

.workflow-list li strong {
    color: var(--gray-900);
    font-size: 16px;
    font-weight: 600;
}

/* Catalog Stats Box */
.catalog-stats-box {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 12px 32px rgba(37, 99, 235, 0.25);
}

.catalog-stats-box h4 {
    color: white;
    font-weight: 700;
    font-size: 22px;
}

.stat-row {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-row:last-child {
    border-bottom: none;
}

.stat-value {
    font-size: 48px;
    font-weight: 800;
    color: white;
    line-height: 1;
    min-width: 120px;
}

.stat-label {
    color: rgba(255, 255, 255, 0.9);
    font-size: 16px;
    line-height: 1.4;
}

/* Pain Resolution Box */
.pain-resolution-box {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.pain-resolution-box h4 {
    color: var(--gray-900);
    font-size: 24px;
    font-weight: 700;
}

.pain-resolution-box h4 i {
    color: var(--danger-color);
}

.pain-before,
.pain-after {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 12px;
    height: 100%;
}

.pain-before {
    border-left: 4px solid var(--danger-color);
}

.pain-after {
    border-left: 4px solid var(--success-color);
}

.pain-before strong,
.pain-after strong {
    display: block;
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--gray-900);
}

.pain-before ul,
.pain-after ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pain-before ul li,
.pain-after ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    color: var(--gray-700);
    line-height: 1.6;
}

.pain-before ul li:before {
    content: "❌";
    position: absolute;
    left: 0;
    font-size: 16px;
}

.pain-after ul li:before {
    content: "✅";
    position: absolute;
    left: 0;
    font-size: 16px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .catalog-stats-box {
        margin-top: 32px;
    }

    .workflow-example {
        margin-bottom: 32px;
    }
}

@media (max-width: 767px) {
    .catalog-type-card {
        padding: 24px;
    }

    .catalog-stats-box {
        padding: 24px;
    }

    .stat-value {
        font-size: 36px;
        min-width: 100px;
    }

    .stat-label {
        font-size: 14px;
    }

    .pain-resolution-box {
        padding: 24px;
    }

    .workflow-step {
        flex-direction: column;
    }

    .step-icon {
        margin: 0 auto;
    }
}

/* AI-Powered Features Section */
.ai-features-showcase-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 1rem;
}

.ai-features-showcase-container .badge {
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.ai-feature-content {
    padding: 2rem 1.5rem;
}

.ai-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.ai-benefit-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.ai-benefit-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.ai-benefit-item strong {
    display: block;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
    font-size: 1.05rem;
}

.ai-benefit-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.5;
}

.ai-feature-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.ai-stat {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 0.75rem;
    min-width: 120px;
    flex: 1;
}

.ai-stat-value {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.ai-stat-label {
    font-size: 0.85rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ai-screenshot-card {
    position: relative;
}

.screenshot-device {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.screenshot-device:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
}

.screenshot-device img {
    width: 100%;
    height: auto;
    display: block;
}

.screenshot-caption {
    margin-top: 1rem;
}

.ai-callout {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 1rem;
    padding: 2rem;
    border-left: 4px solid #764ba2;
}

.ai-callout .callout-stat {
    background: white;
    border-radius: 0.75rem;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid #764ba2;
}

/* Responsive Styles for AI Section */
@media (max-width: 991px) {
    .ai-feature-content {
        padding: 1.5rem 1rem;
    }

    .ai-benefits {
        gap: 1.25rem;
    }

    .ai-feature-stats {
        gap: 1rem;
        justify-content: center;
    }

    .ai-stat {
        min-width: 100px;
    }

    .screenshot-device {
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 768px) {
    .ai-features-showcase-container {
        padding: 2rem 1rem;
    }

    .ai-feature-content {
        padding: 1rem 0.5rem;
    }

    .ai-benefit-item {
        gap: 0.75rem;
    }

    .ai-benefit-item i {
        font-size: 1.25rem;
    }

    .ai-benefit-item strong {
        font-size: 1rem;
    }

    .ai-benefit-item p {
        font-size: 0.9rem;
    }

    .ai-feature-stats {
        gap: 0.75rem;
    }

    .ai-stat {
        min-width: 90px;
        padding: 0.75rem;
    }

    .ai-stat-value {
        font-size: 1.5rem;
    }

    .ai-stat-label {
        font-size: 0.75rem;
    }

    .ai-callout {
        padding: 1.5rem 1rem;
    }

    .screenshot-caption p {
        font-size: 0.85rem;
    }
}

@media (max-width: 576px) {
    .ai-features-showcase-container {
        padding: 1.5rem 0.75rem;
    }

    .ai-benefits {
        gap: 1rem;
    }

    .ai-benefit-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .ai-benefit-item i {
        margin-top: 0;
    }

    .ai-feature-stats {
        flex-direction: column;
        gap: 0.5rem;
    }

    .ai-stat {
        width: 100%;
        min-width: auto;
    }

    .ai-callout {
        padding: 1rem;
        text-align: center;
    }

    .ai-callout .row {
        flex-direction: column;
    }

    .ai-callout .col-md-4 {
        margin-top: 1rem;
    }
}

}

/* ============================================
   Page Header Styles (for new multi-page structure)
   ============================================ */

/* Fix navbar overlap - add padding to page headers */
.page-header {
    padding-top: 2rem !important;
    padding-bottom: 3rem !important;
    margin-top: 0 !important;
}

/* About Page Specific Styles */
.story-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-stat-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.story-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.story-stat-card .stat-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.story-stat-card .stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.story-stat-card .stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

.value-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.value-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: white;
}

.founders-club-badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.founders-club-badge i {
    font-size: 3rem;
    color: white;
}

/* Contact Page Specific Styles */
.contact-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-form-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    padding: 3rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-link {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    transform: translateY(-4px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.linkedin {
    background: #0a66c2;
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.youtube {
    background: #ff0000;
}

/* Workflow Page Specific Styles */
.workflow-step {
    padding: 3rem 0;
}

.workflow-content {
    padding: 1rem 0;
}

.step-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: white !important;
    font-size: 0.95rem;
    font-weight: 700;
    padding: 0.6rem 1.75rem;
    border-radius: 2rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    text-align: center;
    min-width: 120px;
    white-space: nowrap;
}

.step-number.step-2 {
    background: linear-gradient(135deg, var(--warning-color), #f59e0b);
}

.step-number.step-3 {
    background: linear-gradient(135deg, var(--success-color), #10b981);
}

.step-number.step-4 {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.workflow-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.workflow-feature-item {
    display: flex;
    align-items: start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 0.75rem;
    transition: all 0.3s ease;
}

.workflow-feature-item:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transform: translateX(8px);
}

.workflow-feature-item i {
    font-size: 1.5rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.workflow-image {
    position: relative;
}

.workflow-image img {
    width: 100%;
    height: auto;
}

.benefit-stat {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.benefit-stat:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.benefit-stat .stat-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-stat .stat-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-stat .stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 0.5rem;
}

.benefit-stat .stat-label {
    font-size: 1rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* Responsive adjustments for new pages */
@media (max-width: 991px) {
    .page-header {
        padding-top: 120px !important;
        padding-bottom: 2rem !important;
    }
    
    .workflow-feature-item {
        padding: 1rem;
    }
    
    .story-stats {
        margin-top: 2rem;
    }
}

@media (max-width: 768px) {
    .page-header h1 {
        font-size: 2rem !important;
    }
    
    .page-header .lead {
        font-size: 1rem !important;
    }
    
    .contact-form-card {
        padding: 2rem 1.5rem;
    }
    
    .workflow-step {
        padding: 2rem 0;
    }
}

