/* Digital Workers Categories Section - Illuminated Design */
.digital-workers-categories {
    padding: 6rem 0;
    background: 
        linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(131, 45, 203, 0.2);
}

/* Radial glow pattern - Multiple light sources */
.digital-workers-categories::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(131, 45, 203, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 70% 60%, rgba(153, 176, 255, 0.12) 0%, transparent 45%),
        radial-gradient(circle at 50% 90%, rgba(16, 185, 129, 0.08) 0%, transparent 35%);
    filter: blur(40px);
    pointer-events: none;
    opacity: 0.8;
}

/* Subtle dot pattern overlay */
.digital-workers-categories::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 2px 2px, rgba(131, 45, 203, 0.15) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.3;
}

.digital-workers-categories .section-header {
    text-align: center;
    margin-bottom: 4rem;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
}

.digital-workers-categories .section-title {
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #832DCB 0%, #99B0FF 50%, #99B0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.digital-workers-categories .section-subtitle {
    font-size: 1.375rem;
    color: #cbd5e1;
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.01em;
}

.digital-workers-categories .section-description {
    font-size: 1.0625rem;
    color: #94a3b8;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    letter-spacing: -0.01em;
}

.digital-workers-categories .section-intro {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.75;
    text-align: center;
    letter-spacing: -0.01em;
}

/* Differentials Grid 2x2 - Corporate Design */
.differentials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto 4rem;
}

.differential-card {
    background: linear-gradient(135deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.9) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(131, 45, 203, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Gradient border glow */
.differential-card::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.6), rgba(153, 176, 255, 0.4));
    border-radius: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
    filter: blur(12px);
}

/* Shine overlay */
.differential-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.differential-card:hover {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(131, 45, 203, 0.6);
    box-shadow:
        0 20px 48px rgba(131, 45, 203, 0.3),
        0 8px 16px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.2) 0%, rgba(153, 176, 255, 0.15) 100%);
}

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

.differential-card:hover::after {
    left: 150%;
}

