/* Common Styles for Atman Cloud Translation Website */

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

/* Atman Brand Design System */
:root {
    /* Primary Brand Colors - Based on Atman Logo */
    --primary-blue: #1890FF;      /* Main brand blue */
    --secondary-blue: #40A9FF;    /* Lighter blue for hover states */
    --accent-blue: #0E7FE0;       /* Deeper accent blue */
    --light-blue: #E6F7FF;        /* Light blue background */
    --ultra-light-blue: #F5FAFF;  /* Very light blue for subtle backgrounds */

    /* Supporting Colors */
    --sidebar-dark: #001529;      /* Product sidebar color */
    --success-green: #52C41A;     /* Success color */
    --warning-orange: #FA8C16;    /* Warning color */
    --danger-red: #FF4D4F;        /* Danger color */

    /* Neutral Colors */
    --card-white: #FFFFFF;        /* Card background */
    --text-primary: #262626;      /* Main text color */
    --text-secondary: #595959;    /* Secondary text */
    --text-muted: #8C8C8C;        /* Muted text color */
    --text-light: #BFBFBF;         /* Light text color */
    --border-color: #D9D9D9;      /* Border color */
    --border-light: #F0F0F0;      /* Light border */
    --background-light: #FAFAFA;  /* Light background */
    --background-gray: #F8F9FA;   /* Gray background */

    /* Gradient Colors */
    --gradient-primary: linear-gradient(135deg, var(--primary-blue) 0%, var(--secondary-blue) 100%);
    --gradient-subtle: linear-gradient(135deg, var(--ultra-light-blue) 0%, var(--light-blue) 100%);

    /* Shadow Colors */
    --shadow-light: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-medium: 0 4px 16px rgba(0, 0, 0, 0.08);
    --shadow-heavy: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-blue: 0 4px 16px rgba(24, 144, 255, 0.15);
}

/* Navigation */
.nav-product {
    background: var(--card-white);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

/* Hero Section - Product Style */
.hero-product {
    background: linear-gradient(120deg,
        #f8fbff 0%,
        #f0f9ff 30%,
        #e6f7ff 60%,
        var(--card-white) 100%
    );
    position: relative;
    overflow: hidden;
}

.hero-product::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 70%;
    height: 140%;
    background: radial-gradient(ellipse at center,
        rgba(24, 144, 255, 0.08) 0%,
        rgba(64, 169, 255, 0.05) 40%,
        transparent 70%
    );
    opacity: 1;
    transform: rotate(-15deg);
}

.hero-product::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -15%;
    width: 60%;
    height: 120%;
    background: radial-gradient(ellipse at center,
        rgba(14, 126, 224, 0.06) 0%,
        rgba(24, 144, 255, 0.03) 50%,
        transparent 70%
    );
    opacity: 1;
    transform: rotate(25deg);
}

/* Hero Section - Contact Style */
.hero-contact {
    background: linear-gradient(135deg, var(--background-light) 10%, var(--background-light) 50%);
    position: relative;
    overflow: hidden;
}

.hero-contact::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at top right, var(--light-blue) 0%, transparent 70%);
    opacity: 0.5;
}

