.elementor-8172 .elementor-element.elementor-element-3823053{--display:flex;}/* Start custom CSS */:root {
            --primary: #5b3ff9;
            --primary-hover: #4831d4;
            --primary-light: rgba(91, 63, 249, 0.08);
            --accent: #764ba2;
            --gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            --text-heading: #0f172a;
            --text-body: #334155;
            --text-muted: #64748b;
            --text-link: #5b3ff9;
            --bg-white: #ffffff;
            --bg-light: #f8fafc;
            --bg-accent: #fef3c7;
            --space-xs: 0.5rem;
            --space-sm: 1rem;
            --space-md: 1.5rem;
            --space-lg: 2rem;
            --space-xl: 3rem;
            --space-2xl: 4rem;
            --transition: 250ms cubic-bezier(.4,0,.2,1);
            --shadow-sm: 0 2px 4px rgba(0,0,0,0.06);
            --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
            --shadow-lg: 0 10px 24px rgba(0,0,0,0.1);
            --shadow-xl: 0 20px 40px rgba(0,0,0,0.12);
            --shadow-cta: 0 8px 20px rgba(91, 63, 249, 0.25);
            --cta-bg: var(--primary);
            --cta-bg-hover: var(--primary-hover);
            --cta-text: #fff;
            --cta-radius: 12px;
            --cta-pad-y: 14px;
            --cta-pad-x: 28px;
            --cta-shadow: 0 8px 20px rgba(91, 63, 249, 0.20);
            --cta-shadow-hover: 0 14px 30px rgba(91, 63, 249, 0.26);
            --cta-ring: 3px solid var(--primary);
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        
        .heygen-article {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            color: var(--text-body);
            line-height: 1.75;
            font-size: 18px;
            background: var(--bg-white);
        }
        
        .heygen-article > * {
            max-width: 740px;
            margin-left: auto;
            margin-right: auto;
            padding: 0 20px;
        }
        
/* ========================================
   HERO CONTENT WITH TITLE
   ======================================== */
.heygen-hero-content {
    padding: var(--space-xl) var(--space-lg) var(--space-lg);
    text-align: center;
    background: var(--bg-white);
}

.heygen-hero-content h1 {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--text-heading);
    margin-bottom: var(--space-sm);
    line-height: 1.15;
    letter-spacing: -0.03em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.heygen-publication-date {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .heygen-hero-content {
        padding: var(--space-lg) var(--space-md) var(--space-md);
    }
}

@media (max-width: 480px) {
    .heygen-hero-content {
        padding: var(--space-md) var(--space-sm) var(--space-sm);
    }
}
        
        .heygen-article h2 {
            font-size: 36px;
            font-weight: 800;
            color: var(--text-heading);
            margin: 64px 0 28px;
            line-height: 1.2;
            letter-spacing: -0.03em;
            position: relative;
            padding-bottom: 16px;
        }
        
        .heygen-article h2::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 60px;
            height: 4px;
            background: var(--gradient);
            border-radius: 2px;
        }
        
        .heygen-article h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-heading);
            margin: 48px 0 20px;
            line-height: 1.3;
            letter-spacing: -0.02em;
        }
        
        .heygen-article h4 {
            font-size: 22px;
            font-weight: 700;
            color: var(--text-heading);
            margin: 32px 0 16px;
            line-height: 1.4;
        }
        
        .heygen-article p {
            margin-bottom: 24px;
            color: var(--text-body);
            font-size: 18px;
            line-height: 1.8;
        }
        
        .heygen-article section > p:first-child {
            font-size: 21px;
            line-height: 1.85;
            color: var(--text-heading);
            font-weight: 400;
        }
        
        .heygen-article strong {
            color: var(--text-heading);
            font-weight: 600;
        }
        
        .heygen-article a {
            color: var(--text-link);
            text-decoration: underline;
            text-decoration-thickness: 2px;
            text-underline-offset: 3px;
            text-decoration-color: rgba(91, 63, 249, 0.3);
            font-weight: 500;
            transition: all var(--transition);
        }
        
        .heygen-article a:not(.heygen-cta):not(.heygen-cta-secondary):hover {
            text-decoration-color: var(--primary);
            background: var(--primary-light);
            padding: 2px 4px;
            margin: -2px -4px;
            border-radius: 4px;
        }
        
        .heygen-cta {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .55rem;
            position: relative;
            border-radius: var(--cta-radius);
            padding: var(--cta-pad-y) calc(var(--cta-pad-x) + 14px) var(--cta-pad-y) var(--cta-pad-x);
            border: 0;
            text-decoration: none !important;
            font-weight: 700;
            font-size: 18px;
            letter-spacing: .01em;
            line-height: 1;
            transition: background-color var(--transition), box-shadow var(--transition), transform var(--transition);
            min-width: 44px;
            min-height: 44px;
            cursor: pointer;
            background-color: var(--cta-bg);
            color: var(--cta-text) !important;
            box-shadow: var(--cta-shadow);
        }
        
        .heygen-cta:hover {
            background-color: var(--cta-bg-hover);
            box-shadow: var(--cta-shadow-hover);
            transform: translateY(-1px);
        }
        
        .heygen-cta::after {
            content: '→';
            position: absolute;
            right: 16px;
            top: 50%;
            transform: translateY(-50%) translateX(-2px);
            opacity: .75;
            transition: transform var(--transition), opacity var(--transition);
            pointer-events: none;
            font-weight: 700;
        }
        
        .heygen-cta:hover::after {
            transform: translateY(-50%) translateX(2px);
            opacity: 1;
        }
        
        .heygen-image {
            display: block;
            max-width: 100%;
            height: auto;
            margin: 40px auto;
            border-radius: 12px;
            box-shadow: var(--shadow-lg);
            transition: transform var(--transition);
        }
        
        .heygen-image:hover {
            transform: scale(1.02);
        }
        
        .heygen-list {
            background: linear-gradient(135deg, var(--bg-light) 0%, #f1f5f9 100%);
            border-radius: 12px;
            padding: 28px;
            margin: 36px auto;
            box-shadow: var(--shadow-sm);
        }
        
        .heygen-list li {
            margin-bottom: 18px;
            padding-left: 32px;
            position: relative;
            list-style: none;
            font-size: 17px;
            line-height: 1.7;
        }
        
        .heygen-list li::before {
            content: '→';
            position: absolute;
            left: 0;
            top: 0;
            color: var(--primary);
            font-weight: bold;
            font-size: 22px;
        }
        
        .heygen-highlight {
            background: linear-gradient(135deg, #fef3c7 0%, #fed7aa 100%);
            border-left: 5px solid #f59e0b;
            padding: 28px 32px;
            margin: 40px auto;
            border-radius: 0 12px 12px 0;
            box-shadow: 0 4px 16px rgba(245, 158, 11, 0.15);
            position: relative;
        }
        
        .heygen-highlight::before {
            content: '💡';
            position: absolute;
            left: -20px;
            top: 28px;
            background: #fff;
            width: 36px;
            height: 36px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            box-shadow: var(--shadow-md);
            font-size: 20px;
        }
        
        .heygen-highlight p {
            margin: 0;
            color: var(--text-heading);
            font-size: 17px;
            font-weight: 500;
        }
        
        .heygen-hero + .heygen-highlight {
            background: #f8fafc;
            border-left: 3px solid #cbd5e0;
            padding: 16px 20px;
            margin: 24px auto 40px;
            box-shadow: none;
            border-radius: 8px;
        }
        
        .heygen-hero + .heygen-highlight::before {
            display: none;
        }
        
        .heygen-hero + .heygen-highlight p {
            color: #64748b;
            font-size: 13px;
            font-weight: 400;
            line-height: 1.5;
        }
        
        .heygen-section {
            margin: 56px auto;
            padding: 36px;
            background: linear-gradient(135deg, var(--bg-light) 0%, #e9ecef 100%);
            border-radius: 16px;
            border-left: 5px solid var(--gradient);
            box-shadow: var(--shadow-md);
            position: relative;
            overflow: hidden;
        }
        
        .heygen-faq {
            margin: 56px auto;
        }
        
        .heygen-faq-item {
            background: #fff;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            padding: 28px;
            margin-bottom: 20px;
            transition: all var(--transition);
            position: relative;
            overflow: hidden;
        }
        
        .heygen-faq-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 100%;
            background: var(--gradient);
            transform: scaleY(0);
            transition: transform var(--transition);
            transform-origin: top;
        }
        
        .heygen-faq-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lg);
            transform: translateX(8px);
        }
        
        .heygen-faq-item:hover::before {
            transform: scaleY(1);
        }
        
        .heygen-faq-question {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-heading);
            margin-bottom: 16px;
            display: flex;
            align-items: flex-start;
            gap: 14px;
            line-height: 1.4;
        }
        
        .heygen-faq-question::before {
            content: 'Q';
            background: var(--gradient);
            color: #fff;
            min-width: 30px;
            height: 30px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
            margin-top: 2px;
        }
        
        .heygen-comparison {
            width: 100%;
            border-collapse: collapse;
            margin: 32px auto;
            background: #fff;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-md);
        }
        
        .heygen-comparison thead tr {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            color: white;
        }
        
        .heygen-comparison th {
            padding: 16px;
            text-align: left;
            font-weight: 600;
            font-size: 16px;
        }
        
        .heygen-comparison th:not(:first-child) {
            text-align: center;
        }
        
        .heygen-comparison td {
            padding: 14px 16px;
            border-bottom: 1px solid #e5e7eb;
            font-size: 15px;
        }
        
        .heygen-comparison td:not(:first-child) {
            text-align: center;
        }
        
        .heygen-comparison tbody tr:nth-child(even) {
            background: #f8fafc;
        }
        
        .heygen-comparison tbody tr:hover {
            background: #f1f5f9;
            transition: background var(--transition);
        }
        
        .heygen-comparison tbody tr:last-child td {
            border-bottom: none;
        }
        
        @media (max-width: 768px) {
            .heygen-article {
                font-size: 16px;
            }
            .heygen-article h1 {
                font-size: 32px;
            }
            .heygen-article h2 {
                font-size: 28px;
                margin: 48px 0 24px;
            }
            .heygen-article h3 {
                font-size: 22px;
            }
            .heygen-hero {
                margin: -20px -20px 32px;
                border-radius: 0 0 12px 12px;
            }
            .heygen-cta {
                display: block;
                width: calc(100% - 32px);
                margin: 16px 16px;
                text-align: center;
                min-height: 48px;
            }
            .heygen-section {
                margin: 40px 16px;
                padding: 28px 24px;
            }
            .heygen-highlight {
                margin: 32px 16px;
                padding: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .heygen-article h1 {
                font-size: 28px;
            }
            .heygen-article h2 {
                font-size: 24px;
            }
            .heygen-article h3 {
                font-size: 20px;
            }
            .heygen-article p {
                font-size: 15px;
            }
        }/* End custom CSS */