.differential-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 
        0 8px 24px rgba(131, 45, 203, 0.4),
        0 0 0 4px rgba(131, 45, 203, 0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.differential-card:hover .differential-icon {
    transform: scale(1.1) rotateZ(5deg);
    box-shadow: 
        0 12px 32px rgba(131, 45, 203, 0.5),
        0 0 0 6px rgba(131, 45, 203, 0.2);
}

.differential-icon svg {
    color: white;
}

.differential-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.differential-card p {
    color: #94a3b8;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Areas Preview Mini-Cards - Corporate Style */
.areas-preview {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    max-width: 1200px;
    margin: 0 auto 3.5rem;
}

.area-mini-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.area-mini-card:hover {
    transform: translateY(-3px);
    border-color: rgba(131, 45, 203, 0.25);
    background: rgba(255, 255, 255, 0.05);
    box-shadow: 0 4px 12px rgba(131, 45, 203, 0.12), 0 2px 4px rgba(0, 0, 0, 0.08);
}

.area-icon {
    font-size: 2.25rem;
    margin-bottom: 1rem;
    filter: grayscale(0.2) brightness(1.1);
}

.area-mini-card h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.area-mini-card p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Section CTA - Corporate Style */
.section-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-explore,
.btn-view-all,
.btn-success-stories {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    color: white;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(131, 45, 203, 0.2), 0 1px 2px rgba(131, 45, 203, 0.1);
    letter-spacing: -0.01em;
}

.btn-explore:hover,
.btn-view-all:hover,
.btn-success-stories:hover {
    background: linear-gradient(135deg, #832DCB, #6B2AB8);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(131, 45, 203, 0.35), 0 2px 4px rgba(131, 45, 203, 0.2);
}

/* Categories Grid */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.category-card {
    background: rgba(30, 41, 59, 0.5);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(131, 45, 203, 0.2);
    border-radius: 16px;
    padding: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 1;
}

.category-card:hover {
    transform: translateY(-5px);
    border-color: rgba(131, 45, 203, 0.5);
    box-shadow: 0 20px 40px rgba(131, 45, 203, 0.2);
}

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

.category-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.category-icon svg {
    color: white;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.category-preview {
    margin-bottom: 25px;
}

.category-preview ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.category-preview li {
    color: #94a3b8;
    font-size: 0.95rem;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.category-preview li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #832DCB;
    font-weight: bold;
}

.category-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #832DCB;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 10px 20px;
    background: rgba(131, 45, 203, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(131, 45, 203, 0.3);
    cursor: pointer;
    position: relative;
    z-index: 10;
}

.category-link:hover {
    background: rgba(131, 45, 203, 0.2);
    transform: translateX(5px);
}

/* Individual Pages Styles */
.dw-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
    position: relative;
    overflow: hidden;
}

.dw-hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, rgba(10, 14, 39, 0.5));
}

.dw-hero.sales {
    background: linear-gradient(135deg, #1e3a8a 0%, #3730a3 100%);
}

.dw-hero.finance {
    background: linear-gradient(135deg, #14532d 0%, #166534 100%);
}

.dw-hero.marketing {
    background: linear-gradient(135deg, #7c2d12 0%, #991b1b 100%);
}

.dw-hero.service {
    background: linear-gradient(135deg, #6d28d9 0%, #4c1d95 100%);
}

.dw-title {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    text-align: center;
}

.dw-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

/* Workers Detail Section */
.dw-details {
    padding: 60px 0;
    background: #0a0e27;
}

.workers-list {
    max-width: 1000px;
    margin: 0 auto;
}

.worker-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(131, 45, 203, 0.2);
    border-radius: 16px;
    padding: 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.worker-item:hover {
    border-color: rgba(131, 45, 203, 0.4);
    box-shadow: 0 10px 30px rgba(131, 45, 203, 0.1);
}

.worker-item.featured {
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.1), rgba(153, 176, 255, 0.1));
    border-color: rgba(131, 45, 203, 0.4);
}

.worker-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 15px;
}

.worker-header h2 {
    color: #f1f5f9;
    font-size: 1.8rem;
    margin: 0;
}

.worker-badge {
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.worker-content {
    display: grid;
    gap: 20px;
}

.worker-objective,
.worker-solutions,
.worker-effectiveness {
    padding: 20px;
    background: rgba(15, 23, 42, 0.4);
    border-radius: 12px;
}

.worker-content h3 {
    color: #832DCB;
    font-size: 1.2rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.worker-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.worker-solutions ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.worker-solutions li {
    color: #cbd5e1;
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
}

.worker-solutions li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Benefits Section */
.benefits-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.benefits-section h2 {
    color: #f1f5f9;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.benefit-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(131, 45, 203, 0.2);
    border-radius: 12px;
    padding: 25px;
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: rgba(131, 45, 203, 0.4);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.benefit-card h3 {
    color: #f1f5f9;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.benefit-card p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
}

/* Metrics Section */
.metrics-section {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.metrics-section h2 {
    color: #f1f5f9;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.metric-card {
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.1), rgba(153, 176, 255, 0.1));
    border: 1px solid rgba(131, 45, 203, 0.3);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
}

.metric-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.metric-label {
    color: #cbd5e1;
    font-size: 0.95rem;
}

/* Service Features */
.service-features {
    margin-top: 60px;
}

.service-features h2 {
    color: #f1f5f9;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.feature-item {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(131, 45, 203, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    border-color: rgba(131, 45, 203, 0.4);
}

.feature-icon {
    font-size: 2rem;
    margin-bottom: 15px;
}

.feature-item h3 {
    color: #f1f5f9;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.feature-item p {
    color: #94a3b8;
    font-size: 0.95rem;
    margin: 0;
}

/* Success Metrics */
.success-metrics {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.success-metrics h2 {
    color: #f1f5f9;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.impact-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.impact-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(131, 45, 203, 0.2);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    gap: 20px;
    align-items: center;
    transition: all 0.3s ease;
}

.impact-card:hover {
    transform: translateY(-3px);
    border-color: rgba(131, 45, 203, 0.4);
}

.impact-icon {
    font-size: 2.5rem;
}

.impact-content h4 {
    color: #94a3b8;
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.impact-value {
    font-size: 2rem;
    font-weight: 700;
    color: #832DCB;
    margin-bottom: 5px;
}

.impact-content p {
    color: #94a3b8;
    font-size: 0.85rem;
    margin: 0;
}

/* Use Cases */
.use-cases {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid rgba(99, 102, 241, 0.2);
}

.use-cases h2 {
    color: #f1f5f9;
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
}

.cases-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.case-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(131, 45, 203, 0.2);
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
}

.case-card:hover {
    transform: translateY(-3px);
    border-color: rgba(131, 45, 203, 0.4);
}

.case-card h3 {
    color: #832DCB;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.case-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-card li {
    color: #cbd5e1;
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
    font-size: 0.95rem;
}

.case-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #832DCB;
}

/* CTA Section for DW Pages */
.dw-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.1), rgba(153, 176, 255, 0.1));
    text-align: center;
}

.dw-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 20px;
}