/* Product Style Buttons */
.btn-product-primary {
    background: var(--primary-blue);
    color: var(--card-white);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(24, 144, 255, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-product-primary:hover {
    background: var(--secondary-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(24, 144, 255, 0.3);
}

.btn-product-secondary {
    background: var(--card-white);
    color: var(--primary-blue);
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid var(--primary-blue);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.btn-product-secondary:hover {
    border-color: var(--secondary-blue);
    color: var(--secondary-blue);
    box-shadow: 0 2px 4px rgba(24, 144, 255, 0.1);
}

/* Product Style Cards */
.product-card {
    background: var(--card-white);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: var(--shadow-light);
}

@media (max-width: 1024px) {
    .product-card {
        padding: 18px;
    }
}

@media (max-width: 768px) {
    .product-card {
        padding: 16px;
    }
}

.product-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
    border-color: var(--primary-blue);
}

/* Icon List Styles for Product Cards */
.product-card ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 0 !important;
}

.product-card li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    padding-left: 0 !important;
    margin-bottom: 0.5rem !important;
}

.product-card li i {
    flex-shrink: 0;
    margin-top: 0.125rem;
    width: 12px;
    height: 12px;
    text-align: center;
}

.product-card-icon {
    width: 48px;
    height: 48px;
    background: var(--gradient-subtle);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    color: var(--primary-blue);
    font-size: 20px;
    box-shadow: var(--shadow-light);
}

/* Contact Cards */
.contact-card {
    background: var(--card-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 32px;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.contact-icon {
    width: 64px;
    height: 64px;
    background: var(--light-blue);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--primary-blue);
    font-size: 24px;
}

/* Stat Cards */
.stat-card-product {
    background: var(--card-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.stat-number-product {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label-product {
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

/* Application Cards */
.app-card-product {
    background: var(--card-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.app-card-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-blue);
}

.app-icon-product {
    width: 56px;
    height: 56px;
    background: var(--light-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--primary-blue);
    font-size: 24px;
}

/* Typography */
.hero-title-product {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle-product {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.section-title-product {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle-product {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
}

.hero-title-contact {
    font-size: clamp(2.5rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-subtitle-contact {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.section-title-contact {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle-contact {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    text-align: center;
}

.contact-section-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

/* Image Placeholders */
.product-image {
    background: linear-gradient(135deg, var(--background-light) 0%, var(--card-white) 100%);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.875rem;
    min-height: 250px;
    position: relative;
    overflow: hidden;
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--secondary-blue));
}

/* Feature List */
.feature-list-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.feature-list-item:last-child {
    border-bottom: none;
}

.feature-list-icon {
    width: 32px;
    height: 32px;
    background: var(--ultra-light-blue);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 16px;
    color: var(--accent-blue);
    font-size: 14px;
    flex-shrink: 0;
    box-shadow: var(--shadow-light);
}

/* Contact Links */
.contact-link {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.contact-link:hover {
    color: var(--secondary-blue);
    text-decoration: underline;
}

.contact-link i {
    font-size: 14px;
}

/* Contact List */
.contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 12px;
}

.contact-list li:last-child {
    border-bottom: none;
}

.contact-list-icon {
    width: 32px;
    height: 32px;
    background: var(--light-blue);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-blue);
    font-size: 14px;
    flex-shrink: 0;
}

/* Product Preview Section */
.product-preview {
    background: var(--sidebar-dark);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.product-preview-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-preview-content {
    padding: 32px;
    text-align: center;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-product {
        font-size: 2rem;
    }

    .hero-subtitle-product {
        font-size: 1.125rem;
    }

    .hero-title-contact {
        font-size: 2rem;
    }

    .hero-subtitle-contact {
        font-size: 1.125rem;
    }

    .section-title-product {
        font-size: 2rem;
    }

    .section-title-contact {
        font-size: 2rem;
    }

    .stat-number-product {
        font-size: 2rem;
    }

    .contact-card {
        padding: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Additional Styles from Other Pages */

/* Hero Gradient (About Page) */
.hero-gradient {
    background: linear-gradient(135deg, var(--sidebar-dark) 0%, var(--primary-blue) 50%, #06b6d4 100%);
}

/* Timeline (About Page) */
.timeline-item {
    position: relative;
    padding-left: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary-blue);
}

.timeline-item::after {
    content: '';
    position: absolute;
    left: 5px;
    top: 20px;
    width: 2px;
    height: calc(100% + 16px);
    background: #e5e7eb;
}

.timeline-item:last-child::after {
    display: none;
}

/* Team Cards (About Page) */
.team-card {
    transition: all 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

/* Value Cards (About Page) */
.value-card {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.1);
}

/* Achievement Numbers (About Page) */
.achievement-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Feature Cards (Product Page) */
.feature-card {
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0,0,0,0.15);
}

/* Tab Content (Product Page) */
.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-button {
    transition: all 0.3s ease;
}

.tab-button.active {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: white;
}

/* Demo Interface (Product Page) */
.demo-interface {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* Format Badges (Product Page) */
.format-badge {
    display: inline-flex;
    align-items: center;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 500;
}

/* BPO Service Styles */

/* BPO Hero Section */
.bpo-hero {
    background: linear-gradient(135deg, #1e293b 0%, #1e3a8a 50%, #581c87 100%);
    position: relative;
    overflow: hidden;
}

.bpo-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,%3Csvg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"%3E%3Cg fill="none" fill-rule="evenodd"%3E%3Cg fill="%23ffffff" fill-opacity="0.03"%3E%3Cpath d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/%3E%3C/g%3E%3C/g%3E%3C/svg%3E');
    opacity: 0.1;
}

/* Ensure text visibility in BPO hero section */
.bpo-hero .text-white {
    color: #ffffff !important;
}

.bpo-hero .text-cyan-400 {
    color: #22d3ee !important;
}

.bpo-hero .text-blue-100 {
    color: #e0f2fe !important;
}

.bpo-hero .text-blue-200 {
    color: #bae6fd !important;
}

.bpo-hero .text-green-400 {
    color: #4ade80 !important;
}

.bpo-hero .text-yellow-400 {
    color: #facc15 !important;
}

/* BPO CTA Buttons */
.bpo-cta-primary {
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    position: relative;
    overflow: hidden;
}

.bpo-cta-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.6s;
}

.bpo-cta-primary:hover::before {
    left: 100%;
}

.bpo-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(6, 182, 212, 0.4);
}

.bpo-cta-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.2);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.bpo-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-2px);
}

/* BPO Metric Cards */
.bpo-metric-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.bpo-metric-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

/* BPO Process Visualization */
.bpo-process-viz {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.bpo-viz-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bpo-viz-content {
    padding: 24px;
    color: white;
}

.bpo-automation-display {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.bpo-process-step {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 12px 16px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.bpo-process-step.active {
    background: rgba(6, 182, 212, 0.1);
    border-color: rgba(6, 182, 212, 0.3);
}

.bpo-process-step:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* BPO Advantage Cards */
.bpo-advantage-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 32px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.bpo-advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bpo-advantage-card:hover::before {
    transform: scaleX(1);
}

.bpo-advantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #06b6d4;
}

.bpo-advantage-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.bpo-advantage-icon-wrapper {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.bpo-advantage-icon {
    font-size: 28px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bpo-advantage-metric {
    text-align: right;
}

.bpo-metric-value {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.bpo-metric-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 2px;
}

.bpo-advantage-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
    line-height: 1.3;
}

.bpo-advantage-description {
    color: #334155;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

/* BPO text improvements for better readability */
.bpo-advantage-details .text-gray-600 {
    color: #475569 !important;
}

.bpo-advantage-details .text-sm {
    font-size: 0.875rem !important;
    line-height: 1.5 !important;
}

.bpo-advantage-details strong {
    color: #1e293b !important;
    font-weight: 600 !important;
}

.bpo-advantage-details {
    padding-top: 16px;
    border-top: 1px solid #e2e8f0;
}

/* BPO Comparison Chart */
.bpo-comparison-chart {
    background: linear-gradient(135deg, #ffffff 0%, #f1f5f9 100%);
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
}

.bpo-chart-header {
    text-align: center;
    margin-bottom: 32px;
}

.bpo-chart-content {
    position: relative;
}

.bpo-metric-comparison {
    text-align: center;
}

.comparison-label {
    font-weight: 600;
    color: #374151;
    margin-bottom: 16px;
    font-size: 1rem;
}

.comparison-bars {
    space-y: 12px;
}

.bar-container {
    margin-bottom: 12px;
}

.bar-label {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 4px;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.bar-bg {
    width: 100%;
    height: 8px;
    background: #f3f4f6;
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.bar-traditional {
    height: 100%;
    background: linear-gradient(90deg, #ef4444, #dc2626);
    border-radius: 4px;
    transition: width 1s ease-in-out;
}

.bar-bpo {
    height: 100%;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    border-radius: 4px;
    transition: width 1s ease-in-out;
    position: relative;
}

.bar-bpo::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: 100%;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 0 4px 4px 0;
}

/* Responsive Design for BPO Elements */
@media (max-width: 768px) {
    .bpo-advantage-header {
        flex-direction: column;
        gap: 16px;
        text-align: center;
    }

    .bpo-advantage-metric {
        text-align: center;
    }

    .bpo-comparison-chart {
        padding: 24px;
    }

    .bpo-chart-content .grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

/* BPO Process Flow Styles */
.bpo-process-flow {
    position: relative;
}

.bpo-timeline {
    position: relative;
    padding-left: 60px;
}

.bpo-timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    border-radius: 1px;
}

/* BPO Process Section text visibility improvements */
#bpo-process {
    background: linear-gradient(135deg, #1e293b 0%, #1e4080 50%, #312e81 100%) !important;
}

#bpo-process .text-white {
    color: #ffffff !important;
}

#bpo-process .text-cyan-300 {
    color: #67e8f9 !important;
}

#bpo-process .text-cyan-400 {
    color: #22d3ee !important;
}

#bpo-process .text-blue-200 {
    color: #bae6fd !important;
}

.bpo-timeline-item {
    position: relative;
    margin-bottom: 60px;
    opacity: 0;
    transform: translateX(20px);
    animation: slideInFromRight 0.6s ease forwards;
}

.bpo-timeline-item:nth-child(1) { animation-delay: 0.1s; }
.bpo-timeline-item:nth-child(2) { animation-delay: 0.2s; }
.bpo-timeline-item:nth-child(3) { animation-delay: 0.3s; }
.bpo-timeline-item:nth-child(4) { animation-delay: 0.4s; }
.bpo-timeline-item:nth-child(5) { animation-delay: 0.5s; }

.bpo-timeline-item:last-child {
    margin-bottom: 0;
}

.bpo-timeline-marker {
    position: absolute;
    left: -54px;
    top: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bpo-timeline-number {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    border: 3px solid #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    position: relative;
    z-index: 2;
}

.bpo-timeline-marker.final .bpo-timeline-check {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: 3px solid #1e293b;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    position: relative;
    z-index: 2;
}

.bpo-timeline-pulse {
    position: absolute;
    left: 50%;
    top: 50%;
    width: 44px;
    height: 44px;
    background: rgba(6, 182, 212, 0.3);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
    z-index: 1;
}

.bpo-timeline-content {
    position: relative;
}

.bpo-process-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bpo-process-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.bpo-process-card:hover::before {
    transform: scaleX(1);
}

.bpo-process-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    border-color: rgba(6, 182, 212, 0.3);
}

.bpo-process-card.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(5, 150, 105, 0.05));
    border-color: rgba(16, 185, 129, 0.2);
}

.bpo-process-card.featured::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.bpo-process-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.bpo-process-icon-wrapper {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    color: #06b6d4;
    font-size: 24px;
}

.bpo-process-card.featured .bpo-process-icon-wrapper {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    color: #10b981;
}

.bpo-process-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0;
}

.bpo-process-description {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 1rem;
}

.bpo-process-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.bpo-feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    color: #ffffff !important;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.bpo-feature-tag:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.bpo-feature-tag i {
    font-size: 12px;
}

/* BPO Process Summary */
.bpo-process-summary {
    margin-top: 80px;
}

.bpo-summary-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.bpo-summary-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6, 182, 212, 0.3);
}

.summary-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: #06b6d4;
    font-size: 28px;
}

.summary-content h4 {
    color: #ffffff !important;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.summary-value {
    color: white !important;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 8px;
    background: linear-gradient(135deg, #06b6d4, #3b82f6) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    background-clip: text !important;
}

.summary-description {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Animations */
@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0.1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.3;
    }
}

/* Mobile Responsive for Process Timeline */
@media (max-width: 768px) {
    .bpo-timeline {
        padding-left: 40px;
    }

    .bpo-timeline-marker {
        left: -34px;
    }

    .bpo-timeline-number,
    .bpo-timeline-marker.final .bpo-timeline-check {
        width: 36px;
        height: 36px;
        font-size: 14px;
        border-width: 2px;
    }

    .bpo-timeline-pulse {
        width: 36px;
        height: 36px;
    }

    .bpo-process-card {
        padding: 24px;
    }

    .bpo-process-header {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }

    .bpo-process-icon-wrapper {
        margin-right: 0;
    }

    .bpo-process-features {
        justify-content: center;
    }

    .bpo-process-summary .grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* BPO Final CTA Styles */
.bpo-cta-final-primary {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #1e293b !important;
    padding: 20px 32px;
    border-radius: 16px;
    font-weight: 700;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.bpo-cta-final-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.6s;
}

.bpo-cta-final-primary:hover::before {
    left: 100%;
}

.bpo-cta-final-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(251, 191, 36, 0.5);
}

.bpo-cta-final-secondary {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(15px);
    color: #ffffff !important;
    padding: 20px 32px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    min-width: 280px;
}

.bpo-cta-final-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

/* CTA Section text visibility improvements */
section[class*="py-24"] {
    background: linear-gradient(135deg, #0891b2 0%, #1d4ed8 50%, #4338ca 100%) !important;
}

section[class*="py-24"] .text-white {
    color: #ffffff !important;
}

section[class*="py-24"] .text-yellow-400 {
    color: #facc15 !important;
}

section[class*="py-24"] .text-green-400 {
    color: #4ade80 !important;
}

section[class*="py-24"] .text-orange-400 {
    color: #fb923c !important;
}

section[class*="py-24"] .text-blue-100 {
    color: #e0f2fe !important;
}

section[class*="py-24"] .text-sm {
    color: #bae6fd !important;
}

section[class*="py-24"] .opacity-90 {
    opacity: 1 !important;
}

.trust-indicator {
    opacity: 1 !important;
    transition: all 0.3s ease;
}

.trust-indicator:hover {
    opacity: 1;
    transform: translateY(-2px);
}

.trust-indicator i {
    transition: all 0.3s ease;
}

.trust-indicator:hover i {
    transform: scale(1.1);
}

.trust-indicator .text-green-400 {
    color: #4ade80 !important;
}

.trust-indicator .text-blue-400 {
    color: #60a5fa !important;
}

.trust-indicator .text-yellow-400 {
    color: #facc15 !important;
}

.trust-indicator .text-purple-400 {
    color: #c084fc !important;
}

/* Mobile Responsive for Final CTA */
@media (max-width: 768px) {
    .bpo-cta-final-primary,
    .bpo-cta-final-secondary {
        min-width: 100%;
        font-size: 16px;
        padding: 16px 24px;
    }

    .trust-indicators .grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* BPO Case Study Styles */
.bpo-case-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 28px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

/* Case Study section background fixes */
section[class*="py-20"][class*="bg-gradient"] {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #1e3a8a 50%, #312e81 75%, #581c87 100%) !important;
}

section[class*="py-20"][class*="bg-gradient"] .text-white {
    color: #ffffff !important;
}

section[class*="py-20"][class*="bg-gradient"] .text-green-300,
section[class*="py-20"][class*="bg-gradient"] .text-green-400 {
    color: #4ade80 !important;
}

section[class*="py-20"][class*="bg-gradient"] .text-emerald-400 {
    color: #34d399 !important;
}

section[class*="py-20"][class*="bg-gradient"] .text-blue-200 {
    color: #bfdbfe !important;
}

.bpo-case-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.bpo-case-card:hover::before {
    transform: scaleX(1);
}

.bpo-case-card:hover {
    transform: translateY(-6px);
    border-color: rgba(6, 182, 212, 0.3);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.bpo-case-card.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.08));
    border-color: rgba(16, 185, 129, 0.3);
}

.bpo-case-card.featured::before {
    background: linear-gradient(90deg, #10b981, #059669);
}

.case-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    gap: 16px;
}

.case-icon-wrapper {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(59, 130, 246, 0.2));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06b6d4;
    font-size: 22px;
    flex-shrink: 0;
}

.case-icon-wrapper.featured {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.2));
    color: #10b981;
}

.case-icon-wrapper.success {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.2));
    color: #22c55e;
}

