/* ========================================
   UsefulAI Design System - Enhanced Version 3.0
   ======================================== */

/* Tailwind CSS Directives */
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Design System Variables */
:root {
    --purple-primary: #8B5CF6;
    --purple-deep: #7C3AED;
    --purple-light: #A855F7;
    --charcoal: #1a1a1a;
    --gray-medium: #666666;
    --gray-light: #f8fafc;
    --white: #ffffff;

    --space-xs: 8px;
    --space-sm: 16px;
    --space-md: 24px;
    --space-lg: 32px;
    --space-xl: 48px;
    --space-2xl: 80px;

    --font-hero: 4rem;
    --font-h1: 3rem;
    --font-h2: 2.5rem;
    --font-h3: 1.8rem;
    --font-body-lg: 1.1rem;
    --font-body: 1rem;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.12);
    --shadow-purple: 0 4px 16px rgba(139, 92, 246, 0.3);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Global Styles */
* {
    scroll-behavior: smooth;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--charcoal);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Space Grotesk', sans-serif;
}

/* Enhanced Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
}

/* Modern Button System */
.btn-primary {
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-light) 100%);
    color: white;
    border: none;
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-lg);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    box-shadow: var(--shadow-purple);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    transform: translateY(0);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-primary) 100%);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.4);
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-secondary {
    background: transparent;
    color: var(--purple-primary);
    border: 2px solid var(--purple-primary);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-lg);
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--purple-primary);
    transition: width 0.3s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    transform: translateY(-2px);
}

.btn-secondary:hover::before {
    width: 100%;
}

/* Enhanced Card System */
.card-hover {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
    background: white;
    border: 1px solid rgba(139, 92, 246, 0.1);
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: var(--shadow-xl);
    border-color: rgba(139, 92, 246, 0.2);
}

.card-hover:hover::before {
    opacity: 1;
}

/* Enhanced Animations */
.blob {
    animation: blob-animation 20s ease-in-out infinite;
}

@keyframes blob-animation {
    0%, 100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        border-radius: 40% 30% 60% 50% / 70% 40% 50% 60%;
        transform: translate(-20px, 20px) rotate(180deg);
    }
    75% {
        border-radius: 70% 50% 40% 60% / 30% 50% 70% 40%;
        transform: translate(20px, 20px) rotate(270deg);
    }
}

.float {
    animation: float 8s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    25% {
        transform: translateY(-20px) rotate(1deg);
    }
    50% {
        transform: translateY(-10px) rotate(-1deg);
    }
    75% {
        transform: translateY(-15px) rotate(0.5deg);
    }
}

.pulse-glow {
    animation: pulse-glow 3s ease-in-out infinite alternate;
}

@keyframes pulse-glow {
    from {
        box-shadow: 0 0 20px rgba(139, 92, 246, 0.3);
    }
    to {
        box-shadow: 0 0 60px rgba(139, 92, 246, 0.6);
    }
}

/* Scroll-triggered animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-up.animate {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.fade-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Trust Signals & Security Badges */
.trust-bar {
    background: #f8fafc;
    padding: 20px 0;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
}

.trust-bar-top {
    position: relative;
    z-index: 40;
}

.trust-logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    padding: 1rem;
}

.trust-logo {
    height: 40px;
    width: auto;
    opacity: 0.6;
    transition: all 0.3s ease;
    filter: grayscale(100%);
}

.trust-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.1);
}

.trust-bar-bottom {
    background: linear-gradient(to right, #f8fafc, #f1f5f9);
    padding: 32px 0;
    border-top: 1px solid #e2e8f0;
}

.trust-bar-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.security-badges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 2rem auto;
}

.security-badge {
    background: white;
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.security-badge:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
    border-color: var(--purple-primary);
}

.security-badge img {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
}

.security-badge .badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(139, 92, 246, 0.1);
    color: var(--purple-primary);
    font-size: 2rem;
    transition: all 0.3s ease;
}

.security-badge:hover .badge-icon {
    transform: scale(1.1);
    background-color: rgba(139, 92, 246, 0.2);
}

.badge-soc2 {
    background-color: rgba(16, 185, 129, 0.1) !important;
    color: #10B981 !important;
}

.badge-gdpr {
    background-color: rgba(59, 130, 246, 0.1) !important;
    color: #3B82F6 !important;
}

.badge-hipaa {
    background-color: rgba(139, 92, 246, 0.1) !important;
    color: #8B5CF6 !important;
}

.badge-azure {
    background-color: rgba(249, 115, 22, 0.1) !important;
    color: #F97316 !important;
}

/* Navigation Enhancements */
.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    padding: 1rem;
    min-width: 280px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 50;
    margin-top: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    display: block;
    padding: 0.75rem 1rem;
    color: var(--charcoal);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-dropdown-item:hover {
    background: var(--purple-primary);
    color: white;
    transform: translateX(4px);
}

.nav-dropdown-item.coming-soon {
    opacity: 0.5;
    cursor: not-allowed;
}

.nav-dropdown-item.coming-soon:hover {
    background: transparent;
    color: var(--charcoal);
    transform: none;
}

/* Audience Router Styles */
.audience-router {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.audience-card {
    background: white;
    border-radius: 20px;
    padding: 2.5rem;
    border: 2px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.audience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, rgba(168, 85, 247, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.audience-card:hover {
    border-color: var(--purple-primary);
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.15);
}

.audience-card:hover::before {
    opacity: 1;
}

.audience-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--purple-primary) 0%, var(--purple-light) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.25);
    transition: all 0.3s ease;
}

/* Enhanced Form Styles */
.form-input {
    width: 100%;
    padding: var(--space-sm) var(--space-md);
    border: 2px solid #e2e8f0;
    border-radius: var(--radius-md);
    font-size: var(--font-body);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: white;
    font-family: 'Inter', sans-serif;
}