.dw-cta p {
    font-size: 1.2rem;
    color: #94a3b8;
    margin-bottom: 40px;
}

.dw-cta .cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.dw-cta .btn-primary,
.dw-cta .btn-secondary {
    padding: 15px 40px;
    font-size: 1.1rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.dw-cta .btn-primary {
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    color: white;
    border: none;
}

.dw-cta .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(131, 45, 203, 0.4);
}

.dw-cta .btn-secondary {
    background: transparent;
    color: #832DCB;
    border: 2px solid #832DCB;
}

.dw-cta .btn-secondary:hover {
    background: rgba(131, 45, 203, 0.1);
    transform: translateY(-2px);
}

/* Featured Solutions Section - Gradient Wave */
.featured-solutions {
    padding: 6rem 0;
    background: linear-gradient(180deg, #1a1f35 0%, #0f172a 100%);
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Gradient wave top */
.featured-solutions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(131, 45, 203, 0.08) 0%, transparent 100%);
    pointer-events: none;
}

/* Bottom accent */
.featured-solutions::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: 0;
    width: 50%;
    height: 400px;
    background: radial-gradient(ellipse at bottom right, rgba(16, 185, 129, 0.06) 0%, transparent 60%);
    filter: blur(60px);
    pointer-events: none;
}

.featured-solutions .section-header {
    text-align: center;
    margin-bottom: 3.5rem;
    position: relative;
    z-index: 2;
}

.featured-solutions .section-title {
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #832DCB 0%, #99B0FF 50%, #99B0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.featured-solutions .section-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    letter-spacing: -0.01em;
}

.solutions-carousel {
    display: flex;
    gap: 1.5rem;
    overflow-x: auto;
    padding: 1.5rem 0;
    margin-bottom: 3rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    position: relative;
    z-index: 2;
}

.solutions-carousel::-webkit-scrollbar {
    height: 6px;
}

.solutions-carousel::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.solutions-carousel::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    border-radius: 8px;
}

.solution-card {
    min-width: 280px;
    background: linear-gradient(145deg, rgba(30, 41, 59, 0.6) 0%, rgba(15, 23, 42, 0.8) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    scroll-snap-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

/* Shimmer effect */
.solution-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.solution-card:hover {
    transform: translateY(-6px) scale(1.02);
    border-color: rgba(131, 45, 203, 0.4);
    box-shadow: 0 12px 32px rgba(131, 45, 203, 0.25), 0 6px 12px rgba(0, 0, 0, 0.2);
    background: linear-gradient(145deg, rgba(131, 45, 203, 0.15) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.solution-card:hover::after {
    transform: translateX(100%);
}

.solution-icon {
    font-size: 3rem;
    margin-bottom: 1.25rem;
    filter: grayscale(0.1) brightness(1.1);
}

.solution-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.solution-metric {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(131, 45, 203, 0.12);
    border: 1px solid rgba(131, 45, 203, 0.25);
    border-radius: 8px;
    color: #93c5fd;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

/* Benefits Key Section - Grid Pattern */
.benefits-key {
    padding: 6rem 0;
    background: #0a0f1e;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* Subtle grid overlay */
.benefits-key::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(131, 45, 203, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(131, 45, 203, 0.03) 1px, transparent 1px);
    background-size: 100px 100px;
    opacity: 0.4;
    pointer-events: none;
}

/* Spotlight gradient */
.benefits-key::after {
    content: '';
    position: absolute;
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 500px;
    background: radial-gradient(ellipse at center, rgba(131, 45, 203, 0.12) 0%, transparent 70%);
    filter: blur(100px);
    pointer-events: none;
    animation: spotlightPulse 8s ease-in-out infinite;
}

@keyframes spotlightPulse {
    0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
    50% { opacity: 1; transform: translateX(-50%) scale(1.1); }
}

.benefits-key .section-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.benefits-key .section-title {
    font-size: 2.75rem;
    font-weight: 700;
    background: linear-gradient(135deg, #832DCB 0%, #99B0FF 50%, #99B0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1.25rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.benefits-key .section-intro {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 900px;
    margin: 0 auto 4rem;
    line-height: 1.75;
    text-align: center;
    letter-spacing: -0.01em;
}

/* Benefits Categories - Modern Grid */
.benefits-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1280px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 2;
}

.benefit-category {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8) 0%, rgba(30, 41, 59, 0.6) 100%);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    position: relative;
}

/* Glow effect */
.benefit-category::before {
    content: '';
    position: absolute;
    inset: -1px;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.5), rgba(153, 176, 255, 0.5));
    border-radius: 16px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.benefit-category:hover {
    transform: translateY(-6px);
    border-color: rgba(131, 45, 203, 0.4);
    box-shadow: 0 12px 32px rgba(131, 45, 203, 0.2), 0 6px 12px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.1) 0%, rgba(30, 41, 59, 0.8) 100%);
}