.case-title {
    font-size: 1.375rem;
    font-weight: 700;
    color: #ffffff !important;
    margin: 0 0 4px 0;
    line-height: 1.3;
}

.case-subtitle {
    color: rgba(255, 255, 255, 0.8) !important;
    font-size: 0.95rem;
    margin: 0;
}

.case-feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.case-feature-item {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.case-feature-item:last-child {
    border-bottom: none;
}

.case-feature-item:hover {
    color: white;
    padding-left: 8px;
}

.case-feature-item i {
    color: #06b6d4;
    font-size: 16px;
    margin-right: 12px;
    width: 20px;
    text-align: center;
}

/* Case Metrics */
.case-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.case-metric-item {
    text-align: center;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.case-metric-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.metric-value {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 6px;
}

.metric-label {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Automation Flow */
.automation-flow {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.flow-step {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.flow-step:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateX(4px);
}

.flow-number {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    font-size: 16px;
    flex-shrink: 0;
}

.flow-content {
    flex: 1;
}

.flow-title {
    font-weight: 600;
    color: #ffffff !important;
    font-size: 1rem;
    margin-bottom: 2px;
}

.flow-desc {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.85rem;
    line-height: 1.4;
}

/* Results Grid */
.results-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.result-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    transition: all 0.3s ease;
}

.result-item:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-2px);
}

.result-icon {
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(22, 163, 74, 0.2));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22c55e;
    font-size: 18px;
    flex-shrink: 0;
}

.result-content {
    flex: 1;
}

.result-value {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 2px;
}

.result-label {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 0.85rem;
    line-height: 1.3;
}

/* Case Study Summary */
.bpo-case-summary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15), rgba(5, 150, 105, 0.08));
    backdrop-filter: blur(20px);
    border: 1px solid rgba(16, 185, 129, 0.25);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
}

.bpo-case-summary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #10b981, #059669, #22c55e);
}

.summary-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.summary-icon {
    margin-bottom: 24px;
}

.summary-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95) !important;
    margin: 0 0 24px 0;
    font-style: normal;
    border: none;
    padding: 0;
}

.client-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 20px;
    padding: 8px 20px;
    color: rgba(255, 255, 255, 0.95) !important;
    font-size: 0.9rem;
    font-weight: 500;
}

/* Mobile Responsive for Case Study */
@media (max-width: 768px) {
    .bpo-case-card {
        padding: 20px;
    }

    .case-header {
        flex-direction: column;
        text-align: center;
        gap: 12px;
    }

    .case-metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .flow-step {
        padding: 12px;
    }

    .bpo-case-summary {
        padding: 24px 20px;
    }

    .summary-text {
        font-size: 1.1rem;
    }
}

/* BPO Dual Loop Process Flow Styles */
.bpo-process-flow {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(20px);
}

.bpo-flow-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 16px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.bpo-flow-header .text-white {
    color: #ffffff !important;
}

.bpo-flow-header .text-green-400 {
    color: #4ade80 !important;
}

.bpo-flow-content {
    padding: 24px;
}

.bpo-flow-image-container {
    position: relative;
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    padding: 20px;
}

.bpo-flow-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 20px;
    /* SVG specific optimizations */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    /* Ensure proper SVG scaling */
    background: transparent;
}

/* Process Legend */
.bpo-flow-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    transition: all 0.3s ease;
}

.legend-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-1px);
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.operations-legend .legend-dot {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 0 8px rgba(16, 185, 129, 0.4);
}

.optimization-legend .legend-dot {
    background: linear-gradient(135deg, #4286C5, #518BC1);
    box-shadow: 0 0 8px rgba(11, 194, 245, 0.4);
}

/* Flow Node Styles */
.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #ffffff !important;
    text-align: center;
    min-width: 80px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
}

.flow-node:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.flow-node i {
    font-size: 20px;
    margin-bottom: 4px;
}

.node-subtitle {
    font-size: 10px;
    font-weight: 400;
    opacity: 0.8;
    margin-top: 2px;
}

/* Specific Node Colors */
.user-node {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2), rgba(37, 99, 235, 0.1));
    border-color: rgba(59, 130, 246, 0.3);
}

.bpo-node {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(8, 145, 178, 0.1));
    border-color: rgba(6, 182, 212, 0.3);
}

.results-node {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2), rgba(5, 150, 105, 0.1));
    border-color: rgba(16, 185, 129, 0.3);
}

.feedback-node {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.2), rgba(217, 119, 6, 0.1));
    border-color: rgba(245, 158, 11, 0.3);
}

.optimization-node {
    background: linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(124, 58, 237, 0.1));
    border-color: rgba(139, 92, 246, 0.3);
}

/* Flow Arrows SVG */
.flow-arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.operations-flow {
    stroke-dasharray: 8, 4;
    animation: operationsFlowAnimation 4s ease-in-out infinite;
}

.optimization-flow {
    stroke-dasharray: 6, 3;
    animation: optimizationFlowAnimation 5s ease-in-out infinite;
}

@keyframes operationsFlowAnimation {
    0% {
        stroke-dashoffset: 0;
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -12;
        opacity: 0.9;
    }
}

@keyframes optimizationFlowAnimation {
    0% {
        stroke-dashoffset: 0;
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
    100% {
        stroke-dashoffset: -9;
        opacity: 0.8;
    }
}

/* Metrics Display */
.flow-metrics {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-between;
    z-index: 3;
}

.metric-item {
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 12px 16px;
    text-align: center;
    min-width: 100px;
}

.metric-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.metric-value {
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(135deg, #06b6d4, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Mobile Responsive for BPO Flow Image */
@media (max-width: 768px) {
    .bpo-flow-image-container {
        padding: 16px;
    }

    .bpo-flow-image {
        max-height: 300px;
        margin-bottom: 16px;
    }

    .bpo-flow-legend {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 16px;
    }

    .legend-item {
        justify-content: center;
        font-size: 12px;
        padding: 6px 12px;
    }

    .flow-metrics {
        flex-direction: column;
        gap: 8px;
    }

    .metric-item {
        min-width: auto;
    }
}

/* Image-based Carousel Styles */
#feature-carousel {
    min-height: 400px;
    position: relative !important;
}

#feature-carousel .absolute {
    position: absolute !important;
}

#feature-carousel .relative {
    position: relative !important;
}