.form-input:focus {
    outline: none;
    border-color: var(--purple-primary);
    box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
    transform: translateY(-2px);
}

/* Pricing Table Enhancements */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    position: relative;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.pricing-card.featured {
    border-color: var(--purple-primary);
    transform: scale(1.05);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.15);
}

.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--purple-primary);
    color: white;
    padding: 4px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}

/* Module Showcase Styles */
.module-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.module-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    border: 2px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.module-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--purple-primary), var(--purple-light));
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.module-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--purple-primary);
}

.module-card:hover::before {
    transform: translateX(0);
}

.module-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-primary);
    font-size: 24px;
    margin-bottom: 1rem;
}

/* Differentiator Cards */
.differentiator-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.differentiator-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.differentiator-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.differentiator-card:hover::before {
    opacity: 1;
}

.differentiator-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple-primary);
    transition: all 0.3s ease;
}

.differentiator-card:hover .differentiator-icon {
    transform: scale(1.1) rotate(10deg);
}

/* Security Badge Icons */
.security-badge-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.security-badge:hover .security-badge-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.1) 0%, rgba(168, 85, 247, 0.1) 100%);
}

/* Interactive Demo Styles */
.demo-container {
    background: linear-gradient(145deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 16px;
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.demo-step {
    display: flex;
    align-items: center;
    padding: 1rem;
    background: white;
    border-radius: 8px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.demo-step:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(139, 92, 246, 0.15);
}

.demo-step-number {
    width: 32px;
    height: 32px;
    background: var(--purple-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-right: 1rem;
}

/* Chat Message Styles */
.chat-message {
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ROI Calculator Styles */
.roi-calculator {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    border: 2px solid #0ea5e9;
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.roi-result {
    background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
    border-radius: var(--radius-md);
    padding: var(--space-md);
    text-align: center;
}

.roi-metric {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Finance/Consulting Specific Styles */
.consulting-gradient {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
}

.finance-gradient {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
}

.finance-text {
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.framework-card {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.framework-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.15);
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    :root {
        --font-hero: 2.5rem;
        --font-h1: 2rem;
        --font-h2: 1.75rem;
        --space-2xl: 48px;
        --space-xl: 32px;
    }

    .trust-logos-container {
        gap: 1.5rem;
    }

    .trust-logo {
        height: 30px;
    }

    .pricing-grid,
    .module-grid {
        grid-template-columns: 1fr;
    }

    .audience-router {
        grid-template-columns: 1fr;
    }

    .security-badges-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        margin-top: 0.5rem;
        box-shadow: none;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, var(--purple-primary), var(--purple-light));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, var(--purple-deep), var(--purple-primary));
}

/* Loading Animation */
.loading-spinner {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top-color: white;
    animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Success Animation */
.success-checkmark {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: #10b981;
    stroke-miterlimit: 10;
    box-shadow: inset 0px 0px 0px #10b981;
    animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;
    margin: 0 auto;
}

.success-checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: #10b981;
    fill: none;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.8s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}

@keyframes scale {
    0%, 100% {
        transform: none;
    }
    50% {
        transform: scale3d(1.1, 1.1, 1);
    }
}

@keyframes fill {
    100% {
        box-shadow: inset 0px 0px 0px 30px #10b981;
    }
}

/* Workflow Step Animation */
.workflow-step {
    position: relative;
}

.workflow-step.active {
    animation: workflow-pulse 2s ease-in-out infinite;
}

@keyframes workflow-pulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }
    50% {
        opacity: 0.9;
        transform: scale(1.02);
    }
}

/* Metric Counter Animation */
.metric-card {
    transition: all 0.3s ease;
}

.metric-card:hover {
    transform: translateY(-5px);
}

.metric-number {
    display: inline-block;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    padding: 16px 24px;
    transform: translateX(400px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1000;
    max-width: 400px;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    display: flex;
    align-items: center;
    gap: 12px;
}

.notification-success {
    border-left: 4px solid #10b981;
}

.notification-error {
    border-left: 4px solid #ef4444;
}

.notification-icon {
    font-size: 20px;
}

.notification-message {
    flex: 1;
    font-size: 14px;
    font-weight: 500;
}

/* VDR Demo Styles */
.vdr-demo {
    background: linear-gradient(145deg, #ecfdf5 0%, #d1fae5 100%);
    border: 2px solid #10b981;
}

/* PE Calculator Styles */
.pe-calculator {
    background: linear-gradient(145deg, #f0fdf4 0%, #dcfce7 100%);
    border: 2px solid #22c55e;
}

.pe-input-slider {
    width: 100%;
    accent-color: #10b981;
}

.financial-metric {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #059669 0%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Consulting Workflow Styles */
.consulting-workflow {
    background: linear-gradient(145deg, #eff6ff 0%, #dbeafe 100%);
    border: 2px solid #3b82f6;
}

/* Compliance Indicator Animation */
.compliance-indicator {
    animation: compliance-pulse 3s ease-in-out infinite;
}

@keyframes compliance-pulse {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

/* Video Section Styles */
.video-container {
    position: relative;
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    background: #000;
}

/* Video Controls Enhancement */
video::-webkit-media-controls-panel {
    background-image: linear-gradient(transparent, rgba(0, 0, 0, 0.4));
}

video::-webkit-media-controls-play-button,
video::-webkit-media-controls-volume-slider {
    filter: invert(1);
}

/* Responsive Video */
@media (max-width: 768px) {
    .video-container {
        border-radius: 0.75rem;
    }
    
    .video-features {
        gap: 1rem;
    }
}