.benefit-category:hover::before {
    opacity: 0.5;
}

.benefit-category .category-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #832DCB;
    margin-bottom: 1.75rem;
    text-align: center;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(131, 45, 203, 0.2);
    letter-spacing: -0.01em;
}

.category-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item-new {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.benefit-icon-new {
    font-size: 2rem;
    flex-shrink: 0;
    filter: grayscale(0.1) brightness(1.1);
}

.benefit-content-new h4 {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
    letter-spacing: -0.01em;
}

.benefit-content-new p {
    font-size: 0.9375rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Results Section - Corporate Design */
.results-section {
    max-width: 1280px;
    margin: 4rem auto 0;
    padding-top: 4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    position: relative;
    z-index: 2;
}

.results-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #f8fafc;
    text-align: center;
    margin-bottom: 3rem;
    letter-spacing: -0.02em;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-card {
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.12) 0%, rgba(153, 176, 255, 0.08) 100%);
    border: 2px solid rgba(131, 45, 203, 0.25);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 24px rgba(131, 45, 203, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

/* Animated gradient background */
.result-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent, rgba(131, 45, 203, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.result-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 48px rgba(131, 45, 203, 0.3), 0 8px 16px rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.18) 0%, rgba(153, 176, 255, 0.12) 100%);
    border-color: rgba(131, 45, 203, 0.5);
}

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

.result-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1;
    letter-spacing: -0.02em;
}

.result-card p {
    font-size: 1.0625rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
    letter-spacing: -0.01em;
}

/* Benefits Key Section */
.benefits-key {
    padding: 80px 0;
    background: #0a0e27;
    position: relative;
    overflow: hidden;
}

.benefits-key::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 200%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(131, 45, 203, 0.05) 0%, transparent 70%);
    animation: pulse-bg 10s infinite;
}

@keyframes pulse-bg {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(50%); }
}

.benefits-key .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.benefits-key .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #832DCB 50%, #99B0FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.benefits-key .section-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    font-weight: 400;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-grid-main {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    margin-bottom: 60px;
}