.carousel-slides {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
}

.carousel-slide img {
    max-height: 350px;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
}

.carousel-indicator {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-indicator:hover {
    background-color: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* Enhanced Carousel Navigation Buttons */
#prev-btn, #next-btn {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1 !important;
    backdrop-filter: blur(4px) !important;
}

#prev-btn:hover, #next-btn:hover {
    opacity: 1 !important;
    transform: scale(1.05) !important;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3) !important;
}

/* Slide title and description styling */
.carousel-slide h3 {
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.carousel-slide p {
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

/* Image hover effects */
.carousel-slide img:hover {
    transform: scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

/* Enhanced slide animations */
@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInFromRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.carousel-slide.animate-in {
    animation: fadeInScale 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Carousel Title Background */
.carousel-title-bg {
    transition: all 0.3s ease;
}

.carousel-title-bg:hover {
    background: rgba(0,0,0,0.7) !important;
    transform: scale(1.02);
}

/* Mobile Responsive for Image Carousel */
@media (max-width: 768px) {
    #feature-carousel {
        min-height: 380px;
    }

    .carousel-slide {
        padding: 8px;
    }

    .carousel-slide img {
        max-height: 280px;
        border-radius: 8px;
    }

    .carousel-slide h3 {
        font-size: 1.25rem;
        margin-top: 12px;
        margin-bottom: 8px;
    }

    .carousel-slide p {
        font-size: 0.875rem;
        max-width: none !important;
    }

    #prev-btn, #next-btn {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        left: 8px;
        right: 8px;
    }

    #prev-btn i, #next-btn i {
        font-size: 1.125rem;
    }

    .carousel-indicator {
        width: 8px;
        height: 8px;
    }

    .carousel-indicator.active {
        width: 24px;
        height: 8px;
    }

    .carousel-title-bg {
        width: 120px !important;
    }
}

/* Hero Style Variants */
.hero-product.style-2 {
    background: linear-gradient(135deg, #fafbfc 0%, #f5f8fa 50%, #ffffff 100%);
}

.hero-product.style-2::before,
.hero-product.style-2::after {
    display: none;
}

.hero-product.style-3 {
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 40%, #3b82f6 70%, #93c5fd 100%);
    color: white;
}

.hero-product.style-3::before,
.hero-product.style-3::after {
    display: none;
}

.hero-product.style-3 .text-gray-600,
.hero-product.style-3 .text-gray-700,
.hero-product.style-3 .text-gray-900 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-product.style-3 .hero-title-product {
    color: white !important;
}

.hero-product.style-3 .btn-product-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-product.style-3 .btn-product-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-product.style-4 {
    background: linear-gradient(180deg, #e0f2fe 0%, #bae6fd 30%, #7dd3fc 60%, #38bdf8 100%);
    position: relative;
    overflow: hidden;
}

.hero-product.style-4::before {
    display: none;
}

.hero-product.style-4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='20' viewBox='0 0 100 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 10 Q 25 0 50 10 T 100 10 L 100 20 L 0 20 Z' fill='rgba(255,255,255,0.3)'/%3E%3C/svg%3E");
    background-size: 100px 20px;
    background-repeat: repeat-x;
    opacity: 0.7;
}

.hero-product.style-5 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #334155 50%, #475569 75%, #64748b 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-5::before {
    display: none;
}

.hero-product.style-5::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.1) 0%, transparent 50%);
    opacity: 1;
}

.hero-product.style-5 .text-gray-600,
.hero-product.style-5 .text-gray-700,
.hero-product.style-5 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-5 .hero-title-product {
    color: white !important;
}

.hero-product.style-5 .btn-product-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-product.style-5 .btn-product-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-product.style-5 .stat-card-product {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-product.style-5 .stat-label-product {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Style 6: 赛博蓝 - Cyber Blue */
.hero-product.style-6 {
    background: linear-gradient(135deg, #0a0e27 0%, #151932 25%, #1a237e 50%, #283593 75%, #3949ab 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-6::before,
.hero-product.style-6::after {
    display: none;
}

.hero-product.style-6::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(0, 255, 255, 0.05) 35px, rgba(0, 255, 255, 0.05) 70px),
        radial-gradient(circle at 30% 70%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 30%, rgba(0, 191, 255, 0.08) 0%, transparent 40%);
    opacity: 1;
    animation: cyberMove 20s ease-in-out infinite;
}

@keyframes cyberMove {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(-10px) translateY(-5px); }
    50% { transform: translateX(5px) translateY(10px); }
    75% { transform: translateX(-5px) translateY(-10px); }
}

.hero-product.style-6 .text-gray-600,
.hero-product.style-6 .text-gray-700,
.hero-product.style-6 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-6 .hero-title-product {
    color: #00ffff !important;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.hero-product.style-6 .btn-product-secondary {
    background: rgba(0, 255, 255, 0.1);
    color: #00ffff;
    border-color: rgba(0, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-product.style-6 .btn-product-secondary:hover {
    background: rgba(0, 255, 255, 0.2);
    border-color: rgba(0, 255, 255, 0.5);
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

/* Style 7: 深海蓝 - Deep Ocean Blue */
.hero-product.style-7 {
    background: linear-gradient(180deg, #001f3f 0%, #003366 20%, #004080 40%, #0066cc 60%, #0080ff 80%, #3399ff 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-7::before,
.hero-product.style-7::after {
    display: none;
}

.hero-product.style-7::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: url("data:image/svg+xml,%3Csvg width='200' height='40' viewBox='0 0 200 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 20 Q 50 5 100 20 T 200 20 L 200 40 L 0 40 Z' fill='rgba(0,100,200,0.3)'/%3E%3Cpath d='M0 25 Q 50 15 100 25 T 200 25 L 200 40 L 0 40 Z' fill='rgba(0,150,255,0.2)'/%3E%3C/svg%3E");
    background-size: 200px 40px;
    background-repeat: repeat-x;
    opacity: 0.8;
    animation: waveMove 15s linear infinite;
}

@keyframes waveMove {
    0% { background-position-x: 0; }
    100% { background-position-x: 200px; }
}

.hero-product.style-7 .text-gray-600,
.hero-product.style-7 .text-gray-700,
.hero-product.style-7 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-7 .hero-title-product {
    color: white !important;
}

/* Style 8: 极光蓝 - Aurora Blue */
.hero-product.style-8 {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-8::before,
.hero-product.style-8::after {
    display: none;
}

.hero-product.style-8::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 30%, rgba(0, 255, 170, 0.1) 50%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(0, 170, 255, 0.08) 50%, transparent 70%),
        linear-gradient(90deg, transparent 40%, rgba(170, 0, 255, 0.06) 60%, transparent 80%);
    opacity: 1;
    animation: auroraShift 10s ease-in-out infinite alternate;
}

@keyframes auroraShift {
    0% { transform: rotate(0deg) scale(1); opacity: 0.7; }
    100% { transform: rotate(5deg) scale(1.1); opacity: 1; }
}

.hero-product.style-8 .text-gray-600,
.hero-product.style-8 .text-gray-700,
.hero-product.style-8 .text-gray-900 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-product.style-8 .hero-title-product {
    color: #00ffaa !important;
    text-shadow: 0 0 15px rgba(0, 255, 170, 0.4);
}

/* Style 9: 网格科技 - Grid Tech */
.hero-product.style-9 {
    background: linear-gradient(135deg, #0d1117 0%, #161b22 30%, #21262d 60%, #30363d 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-9::before,
.hero-product.style-9::after {
    display: none;
}

.hero-product.style-9::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(58, 175, 169, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(58, 175, 169, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    animation: gridMove 25s linear infinite;
}

@keyframes gridMove {
    0% { background-position: 0 0; }
    100% { background-position: 30px 30px; }
}

.hero-product.style-9 .text-gray-600,
.hero-product.style-9 .text-gray-700,
.hero-product.style-9 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-9 .hero-title-product {
    color: #3ab5a9 !important;
}

.hero-product.style-9 .btn-product-secondary {
    background: rgba(58, 175, 169, 0.1);
    color: #3ab5a9;
    border-color: rgba(58, 175, 169, 0.3);
}

/* Style 10: 流体蓝 - Fluid Blue */
.hero-product.style-10 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #6b8dd6 50%, #8e37d7 75%, #667eea 100%);
    background-size: 400% 400%;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-10::before,
.hero-product.style-10::after {
    display: none;
}

.hero-product.style-10::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0.6;
    animation: fluidRotate 20s ease-in-out infinite;
}

.hero-product.style-10 {
    animation: fluidGradient 15s ease infinite;
}

@keyframes fluidGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes fluidRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-product.style-10 .text-gray-600,
.hero-product.style-10 .text-gray-700,
.hero-product.style-10 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Style 11: 渐变波浪 - Gradient Wave */
.hero-product.style-11 {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 30%, #7e8ce0 60%, #36d1dc 80%, #2193b0 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-11::before,
.hero-product.style-11::after {
    display: none;
}

.hero-product.style-11::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: url("data:image/svg+xml,%3Csvg width='300' height='60' viewBox='0 0 300 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 30 Q 75 10 150 30 T 300 30 L 300 60 L 0 60 Z' fill='rgba(255,255,255,0.1)'/%3E%3Cpath d='M0 40 Q 75 25 150 40 T 300 40 L 300 60 L 0 60 Z' fill='rgba(255,255,255,0.08)'/%3E%3Cpath d='M0 50 Q 75 40 150 50 T 300 50 L 300 60 L 0 60 Z' fill='rgba(255,255,255,0.05)'/%3E%3C/svg%3E");
    background-size: 300px 60px;
    background-repeat: repeat-x;
    opacity: 0.9;
    animation: waveGradient 18s ease-in-out infinite alternate;
}

@keyframes waveGradient {
    0% { background-position-x: 0; opacity: 0.7; }
    100% { background-position-x: 300px; opacity: 1; }
}

.hero-product.style-11 .text-gray-600,
.hero-product.style-11 .text-gray-700,
.hero-product.style-11 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

/* Style 12: 数字蓝 - Digital Blue */
.hero-product.style-12 {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 25%, #2d3561 50%, #3e4c8a 75%, #4a5f9e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-12::before,
.hero-product.style-12::after {
    display: none;
}

.hero-product.style-12::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(0, 255, 136, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 80% 80%, rgba(0, 191, 255, 0.12) 0%, transparent 35%),
        radial-gradient(circle at 50% 50%, rgba(138, 43, 226, 0.08) 0%, transparent 40%);
    opacity: 1;
    animation: digitalPulse 8s ease-in-out infinite;
}

.hero-product.style-12::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(0, 136, 255, 0.02) 50%, transparent 100%);
    background-size: 200px 200px;
    opacity: 1;
    animation: digitalScan 12s linear infinite;
}

@keyframes digitalPulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.05); opacity: 1; }
}

@keyframes digitalScan {
    0% { background-position: 0 0; }
    100% { background-position: 200px 200px; }
}

.hero-product.style-12 .text-gray-600,
.hero-product.style-12 .text-gray-700,
.hero-product.style-12 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-12 .hero-title-product {
    color: #00ff88 !important;
    text-shadow: 0 0 20px rgba(0, 255, 136, 0.4);
}

.hero-product.style-12 .stat-number-product {
    color: #00ffff !important;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.6);
}

/* Common styles for new dark themes */
.hero-product.style-6 .btn-product-secondary,
.hero-product.style-7 .btn-product-secondary,
.hero-product.style-8 .btn-product-secondary,
.hero-product.style-9 .btn-product-secondary,
.hero-product.style-10 .btn-product-secondary,
.hero-product.style-11 .btn-product-secondary,
.hero-product.style-12 .btn-product-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-product.style-6 .btn-product-secondary:hover,
.hero-product.style-7 .btn-product-secondary:hover,
.hero-product.style-8 .btn-product-secondary:hover,
.hero-product.style-9 .btn-product-secondary:hover,
.hero-product.style-10 .btn-product-secondary:hover,
.hero-product.style-11 .btn-product-secondary:hover,
.hero-product.style-12 .btn-product-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-product.style-6 .stat-card-product,
.hero-product.style-7 .stat-card-product,
.hero-product.style-8 .stat-card-product,
.hero-product.style-9 .stat-card-product,
.hero-product.style-10 .stat-card-product,
.hero-product.style-11 .stat-card-product,
.hero-product.style-12 .stat-card-product {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-product.style-6 .stat-label-product,
.hero-product.style-7 .stat-label-product,
.hero-product.style-8 .stat-label-product,
.hero-product.style-9 .stat-label-product,
.hero-product.style-10 .stat-label-product,
.hero-product.style-11 .stat-label-product,
.hero-product.style-12 .stat-label-product {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* Style 13: 静态科技 - Static Tech */
.hero-product.style-13 {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 40%, #dee2e6 100%);
    color: #1890FF;
    position: relative;
    overflow: hidden;
}

.hero-product.style-13::before {
    display: none;
}

.hero-product.style-13::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%231890FF' fill-opacity='0.08'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 1;
}

/* Style 14: SVG网格 - SVG Grid */
.hero-product.style-14 {
    background: linear-gradient(135deg, #fafbff 0%, #f0f7ff 50%, #e6f3ff 100%);
    color: #1890FF;
    position: relative;
    overflow: hidden;
}

.hero-product.style-14::before {
    display: none;
}

.hero-product.style-14::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='40' height='40' viewBox='0 0 40 40' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231890FF' fill-opacity='0.1'%3E%3Cpath d='M0 0h40v40H0V0zm20 20h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1H7v-1zm12 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1H9v-1zm12 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1zm-2 0h1v1h-1v-1z'/%3E%3C/g%3E%3C/svg%3E");
}

/* Style 15: 电路板 - Circuit Board */
.hero-product.style-15 {
    background: linear-gradient(135deg, #f6f8fb 0%, #eef2f7 50%, #e4eaef 100%);
    color: #1890FF;
    position: relative;
    overflow: hidden;
}

.hero-product.style-15::before {
    display: none;
}

.hero-product.style-15::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231890FF' stroke-opacity='0.15' stroke-width='1'%3E%3Cpath d='M0 20h20M30 20h20M50 20h30M40 0v20M40 30v20M20 40h20M50 40h30M30 50h20M20 60h20M50 60h30M40 60v20M0 40h10M70 40h10M0 60h10M70 60h10'/%3E%3Cg fill='%231890FF' fill-opacity='0.2'%3E%3Ccircle cx='20' cy='20' r='3'/%3E%3Ccircle cx='60' cy='20' r='3'/%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3Ccircle cx='20' cy='60' r='3'/%3E%3Ccircle cx='60' cy='60' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Style 16: 几何图形 - Geometric */
.hero-product.style-16 {
    background: linear-gradient(135deg, #fafbff 0%, #f0f5ff 40%, #e6efff 100%);
    color: #1890FF;
    position: relative;
    overflow: hidden;
}

.hero-product.style-16::before {
    display: none;
}

.hero-product.style-16::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231890FF' fill-opacity='0.08'%3E%3Cpolygon points='30,5 45,20 45,40 30,55 15,40 15,20'/%3E%3Cpolygon points='10,15 25,30 25,50 10,65 -5,50 -5,30'/%3E%3Cpolygon points='50,15 65,30 65,50 50,65 35,50 35,30'/%3E%3C/g%3E%3C/svg%3E");
}

/* Style 17: 数据流 - Data Flow */
.hero-product.style-17 {
    background: linear-gradient(135deg, #f8fafd 0%, #f0f4f8 50%, #e8ecf4 100%);
    color: #1890FF;
    position: relative;
    overflow: hidden;
}

.hero-product.style-17::before {
    display: none;
}

.hero-product.style-17::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%231890FF' fill-opacity='0.1'%3E%3Cpath d='M20 30h60v3H20zM30 40h40v3H30zM25 50h50v3H25zM15 60h70v3H15zM35 70h30v3H35z'/%3E%3Cg fill='%2352C41A' fill-opacity='0.15'%3E%3Ccircle cx='20' cy='31.5' r='4'/%3E%3Ccircle cx='80' cy='31.5' r='4'/%3E%3Ccircle cx='30' cy='41.5' r='4'/%3E%3Ccircle cx='70' cy='41.5' r='4'/%3E%3Ccircle cx='25' cy='51.5' r='4'/%3E%3Ccircle cx='75' cy='51.5' r='4'/%3E%3Ccircle cx='15' cy='61.5' r='4'/%3E%3Ccircle cx='85' cy='61.5' r='4'/%3E%3Ccircle cx='35' cy='71.5' r='4'/%3E%3Ccircle cx='65' cy='71.5' r='4'/%3E%3C/g%3E%3C/svg%3E");
}

/* Style 18: 晶体结构 - Crystal Structure */
.hero-product.style-18 {
    background: linear-gradient(135deg, #fafcff 0%, #f0f7ff 45%, #e6f1ff 100%);
    color: #1890FF;
    position: relative;
    overflow: hidden;
}

.hero-product.style-18::before {
    display: none;
}

.hero-product.style-18::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' stroke='%231890FF' stroke-opacity='0.2' stroke-width='1'%3E%3Cpath d='M40 10L60 25v30L40 70L20 55V25L40 10z'/%3E%3Cpath d='M40 10L20 25L40 40L60 25L40 10z'/%3E%3Cpath d='M20 25L20 55L40 70M60 25L60 55L40 70M40 40L40 70'/%3E%3Cpath d='M40 10L60 25M40 10L20 25M20 55L40 40M60 55L40 40'/%3E%3C/g%3E%3Cg fill='%2352C41A' fill-opacity='0.3'%3E%3Ccircle cx='40' cy='10' r='2'/%3E%3Ccircle cx='60' cy='25' r='2'/%3E%3Ccircle cx='60' cy='55' r='2'/%3E%3Ccircle cx='40' cy='70' r='2'/%3E%3Ccircle cx='20' cy='55' r='2'/%3E%3Ccircle cx='20' cy='25' r='2'/%3E%3Ccircle cx='40' cy='40' r='2'/%3E%3C/g%3E%3C/svg%3E");
}

/* Common styles for light themes */
.hero-product.style-13,
.hero-product.style-14,
.hero-product.style-15,
.hero-product.style-16,
.hero-product.style-17,
.hero-product.style-18 {
    color: #1890FF;
}

.hero-product.style-13 .hero-title-product,
.hero-product.style-14 .hero-title-product,
.hero-product.style-15 .hero-title-product,
.hero-product.style-16 .hero-title-product,
.hero-product.style-17 .hero-title-product,
.hero-product.style-18 .hero-title-product {
    color: #1890FF !important;
}

.hero-product.style-13 .btn-product-secondary,
.hero-product.style-14 .btn-product-secondary,
.hero-product.style-15 .btn-product-secondary,
.hero-product.style-16 .btn-product-secondary,
.hero-product.style-17 .btn-product-secondary,
.hero-product.style-18 .btn-product-secondary {
    background: rgba(24, 144, 255, 0.08);
    color: #1890FF;
    border-color: rgba(24, 144, 255, 0.2);
}

.hero-product.style-13 .btn-product-secondary:hover,
.hero-product.style-14 .btn-product-secondary:hover,
.hero-product.style-15 .btn-product-secondary:hover,
.hero-product.style-16 .btn-product-secondary:hover,
.hero-product.style-17 .btn-product-secondary:hover,
.hero-product.style-18 .btn-product-secondary:hover {
    background: rgba(24, 144, 255, 0.15);
    border-color: rgba(24, 144, 255, 0.3);
}

.hero-product.style-13 .stat-card-product,
.hero-product.style-14 .stat-card-product,
.hero-product.style-15 .stat-card-product,
.hero-product.style-16 .stat-card-product,
.hero-product.style-17 .stat-card-product,
.hero-product.style-18 .stat-card-product {
    background: rgba(24, 144, 255, 0.05);
    border-color: rgba(24, 144, 255, 0.15);
}

.hero-product.style-13 .stat-number-product,
.hero-product.style-14 .stat-number-product,
.hero-product.style-15 .stat-number-product,
.hero-product.style-16 .stat-number-product,
.hero-product.style-17 .stat-number-product,
.hero-product.style-18 .stat-number-product {
    color: #1890FF !important;
}

.hero-product.style-13 .stat-label-product,
.hero-product.style-14 .stat-label-product,
.hero-product.style-15 .stat-label-product,
.hero-product.style-16 .stat-label-product,
.hero-product.style-17 .stat-label-product,
.hero-product.style-18 .stat-label-product {
    color: #333333 !important;
}

/* Style 19: 星空蓝 - Starry Sky Blue */
.hero-product.style-19 {
    background: linear-gradient(135deg, #000428 0%, #004e92 50%, #000428 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-19::before,
.hero-product.style-19::after {
    display: none;
}

.hero-product.style-19::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.8) 1px, transparent 1px),
        radial-gradient(circle at 60% 70%, rgba(255, 255, 255, 0.6) 1px, transparent 1px),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.7) 1px, transparent 1px),
        radial-gradient(circle at 40% 80%, rgba(255, 255, 255, 0.5) 1px, transparent 1px),
        radial-gradient(circle at 90% 60%, rgba(255, 255, 255, 0.9) 1px, transparent 1px);
    background-size: 200px 200px, 150px 150px, 180px 180px, 220px 220px, 160px 160px;
    opacity: 0.8;
    animation: twinkle 8s ease-in-out infinite alternate;
}