.benefit-item {
    background: rgba(30, 41, 59, 0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(131, 45, 203, 0.1);
    border-radius: 12px;
    padding: 25px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.benefit-item::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, transparent, rgba(131, 45, 203, 0.3), transparent);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.benefit-item:hover {
    transform: translateY(-5px);
    border-color: rgba(131, 45, 203, 0.3);
    box-shadow: 0 10px 30px rgba(131, 45, 203, 0.15);
}

.benefit-item:hover::before {
    opacity: 1;
}

.benefit-item[data-benefit="productivity"] .benefit-icon { background: linear-gradient(135deg, #fbbf24, #f59e0b); }
.benefit-item[data-benefit="attention"] .benefit-icon { background: linear-gradient(135deg, #99B0FF, #832DCB); }
.benefit-item[data-benefit="integration"] .benefit-icon { background: linear-gradient(135deg, #99B0FF, #832DCB); }
.benefit-item[data-benefit="metrics"] .benefit-icon { background: linear-gradient(135deg, #34d399, #10b981); }
.benefit-item[data-benefit="security"] .benefit-icon { background: linear-gradient(135deg, #f87171, #ef4444); }
.benefit-item[data-benefit="automation"] .benefit-icon { background: linear-gradient(135deg, #99B0FF, #832DCB); }
.benefit-item[data-benefit="decisions"] .benefit-icon { background: linear-gradient(135deg, #fde047, #facc15); }
.benefit-item[data-benefit="scalability"] .benefit-icon { background: linear-gradient(135deg, #c084fc, #a855f7); }

.benefit-icon {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-icon svg {
    color: white;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-content p {
    font-size: 0.95rem;
    color: #94a3b8;
    margin: 0;
    line-height: 1.4;
}

/* Benefits Stats */
.benefits-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.05), rgba(153, 176, 255, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(131, 45, 203, 0.2);
}

.stat-card {
    text-align: center;
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: #cbd5e1;
    font-weight: 500;
}

/* Responsive for Benefits */
@media (max-width: 768px) {
    .benefits-key .section-title {
        font-size: 2rem;
    }

    .benefits-grid-main {
        grid-template-columns: 1fr;
    }

    .benefits-stats {
        grid-template-columns: repeat(2, 1fr);
        padding: 20px;
    }

    .stat-value {
        font-size: 2rem;
    }
}

/* How It Works Simple Section */
.how-it-works-simple {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    position: relative;
}

.how-it-works-simple .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.how-it-works-simple .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #832DCB 0%, #99B0FF 50%, #ec4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.how-it-works-simple .section-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    font-weight: 400;
}

/* Process Timeline - Horizontal Layout */
.process-timeline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto 60px;
    position: relative;
    padding: 40px 0;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.6s ease forwards;
}

.process-step[data-step="1"] { animation-delay: 0.1s; }
.process-step[data-step="2"] { animation-delay: 0.3s; }
.process-step[data-step="3"] { animation-delay: 0.5s; }
.process-step[data-step="4"] { animation-delay: 0.7s; }

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-number-circle {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(131, 45, 203, 0.4);
    position: relative;
    z-index: 2;
    transition: all 0.3s ease;
}

.process-step:hover .step-number-circle {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(131, 45, 203, 0.6);
}

/* Connector Line */
.step-connector {
    position: absolute;
    top: 35px;
    left: 50%;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #832DCB 0%, #99B0FF 100%);
    z-index: 1;
    transform-origin: left;
    animation: drawLine 0.8s ease forwards;
    animation-delay: 0.2s;
    transform: scaleX(0);
}

@keyframes drawLine {
    to {
        transform: scaleX(1);
    }
}

.process-step:last-child .step-connector {
    display: none;
}

/* Step Content */
.step-content {
    text-align: center;
    padding: 0 15px;
}

.step-icon-box {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.15), rgba(153, 176, 255, 0.15));
    border: 2px solid rgba(131, 45, 203, 0.3);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon-box {
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.3), rgba(153, 176, 255, 0.3));
    border-color: rgba(131, 45, 203, 0.5);
    transform: translateY(-5px);
}

.step-icon-box svg {
    color: #832DCB;
    transition: all 0.3s ease;
}

.process-step:hover .step-icon-box svg {
    color: #99B0FF;
    transform: scale(1.1);
}

.step-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 12px;
    transition: color 0.3s ease;
}

.process-step:hover .step-title {
    color: #a5b4fc;
}

.step-description {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Process CTA */
.process-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.1), rgba(153, 176, 255, 0.1));
    border: 1px solid rgba(131, 45, 203, 0.2);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.process-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 15px;
}

.process-cta p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 30px;
}

.btn-implement {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-implement:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(131, 45, 203, 0.4);
}

/* Responsive Design - Mobile Vertical Timeline */
@media (max-width: 768px) {
    .how-it-works-simple .section-title {
        font-size: 2rem;
    }

    .process-timeline {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        padding: 20px 0;
    }

    .process-step {
        width: 100%;
        max-width: 400px;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 20px;
    }

    .step-number-circle {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .step-connector {
        top: 70px;
        left: 30px;
        width: 3px;
        height: 100%;
        background: linear-gradient(180deg, #832DCB 0%, #99B0FF 100%);
        transform-origin: top;
        animation: drawLineVertical 0.8s ease forwards;
    }

    @keyframes drawLineVertical {
        to {
            transform: scaleY(1);
        }
    }

    .process-step:last-child .step-connector {
        display: none;
    }

    .step-content {
        text-align: left;
        padding: 0;
        flex: 1;
    }

    .step-icon-box {
        margin: 0 0 15px 0;
        width: 50px;
        height: 50px;
    }

    .step-icon-box svg {
        width: 24px;
        height: 24px;
    }

    .step-title {
        font-size: 1.3rem;
    }

    .step-description {
        font-size: 0.95rem;
    }

    .process-cta {
        padding: 30px 20px;
    }

    .process-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .process-step {
        gap: 15px;
    }

    .step-number-circle {
        width: 50px;
        height: 50px;
        font-size: 1.1rem;
    }

    .step-connector {
        left: 25px;
    }

    .step-icon-box {
        width: 45px;
        height: 45px;
    }

    .step-title {
        font-size: 1.2rem;
    }

    .step-description {
        font-size: 0.9rem;
    }

    .process-cta h3 {
        font-size: 1.3rem;
    }

    .process-cta p {
        font-size: 1rem;
    }

    .btn-implement {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Why Choose Us Section - Evolution Table */
.why-choose-us {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

/* Radial accent glow */
.why-choose-us::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 1000px;
    height: 600px;
    background: radial-gradient(ellipse at center, rgba(131, 45, 203, 0.15) 0%, transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.why-choose-us .section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
    z-index: 2;
}

.why-choose-us .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #832DCB 0%, #99B0FF 50%, #10b981 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.why-choose-us .section-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    font-weight: 400;
    letter-spacing: -0.01em;
}

/* Evolution Table */
.evolution-table-wrapper {
    max-width: 1400px;
    margin: 0 auto 50px;
    overflow-x: auto;
    border-radius: 20px;
    position: relative;
    z-index: 2;
}

.evolution-table {
    width: 100%;
    min-width: 900px;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(30, 41, 59, 0.8) 100%);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(131, 45, 203, 0.3);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), 0 0 0 1px rgba(131, 45, 203, 0.1);
}

/* Table Header */
.evolution-header {
    display: grid;
    grid-template-columns: 200px 1.5fr 1.2fr 120px 1.3fr;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.25), rgba(99, 102, 241, 0.2));
    border-bottom: 2px solid rgba(131, 45, 203, 0.4);
    padding: 0;
}

.header-cell {
    padding: 20px 15px;
    font-weight: 700;
    font-size: 1rem;
    color: #f8fafc;
    text-align: left;
    border-right: 1px solid rgba(131, 45, 203, 0.2);
    letter-spacing: -0.01em;
}

.header-cell:last-child {
    border-right: none;
}

.type-header {
    background: rgba(131, 45, 203, 0.15);
}

/* Evolution Rows */
.evolution-row {
    display: grid;
    grid-template-columns: 200px 1.5fr 1.2fr 120px 1.3fr;
    border-bottom: 1px solid rgba(131, 45, 203, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideIn 0.5s ease forwards;
}

.evolution-row[data-level="1"] { animation-delay: 0.1s; }
.evolution-row[data-level="2"] { animation-delay: 0.2s; }
.evolution-row[data-level="3"] { animation-delay: 0.3s; }
.evolution-row[data-level="4"] { animation-delay: 0.4s; }
.evolution-row[data-level="5"] { animation-delay: 0.5s; }

@keyframes slideIn {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.evolution-row:hover {
    background: rgba(131, 45, 203, 0.08);
    box-shadow: 0 4px 12px rgba(131, 45, 203, 0.1);
}

.evolution-row.featured {
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.2), rgba(99, 102, 241, 0.15));
    border: 2px solid rgba(131, 45, 203, 0.5);
    border-left: 5px solid #832DCB;
    position: relative;
}

.evolution-row.featured::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.3), rgba(99, 102, 241, 0.2));
    border-radius: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
    filter: blur(10px);
}

.evolution-row.featured:hover {
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.25), rgba(99, 102, 241, 0.2));
    box-shadow: 0 12px 40px rgba(131, 45, 203, 0.3);
    border-color: rgba(131, 45, 203, 0.7);
}

.evolution-row.featured:hover::before {
    opacity: 1;
}

/* Cells */
.cell {
    padding: 20px 15px;
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    border-right: 1px solid rgba(131, 45, 203, 0.15);
    display: flex;
    align-items: center;
    letter-spacing: -0.01em;
}

.cell:last-child {
    border-right: none;
}

.type-cell {
    background: rgba(131, 45, 203, 0.08);
    font-weight: 600;
    position: relative;
}

.type-name {
    color: #f1f5f9;
    font-size: 1.05rem;
}

.rocket-icon {
    font-size: 1.3rem;
    margin-left: 8px;
    animation: pulse 2s infinite;
    filter: drop-shadow(0 0 8px rgba(131, 45, 203, 0.6));
}

.rocket-icon svg {
    color: #832DCB;
}

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

/* Badges */
.capability-badge,
.flexibility-badge {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
    letter-spacing: -0.01em;
    transition: all 0.2s ease;
}

.capability-badge.basic,
.flexibility-badge.none {
    background: rgba(239, 68, 68, 0.15);
    color: #fca5a5;
    border: 1px solid rgba(239, 68, 68, 0.4);
}

.capability-badge.low,
.flexibility-badge.low {
    background: rgba(245, 158, 11, 0.15);
    color: #fcd34d;
    border: 1px solid rgba(245, 158, 11, 0.4);
}

.capability-badge.medium,
.flexibility-badge.medium {
    background: rgba(99, 102, 241, 0.15);
    color: #a5b4fc;
    border: 1px solid rgba(99, 102, 241, 0.4);
}

.capability-badge.high,
.flexibility-badge.high {
    background: rgba(131, 45, 203, 0.15);
    color: #c4b5fd;
    border: 1px solid rgba(131, 45, 203, 0.4);
}

.capability-badge.very-high,
.flexibility-badge.very-high {
    background: rgba(131, 45, 203, 0.2);
    color: #e9d5ff;
    border: 1px solid rgba(131, 45, 203, 0.5);
    box-shadow: 0 0 0 2px rgba(131, 45, 203, 0.1);
}

.example-cell {
    font-style: italic;
    color: #94a3b8;
}

/* CTA */
.evolution-cta {
    text-align: center;
    margin-top: 50px;
}

.btn-lets-talk {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #832DCB, #99B0FF);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-lets-talk:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(131, 45, 203, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .evolution-header,
    .evolution-row {
        grid-template-columns: 180px 1.3fr 1fr 100px 1.2fr;
    }

    .header-cell,
    .cell {
        padding: 15px 10px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .why-choose-us .section-title {
        font-size: 2rem;
    }

    .evolution-table-wrapper {
        margin: 0 -20px 40px;
        border-radius: 0;
    }

    .evolution-table {
        min-width: 800px;
    }

    .evolution-header,
    .evolution-row {
        grid-template-columns: 150px 1fr 0.8fr 90px 1fr;
    }

    .header-cell,
    .cell {
        padding: 12px 8px;
        font-size: 0.85rem;
    }

    .type-name {
        font-size: 0.95rem;
    }

    .capability-badge,
    .flexibility-badge {
        padding: 4px 8px;
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .evolution-table {
        min-width: 700px;
    }

    .header-cell,
    .cell {
        padding: 10px 6px;
        font-size: 0.8rem;
    }
}

/* Comparison Section */
.comparison {
    padding: 80px 0;
    background: #0a0e27;
    position: relative;
}

.comparison .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.comparison .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, #10b981 0%, #832DCB 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.comparison .section-subtitle {
    font-size: 1.3rem;
    color: #94a3b8;
    font-weight: 400;
}

.comparison-table-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    overflow-x: auto;
    border-radius: 16px;
    background: rgba(30, 41, 59, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(131, 45, 203, 0.2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.comparison-table {
    width: 100%;
    min-width: 800px;
}

/* Table Header */
.table-header {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    background: linear-gradient(135deg, rgba(131, 45, 203, 0.2), rgba(153, 176, 255, 0.2));
    border-bottom: 2px solid rgba(131, 45, 203, 0.3);
}

.header-cell {
    padding: 20px 15px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.category-header {
    background: rgba(15, 23, 42, 0.8);
    color: #f1f5f9;
    border-right: 1px solid rgba(131, 45, 203, 0.3);
}

.option-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: #f1f5f9;
}

.option-icon {
    font-size: 1.5rem;
}

.option-header.human {
    background: rgba(239, 68, 68, 0.1);
}

.option-header.chatbot {
    background: rgba(245, 158, 11, 0.1);
}

.option-header.axgents {
    background: rgba(16, 185, 129, 0.1);
    border-left: 3px solid #10b981;
}

/* Table Rows */
.table-row {
    display: grid;
    grid-template-columns: 200px 1fr 1fr 1fr;
    border-bottom: 1px solid rgba(131, 45, 203, 0.1);
}

.table-row:last-child {
    border-bottom: none;
}

.row-category {
    padding: 20px 15px;
    background: rgba(15, 23, 42, 0.6);
    border-right: 1px solid rgba(131, 45, 203, 0.3);
    display: flex;
    align-items: center;
}

.category-title {
    font-weight: 600;
    color: #f1f5f9;
    font-size: 1rem;
}

.cell {
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.cell.human {
    background: rgba(239, 68, 68, 0.05);
}

.cell.chatbot {
    background: rgba(245, 158, 11, 0.05);
}

.cell.axgents {
    background: rgba(16, 185, 129, 0.05);
    border-left: 3px solid #10b981;
}

.cell-content {
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.cell-content.negative {
    color: #f87171;
}

.cell-content.neutral {
    color: #fbbf24;
}

.cell-content.positive {
    color: #34d399;
    font-weight: 600;
}

/* Comparison CTA */
.comparison-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(131, 45, 203, 0.1));
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.comparison-cta h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 15px;
}

.comparison-cta p {
    font-size: 1.1rem;
    color: #94a3b8;
    margin-bottom: 30px;
}

.btn-save-costs {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    font-size: 1.1rem;
    font-weight: 600;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-save-costs:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(16, 185, 129, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .comparison .section-title {
        font-size: 2rem;
    }

    .comparison-table-container {
        margin: 0 -20px 40px;
        border-radius: 0;
    }

    .table-header,
    .table-row {
        grid-template-columns: 120px 1fr 1fr 1fr;
    }

    .header-cell,
    .cell,
    .row-category {
        padding: 15px 8px;
        font-size: 0.9rem;
    }

    .option-header {
        gap: 4px;
    }

    .option-icon {
        font-size: 1.2rem;
    }

    .comparison-cta {
        margin: 0 auto;
        padding: 30px 20px;
    }

    .comparison-cta h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .table-header,
    .table-row {
        grid-template-columns: 100px 1fr 1fr 1fr;
    }

    .header-cell,
    .cell,
    .row-category {
        padding: 12px 6px;
        font-size: 0.8rem;
    }

    .cell-content {
        font-size: 0.85rem;
    }
}

/* Animations */
@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .digital-workers-categories .section-intro {
        font-size: 1rem;
        line-height: 1.6;
    }

    .differentials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .differential-card {
        padding: 25px;
    }

    .differential-card h3 {
        font-size: 1.1rem;
    }

    .differential-card p {
        font-size: 0.95rem;
    }

    .areas-preview {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .featured-solutions .section-title {
        font-size: 2rem;
    }

    .solutions-carousel {
        padding: 20px 10px;
    }

    .solution-card {
        min-width: 220px;
    }

    .benefits-categories {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .benefit-category {
        padding: 25px;
    }

    .benefit-category .category-title {
        font-size: 1.2rem;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .result-number {
        font-size: 3rem;
    }

    .result-card {
        padding: 30px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
    }

    .dw-title {
        font-size: 2rem;
    }

    .dw-subtitle {
        font-size: 1.1rem;
    }

    .worker-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .metrics-grid,
    .benefits-grid,
    .features-grid,
    .impact-cards,
    .cases-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .differential-card h3 {
        font-size: 1rem;
    }

    .area-mini-card h4 {
        font-size: 1rem;
    }

    .area-mini-card p {
        font-size: 0.85rem;
    }

    .result-number {
        font-size: 2.5rem;
    }

    .benefit-category .category-title {
        font-size: 1.1rem;
    }

    .benefit-content-new h4 {
        font-size: 1rem;
    }

    .benefit-content-new p {
        font-size: 0.9rem;
    }
}