@keyframes twinkle {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.hero-product.style-19 .text-gray-600,
.hero-product.style-19 .text-gray-700,
.hero-product.style-19 .text-gray-900 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-product.style-19 .hero-title-product {
    color: white !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Style 20: 极光紫 - Aurora Purple */
.hero-product.style-20 {
    background: linear-gradient(135deg, #1a0033 0%, #330867 30%, #30cfd0 60%, #330867 100%);
    background-size: 400% 400%;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-20::before,
.hero-product.style-20::after {
    display: none;
}

.hero-product.style-20::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(45deg, transparent 40%, rgba(138, 43, 226, 0.3) 50%, transparent 60%),
        linear-gradient(-45deg, transparent 35%, rgba(255, 0, 255, 0.2) 45%, transparent 55%),
        linear-gradient(90deg, transparent 45%, rgba(0, 255, 255, 0.15) 55%, transparent 65%);
    opacity: 1;
    animation: auroraWave 12s ease-in-out infinite alternate;
}

.hero-product.style-20 {
    animation: auroraGradient 20s ease infinite;
}

@keyframes auroraGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes auroraWave {
    0% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(2deg); }
    100% { transform: translateY(0) rotate(0deg); }
}

.hero-product.style-20 .text-gray-600,
.hero-product.style-20 .text-gray-700,
.hero-product.style-20 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-20 .hero-title-product {
    color: #ff00ff !important;
    text-shadow: 0 0 25px rgba(255, 0, 255, 0.6);
}

/* Style 21: 碳纤维 - Carbon Fiber */
.hero-product.style-21 {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 25%, #1a1a1a 50%, #2d2d2d 75%, #1a1a1a 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-21::before,
.hero-product.style-21::after {
    display: none;
}

.hero-product.style-21::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(45deg, transparent, transparent 3px, rgba(255, 255, 255, 0.03) 3px, rgba(255, 255, 255, 0.03) 6px),
        repeating-linear-gradient(-45deg, transparent, transparent 3px, rgba(255, 255, 255, 0.02) 3px, rgba(255, 255, 255, 0.02) 6px);
    opacity: 1;
}

.hero-product.style-21 .text-gray-600,
.hero-product.style-21 .text-gray-700,
.hero-product.style-21 .text-gray-900 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-product.style-21 .hero-title-product {
    color: #ffffff !important;
}

.hero-product.style-21 .btn-product-secondary {
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border-color: rgba(255, 255, 255, 0.2);
}

/* Style 22: 纳米点 - Nano Dots */
.hero-product.style-22 {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-22::before,
.hero-product.style-22::after {
    display: none;
}

.hero-product.style-22::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 25% 25%, rgba(100, 255, 218, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 75% 25%, rgba(255, 100, 218, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 25% 75%, rgba(218, 100, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 75% 75%, rgba(100, 218, 255, 0.3) 2px, transparent 2px);
    background-size: 50px 50px;
    opacity: 0.8;
    animation: nanoPulse 4s ease-in-out infinite;
}

@keyframes nanoPulse {
    0%, 100% { opacity: 0.6; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.hero-product.style-22 .text-gray-600,
.hero-product.style-22 .text-gray-700,
.hero-product.style-22 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-22 .hero-title-product {
    color: #64ffda !important;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
}

/* Style 23: 量子场 - Quantum Field */
.hero-product.style-23 {
    background: linear-gradient(135deg, #000000 0%, #130f40 25%, #30336b 50%, #130f40 75%, #000000 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-23::before,
.hero-product.style-23::after {
    display: none;
}

.hero-product.style-23::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 30% 40%, rgba(0, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(255, 0, 255, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 50% 20%, rgba(0, 255, 128, 0.06) 0%, transparent 40%);
    opacity: 1;
    animation: quantumFlux 15s ease-in-out infinite;
}

@keyframes quantumFlux {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(90deg) scale(1.1); }
    50% { transform: rotate(180deg) scale(1); }
    75% { transform: rotate(270deg) scale(0.9); }
}

.hero-product.style-23::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(0, 255, 255, 0.05) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(255, 0, 255, 0.03) 50%, transparent 100%);
    background-size: 100px 100px;
    opacity: 1;
    animation: quantumScan 10s linear infinite;
}

@keyframes quantumScan {
    0% { background-position: 0 0; }
    100% { background-position: 100px 100px; }
}

.hero-product.style-23 .text-gray-600,
.hero-product.style-23 .text-gray-700,
.hero-product.style-23 .text-gray-900 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-product.style-23 .hero-title-product {
    color: #00ffff !important;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.4);
}

/* Style 24: 光谱蓝 - Spectrum Blue */
.hero-product.style-24 {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 20%, #f093fb 40%, #c2e9fb 60%, #a1c4fd 80%, #667eea 100%);
    background-size: 400% 400%;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-24::before,
.hero-product.style-24::after {
    display: none;
}

.hero-product.style-24::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    opacity: 0.3;
    animation: spectrum 8s ease-in-out infinite;
}

.hero-product.style-24 {
    animation: spectrumFlow 25s ease infinite;
}

@keyframes spectrumFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes spectrum {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.hero-product.style-24 .text-gray-600,
.hero-product.style-24 .text-gray-700,
.hero-product.style-24 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-24 .hero-title-product {
    color: white !important;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

/* Style 25: 混沌蓝 - Chaos Blue */
.hero-product.style-25 {
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 25%, #16213e 50%, #0f3460 75%, #533483 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-25::before,
.hero-product.style-25::after {
    display: none;
}

.hero-product.style-25::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 191, 255, 0.15) 0%, transparent 60%),
        radial-gradient(circle at 80% 70%, rgba(138, 43, 226, 0.12) 0%, transparent 55%),
        radial-gradient(circle at 50% 50%, rgba(255, 20, 147, 0.08) 0%, transparent 65%);
    opacity: 1;
    animation: chaosField 20s ease-in-out infinite;
}

@keyframes chaosField {
    0% { transform: scale(1) rotate(0deg); filter: hue-rotate(0deg); }
    25% { transform: scale(1.1) rotate(90deg); filter: hue-rotate(60deg); }
    50% { transform: scale(0.9) rotate(180deg); filter: hue-rotate(120deg); }
    75% { transform: scale(1.05) rotate(270deg); filter: hue-rotate(180deg); }
    100% { transform: scale(1) rotate(360deg); filter: hue-rotate(360deg); }
}

.hero-product.style-25::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        conic-gradient(from 0deg at 50% 50%,
            rgba(0, 191, 255, 0.1),
            rgba(138, 43, 226, 0.08),
            rgba(255, 20, 147, 0.06),
            rgba(0, 191, 255, 0.1));
    opacity: 0.5;
    animation: chaosRotate 30s linear infinite;
}

@keyframes chaosRotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-product.style-25 .text-gray-600,
.hero-product.style-25 .text-gray-700,
.hero-product.style-25 .text-gray-900 {
    color: rgba(255, 255, 255, 0.9) !important;
}

.hero-product.style-25 .hero-title-product {
    color: #00bfff !important;
    text-shadow: 0 0 25px rgba(0, 191, 255, 0.6);
}

/* Common styles for new dark themes (19-25) */
.hero-product.style-19 .btn-product-secondary,
.hero-product.style-20 .btn-product-secondary,
.hero-product.style-21 .btn-product-secondary,
.hero-product.style-22 .btn-product-secondary,
.hero-product.style-23 .btn-product-secondary,
.hero-product.style-24 .btn-product-secondary,
.hero-product.style-25 .btn-product-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.hero-product.style-19 .btn-product-secondary:hover,
.hero-product.style-20 .btn-product-secondary:hover,
.hero-product.style-21 .btn-product-secondary:hover,
.hero-product.style-22 .btn-product-secondary:hover,
.hero-product.style-23 .btn-product-secondary:hover,
.hero-product.style-24 .btn-product-secondary:hover,
.hero-product.style-25 .btn-product-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.hero-product.style-19 .stat-card-product,
.hero-product.style-20 .stat-card-product,
.hero-product.style-21 .stat-card-product,
.hero-product.style-22 .stat-card-product,
.hero-product.style-23 .stat-card-product,
.hero-product.style-24 .stat-card-product,
.hero-product.style-25 .stat-card-product {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.hero-product.style-19 .stat-label-product,
.hero-product.style-20 .stat-label-product,
.hero-product.style-21 .stat-label-product,
.hero-product.style-22 .stat-label-product,
.hero-product.style-23 .stat-label-product,
.hero-product.style-24 .stat-label-product,
.hero-product.style-25 .stat-label-product {
    color: rgba(255, 255, 255, 0.9) !important;
}

/* ========== 科技感配色方案系列 ========== */

/* Style 26: 爱特曼蓝 - Atman Logo Blue */
.hero-product.style-26 {
    background: linear-gradient(135deg, #001529 0%, #0a1628 25%, #1890FF 50%, #40a9ff 75%, #69c0ff 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-26::before,
.hero-product.style-26::after {
    display: none;
}

.hero-product.style-26::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(24, 144, 255, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(64, 169, 255, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(14, 126, 224, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(105, 192, 255, 0.1) 0%, transparent 45%);
    opacity: 1;
    animation: techPulse 8s ease-in-out infinite;
}

@keyframes techPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-product.style-26 .text-gray-600,
.hero-product.style-26 .text-gray-700,
.hero-product.style-26 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-26 .hero-title-product {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(24, 144, 255, 0.6);
}

.hero-product.style-26 .btn-product-secondary {
    background: rgba(24, 144, 255, 0.15);
    color: white;
    border-color: rgba(24, 144, 255, 0.4);
    backdrop-filter: blur(10px);
}

.hero-product.style-26 .btn-product-secondary:hover {
    background: rgba(24, 144, 255, 0.25);
    border-color: rgba(24, 144, 255, 0.6);
    box-shadow: 0 0 15px rgba(24, 144, 255, 0.3);
}

.hero-product.style-26 .stat-card-product {
    background: rgba(24, 144, 255, 0.08);
    border-color: rgba(24, 144, 255, 0.25);
    backdrop-filter: blur(10px);
}

.hero-product.style-26 .stat-number-product {
    color: #40a9ff !important;
    text-shadow: 0 0 10px rgba(64, 169, 255, 0.6);
}

/* Style 27: 医学绿 - Medical Green */
.hero-product.style-27 {
    background: linear-gradient(135deg, #0d2818 0%, #1a3d2e 25%, #52C41A 50%, #73d13d 75%, #95de64 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-27::before,
.hero-product.style-27::after {
    display: none;
}

.hero-product.style-27::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(82, 196, 26, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(115, 209, 61, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(149, 222, 100, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(82, 196, 26, 0.1) 0%, transparent 45%);
    opacity: 1;
    animation: techPulse 8s ease-in-out infinite;
}

.hero-product.style-27 .text-gray-600,
.hero-product.style-27 .text-gray-700,
.hero-product.style-27 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-27 .hero-title-product {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(82, 196, 26, 0.6);
}

.hero-product.style-27 .btn-product-secondary {
    background: rgba(82, 196, 26, 0.15);
    color: white;
    border-color: rgba(82, 196, 26, 0.4);
    backdrop-filter: blur(10px);
}

.hero-product.style-27 .btn-product-secondary:hover {
    background: rgba(82, 196, 26, 0.25);
    border-color: rgba(82, 196, 26, 0.6);
    box-shadow: 0 0 15px rgba(82, 196, 26, 0.3);
}

.hero-product.style-27 .stat-card-product {
    background: rgba(82, 196, 26, 0.08);
    border-color: rgba(82, 196, 26, 0.25);
    backdrop-filter: blur(10px);
}

.hero-product.style-27 .stat-number-product {
    color: #73d13d !important;
    text-shadow: 0 0 10px rgba(115, 209, 61, 0.6);
}

/* Style 28: 深空蓝 - Deep Space Blue */
.hero-product.style-28 {
    background: linear-gradient(135deg, #030712 0%, #0f172a 25%, #1e3a8a 50%, #3730a3 75%, #4338ca 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-28::before,
.hero-product.style-28::after {
    display: none;
}

.hero-product.style-28::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(30, 58, 138, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(55, 48, 163, 0.25) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(67, 56, 202, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(99, 102, 241, 0.15) 0%, transparent 45%);
    opacity: 1;
    animation: deepSpaceFloat 12s ease-in-out infinite;
}

@keyframes deepSpaceFloat {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-10px) scale(1.05); }
}

.hero-product.style-28 .text-gray-600,
.hero-product.style-28 .text-gray-700,
.hero-product.style-28 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-28 .hero-title-product {
    color: #ffffff !important;
    text-shadow: 0 0 25px rgba(99, 102, 241, 0.7);
}

.hero-product.style-28 .btn-product-secondary {
    background: rgba(99, 102, 241, 0.15);
    color: white;
    border-color: rgba(99, 102, 241, 0.4);
    backdrop-filter: blur(10px);
}

.hero-product.style-28 .btn-product-secondary:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.6);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
}

.hero-product.style-28 .stat-card-product {
    background: rgba(99, 102, 241, 0.08);
    border-color: rgba(99, 102, 241, 0.25);
    backdrop-filter: blur(10px);
}

.hero-product.style-28 .stat-number-product {
    color: #818cf8 !important;
    text-shadow: 0 0 12px rgba(129, 140, 248, 0.6);
}

/* Style 29: 翡翠青 - Emerald Cyan */
.hero-product.style-29 {
    background: linear-gradient(135deg, #042f2e 0%, #064e3b 25%, #059669 50%, #10b981 75%, #34d399 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-29::before,
.hero-product.style-29::after {
    display: none;
}

.hero-product.style-29::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(5, 150, 105, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(52, 211, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(5, 150, 105, 0.1) 0%, transparent 45%);
    opacity: 1;
    animation: emeraldFlow 10s ease-in-out infinite;
}

@keyframes emeraldFlow {
    0%, 100% { transform: rotate(0deg) scale(1); }
    50% { transform: rotate(2deg) scale(1.03); }
}

.hero-product.style-29 .text-gray-600,
.hero-product.style-29 .text-gray-700,
.hero-product.style-29 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-29 .hero-title-product {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(16, 185, 129, 0.6);
}

.hero-product.style-29 .btn-product-secondary {
    background: rgba(16, 185, 129, 0.15);
    color: white;
    border-color: rgba(16, 185, 129, 0.4);
    backdrop-filter: blur(10px);
}

.hero-product.style-29 .btn-product-secondary:hover {
    background: rgba(16, 185, 129, 0.25);
    border-color: rgba(16, 185, 129, 0.6);
    box-shadow: 0 0 15px rgba(16, 185, 129, 0.3);
}

.hero-product.style-29 .stat-card-product {
    background: rgba(16, 185, 129, 0.08);
    border-color: rgba(16, 185, 129, 0.25);
    backdrop-filter: blur(10px);
}

.hero-product.style-29 .stat-number-product {
    color: #34d399 !important;
    text-shadow: 0 0 10px rgba(52, 211, 153, 0.6);
}

/* Style 30: 紫罗兰科技 - Tech Violet */
.hero-product.style-30 {
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 25%, #7c3aed 50%, #8b5cf6 75%, #a78bfa 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-30::before,
.hero-product.style-30::after {
    display: none;
}

.hero-product.style-30::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(124, 58, 237, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(139, 92, 246, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(167, 139, 250, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(124, 58, 237, 0.1) 0%, transparent 45%);
    opacity: 1;
    animation: violetPulse 9s ease-in-out infinite;
}

@keyframes violetPulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.02); }
}

.hero-product.style-30 .text-gray-600,
.hero-product.style-30 .text-gray-700,
.hero-product.style-30 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-30 .hero-title-product {
    color: #ffffff !important;
    text-shadow: 0 0 22px rgba(139, 92, 246, 0.6);
}

.hero-product.style-30 .btn-product-secondary {
    background: rgba(139, 92, 246, 0.15);
    color: white;
    border-color: rgba(139, 92, 246, 0.4);
    backdrop-filter: blur(10px);
}

.hero-product.style-30 .btn-product-secondary:hover {
    background: rgba(139, 92, 246, 0.25);
    border-color: rgba(139, 92, 246, 0.6);
    box-shadow: 0 0 18px rgba(139, 92, 246, 0.3);
}

.hero-product.style-30 .stat-card-product {
    background: rgba(139, 92, 246, 0.08);
    border-color: rgba(139, 92, 246, 0.25);
    backdrop-filter: blur(10px);
}

.hero-product.style-30 .stat-number-product {
    color: #a78bfa !important;
    text-shadow: 0 0 12px rgba(167, 139, 250, 0.6);
}

/* Style 31: 橙色科技 - Tech Orange */
.hero-product.style-31 {
    background: linear-gradient(135deg, #431407 0%, #7c2d12 25%, #ea580c 50%, #f97316 75%, #fb923c 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-31::before,
.hero-product.style-31::after {
    display: none;
}

.hero-product.style-31::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(234, 88, 12, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(249, 115, 22, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(251, 146, 60, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(234, 88, 12, 0.1) 0%, transparent 45%);
    opacity: 1;
    animation: orangeGlow 11s ease-in-out infinite;
}

@keyframes orangeGlow {
    0%, 100% { opacity: 0.85; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.04); }
}

.hero-product.style-31 .text-gray-600,
.hero-product.style-31 .text-gray-700,
.hero-product.style-31 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-31 .hero-title-product {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(249, 115, 22, 0.6);
}

.hero-product.style-31 .btn-product-secondary {
    background: rgba(249, 115, 22, 0.15);
    color: white;
    border-color: rgba(249, 115, 22, 0.4);
    backdrop-filter: blur(10px);
}

.hero-product.style-31 .btn-product-secondary:hover {
    background: rgba(249, 115, 22, 0.25);
    border-color: rgba(249, 115, 22, 0.6);
    box-shadow: 0 0 16px rgba(249, 115, 22, 0.3);
}

.hero-product.style-31 .stat-card-product {
    background: rgba(249, 115, 22, 0.08);
    border-color: rgba(249, 115, 22, 0.25);
    backdrop-filter: blur(10px);
}

.hero-product.style-31 .stat-number-product {
    color: #fb923c !important;
    text-shadow: 0 0 10px rgba(251, 146, 60, 0.6);
}

/* Style 32: 玫红科技 - Tech Rose */
.hero-product.style-32 {
    background: linear-gradient(135deg, #500724 0%, #881337 25%, #e11d48 50%, #f43f5e 75%, #fb7185 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero-product.style-32::before,
.hero-product.style-32::after {
    display: none;
}

.hero-product.style-32::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 50%, rgba(225, 29, 72, 0.25) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(244, 63, 94, 0.2) 0%, transparent 40%),
        radial-gradient(circle at 40% 80%, rgba(251, 113, 133, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(225, 29, 72, 0.1) 0%, transparent 45%);
    opacity: 1;
    animation: rosePulse 8s ease-in-out infinite;
}

@keyframes rosePulse {
    0%, 100% { opacity: 0.8; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.03); }
}

.hero-product.style-32 .text-gray-600,
.hero-product.style-32 .text-gray-700,
.hero-product.style-32 .text-gray-900 {
    color: rgba(255, 255, 255, 0.95) !important;
}

.hero-product.style-32 .hero-title-product {
    color: #ffffff !important;
    text-shadow: 0 0 20px rgba(244, 63, 94, 0.6);
}

.hero-product.style-32 .btn-product-secondary {
    background: rgba(244, 63, 94, 0.15);
    color: white;
    border-color: rgba(244, 63, 94, 0.4);
    backdrop-filter: blur(10px);
}

.hero-product.style-32 .btn-product-secondary:hover {
    background: rgba(244, 63, 94, 0.25);
    border-color: rgba(244, 63, 94, 0.6);
    box-shadow: 0 0 15px rgba(244, 63, 94, 0.3);
}

.hero-product.style-32 .stat-card-product {
    background: rgba(244, 63, 94, 0.08);
    border-color: rgba(244, 63, 94, 0.25);
    backdrop-filter: blur(10px);
}

.hero-product.style-32 .stat-number-product {
    color: #fb7185 !important;
    text-shadow: 0 0 10px rgba(251, 113, 133, 0.6);
}

/* Common styles for all new tech color themes */
.hero-product.style-26 .btn-product-secondary,
.hero-product.style-27 .btn-product-secondary,
.hero-product.style-28 .btn-product-secondary,
.hero-product.style-29 .btn-product-secondary,
.hero-product.style-30 .btn-product-secondary,
.hero-product.style-31 .btn-product-secondary,
.hero-product.style-32 .btn-product-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-product.style-26 .btn-product-secondary:hover,
.hero-product.style-27 .btn-product-secondary:hover,
.hero-product.style-28 .btn-product-secondary:hover,
.hero-product.style-29 .btn-product-secondary:hover,
.hero-product.style-30 .btn-product-secondary:hover,
.hero-product.style-31 .btn-product-secondary:hover,
.hero-product.style-32 .btn-product-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

.hero-product.style-26 .stat-card-product,
.hero-product.style-27 .stat-card-product,
.hero-product.style-28 .stat-card-product,
.hero-product.style-29 .stat-card-product,
.hero-product.style-30 .stat-card-product,
.hero-product.style-31 .stat-card-product,
.hero-product.style-32 .stat-card-product {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-product.style-26 .stat-card-product:hover,
.hero-product.style-27 .stat-card-product:hover,
.hero-product.style-28 .stat-card-product:hover,
.hero-product.style-29 .stat-card-product:hover,
.hero-product.style-30 .stat-card-product:hover,
.hero-product.style-31 .stat-card-product:hover,
.hero-product.style-32 .stat-card-product:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.hero-product.style-26 .stat-label-product,
.hero-product.style-27 .stat-label-product,
.hero-product.style-28 .stat-label-product,
.hero-product.style-29 .stat-label-product,
.hero-product.style-30 .stat-label-product,
.hero-product.style-31 .stat-label-product,
.hero-product.style-32 .stat-label-product {
    color: rgba(255, 255, 255, 0.9) !important;
}