       :root {
            --primary-color: #B08AFB;
            --primary-dark: #938AFB;
            --primary-light: #E6F0FF;
            --gradient-start: #B08AFB;
            --gradient-end: #938AFB;
            --gradient-purple: #938AFB;
            --text-primary: #0F172A;
            --text-secondary: #475569;
            --text-light: #94A3B8;
            --bg-light: #F8FAFC;
            --bg-dark: #0F172A;
            --border-color: #E2E8F0;
            --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.05);
            --shadow-md: 0 4px 20px rgba(176, 138, 251, 0.08);
            --shadow-lg: 0 20px 40px rgba(176, 138, 251, 0.12);
            --shadow-glow: 0 0 40px rgba(176, 138, 251, 0.15);
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 20px;
            --radius-xl: 28px;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            color: var(--text-primary);
            line-height: 1.6;
            overflow-x: hidden;
            background: #FFFFFF;
        }

        /* Hero Section */
        .hero-section {
            position: relative;
            min-height: 800px;
            background: url('/images/new/dataagent_h2.jpg') center center / cover no-repeat;
            padding: 140px 20px 100px;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
        }

        .hero-section::after {
            display: none;
        }

        @keyframes float {
            0%, 100% { transform: translate(0, 0); }
            50% { transform: translate(30px, 30px); }
        }

        .hero-content {
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
            z-index: 1;
            text-align: left;
            padding-left: 0px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }

        .hero-text {
            max-width: 480px;
            flex-shrink: 0;
        }

        .hero-content > * {
            max-width: 50%;
        }

        .hero-image {
            position: relative;
            z-index: 1;
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: flex-end;
            max-width: none;
        }

        .hero-image-top {
            position: absolute;
            margin-top: -168px;
            margin-left: 120px;
            z-index: 2;
        }

        .hero-image-top::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 720px;
            height: 438px;
            background: rgba(226, 224, 253, 0.8);
            border-radius: 16px;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
            z-index: -1;
        }

        .hero-image-top img {
            width: auto;
            height: auto;
            display: block;
            position: relative;
            z-index: 1;
        }

        .hero-image-main {
            width: 100%;
            max-width: 1000px;
        }

        .hero-image-main img {
            width: 100%;
            height: auto;
            display: block;
        }

        .hero-title {
            font-size: 56px;
            font-weight: 600;
            color: #233863;
            margin-bottom: 28px;
            line-height: 1.2;
            letter-spacing: -0.02em;
        }

        .hero-subtitle {
            width: 620px;
            font-size: 20px;
            color:#233863;
            max-width: 900px;
            margin: 0 0 48px;
            line-height: 1.8;
            font-weight: 400;
        }

        .hero-cta {
            display: inline-flex;
            gap: 20px;
            flex-wrap: wrap;
            justify-content: flex-start;
        }

        .btn {
            padding: 16px 40px;
            border-radius: var(--radius-md);
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: none;
            text-decoration: none;
            display: inline-block;
            position: relative;
            overflow: hidden;
        }

        .btn::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 0;
            height: 0;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.2);
            transform: translate(-50%, -50%);
            transition: width 0.6s, height 0.6s;
        }

        .btn:hover::before {
            width: 300px;
            height: 300px;
        }

        .btn-primary {
            width: 180px;
            height: 52px;
            padding: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #B08AFB, #938AFB);
            color: #FFFFFF;
            box-shadow: 0 8px 24px rgba(176, 138, 251, 0.3);
        }

        .btn-primary:hover {
            transform: translateY(-3px);
            box-shadow: 0 12px 32px rgba(176, 138, 251, 0.5);
            background: linear-gradient(135deg, #C09AFB, #A39AFB);
        }

        .btn-secondary {
            background: rgba(255, 255, 255, 0.1);
            color: #FFFFFF;
            border: 2px solid rgba(255, 255, 255, 0.3);
            backdrop-filter: blur(10px);
        }

        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.15);
            border-color: rgba(255, 255, 255, 0.5);
            transform: translateY(-3px);
        }

        /* Section Common Styles */
        .section {
            padding: 100px 20px;
            position: relative;
            overflow: hidden;
        }

        .section-light {
            background: #FFFFFF;
        }

        .section-gray {
            background: var(--bg-light);
            background-image: radial-gradient(circle at 20% 50%, rgba(176, 138, 251, 0.03) 0%, transparent 50%),
                              radial-gradient(circle at 80% 20%, rgba(147, 138, 251, 0.03) 0%, transparent 50%);
        }

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

        .section-header {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title {
            font-size: 44px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
            letter-spacing: -0.02em;
            position: relative;
            display: inline-block;
        }

        .section-title::after {
            content: '';
            position: absolute;
            bottom: -12px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #B08AFB, #938AFB);
            border-radius: 2px;
        }

        .section-subtitle {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 800px;
            margin: 24px auto 0;
            line-height: 1.8;
        }

        /* Product Intro Section */
        .intro-card {
            background: linear-gradient(135deg, #FFFFFF 0%, #F8FAFC 100%);
            border-radius: var(--radius-xl);
            padding: 56px;
            box-shadow: var(--shadow-md);
            line-height: 2;
            font-size: 18px;
            color: var(--text-secondary);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .intro-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 4px;
            background: linear-gradient(90deg, #B08AFB, #938AFB, #938AFB);
        }

        /* Advantages Grid - Infinite Scroll with Fade Edges */
        .advantages-container {
            position: relative;
            max-width: 1260px;
            margin: 0 auto;
            padding: 40px 0;
            overflow: hidden;
        }

        /* 背景联动光斑 */
        .advantages-bg-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(176, 138, 251, 0.12), rgba(147, 138, 251, 0.06) 40%, transparent 70%);
            border-radius: 50%;
            filter: blur(60px);
            transform: translate(-50%, -50%);
            pointer-events: none;
            animation: glowBreathe 4s ease-in-out infinite;
        }

        @keyframes glowBreathe {
            0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
            50% { opacity: 1; transform: translate(-50%, -50%) scale(1.1); }
        }

        .advantages-viewport {
            position: relative;
            overflow: hidden;
            padding: 20px 0 40px 0; /* 上20px，下40px，给卡片阴影留出足够空间 */
            margin: -20px 0 -40px 0; /* 抵消padding，保持整体高度不变 */
        }

        /* Fade Edges - 自然渐隐边缘 */
        .advantages-viewport::before,
        .advantages-viewport::after {
            content: '';
            position: absolute;
            top: 0;
            width: 120px;
            height: 100%;
            z-index: 2;
            pointer-events: none;
        }

        .advantages-viewport::before {
            left: 0;
            background: linear-gradient(90deg, var(--bg-light) 0%, rgba(248, 250, 252, 0.8) 30%, transparent 100%);
        }

        .advantages-viewport::after {
            right: 0;
            background: linear-gradient(-90deg, var(--bg-light) 0%, rgba(248, 250, 252, 0.8) 30%, transparent 100%);
        }

        /* 切换按钮 */
        .advantages-nav-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.95);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            z-index: 3;
            transition: all 0.3s ease;
        }

        .advantages-nav-btn:hover {
            background: #FFFFFF;
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
        }

        .advantages-nav-btn:active {
            transform: translateY(-50%) scale(0.92);
        }

        .advantages-nav-btn svg {
            width: 20px;
            height: 20px;
            stroke: var(--text-secondary);
            fill: none;
            stroke-width: 2;
            stroke-linecap: round;
            stroke-linejoin: round;
            transition: stroke 0.3s ease;
        }

        .advantages-nav-btn:hover svg {
            stroke: var(--primary-color);
        }

        .advantages-nav-prev {
            left: 16px;
        }

        .advantages-nav-next {
            right: 16px;
        }

        .advantages-track {
            display: flex;
            gap: 32px;
            will-change: transform;
            transition: none;
        }

        .advantage-card {
            min-width: 480px;
            max-width: 480px;
            background: rgba(255, 255, 255, 0.85);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            box-shadow: 0 4px 24px rgba(176, 138, 251, 0.06);
            transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid rgba(255, 255, 255, 0.6);
            position: relative;
            overflow: hidden;
            flex-shrink: 0;
        }

        .advantage-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle 200px at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(176, 138, 251, 0.08), transparent);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .advantage-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(176, 138, 251, 0.15);
            border-color: rgba(176, 138, 251, 0.3);
            background: rgba(255, 255, 255, 0.95);
        }

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

        /* 移除导航按钮和分页器 */
        .advantages-nav {
            display: none;
        }

        .advantage-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 24px;
            position: relative;
            box-shadow: var(--shadow-glow);
        }

        .advantage-icon::before {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            background: inherit;
            border-radius: inherit;
            filter: blur(20px);
            opacity: 0.5;
            z-index: -1;
        }

        .advantage-icon svg {
            width: 32px;
            height: 32px;
            stroke: #FFFFFF;
            stroke-width: 2;
            fill: none;
        }

        .advantage-title {
            font-size: 22px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
            line-height: 1.4;
        }

        .advantage-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* Features Section */
        .features-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }

        .feature-item {
            background: #FFFFFF;
            border-radius: var(--radius-lg);
            padding: 48px;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
        }

        .feature-item::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            width: 4px;
            height: 0;
            background: linear-gradient(180deg, #B08AFB, #938AFB);
            transition: height 0.4s ease;
        }

        .feature-item:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--primary-color);
            transform: translateX(4px);
        }

        .feature-item:hover::before {
            height: 100%;
        }

        .feature-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 20px;
        }

        .feature-number {
            width: 48px;
            height: 48px;
            background: linear-gradient(135deg, #B08AFB, #938AFB);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #FFFFFF;
            font-weight: 700;
            font-size: 20px;
            flex-shrink: 0;
            box-shadow: 0 4px 12px rgba(176, 138, 251, 0.25);
        }

        .feature-title {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .feature-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.9;
            margin-left: 68px;
        }

        /* Scenarios Section - Gallery Mode with Slide */
        .scenarios-container {
            position: relative;
            max-width: 1260px;
            margin: 0 auto;
            padding: 20px 0;
        }

        .scenarios-viewport {
            position: relative;
            overflow: hidden;
        }

        .scenarios-track {
            display: flex;
            gap: 32px;
            transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .scenario-card {
            min-width: 380px;
            max-width: 380px;
            flex-shrink: 0;
            background: #FFFFFF;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            cursor: pointer;
            border: 1px solid var(--border-color);
            position: relative;
        }

        .scenario-card::after {
            content: '';
            position: absolute;
            bottom: -30px;
            right: -30px;
            width: 180px;
            height: 180px;
            background: radial-gradient(circle, rgba(176, 138, 251, 0.35), rgba(147, 138, 251, 0.15) 40%, transparent 70%);
            border-radius: 50%;
            filter: blur(30px);
            opacity: 0;
            transition: opacity 0.5s ease;
            pointer-events: none;
        }

        .scenario-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
        }

        .scenario-card:hover::after {
            opacity: 1;
        }

        /* 导航按钮 */
        .scenarios-nav {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-top: 40px;
        }

        .scenarios-nav-btn {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: #FFFFFF;
            border: 1px solid var(--border-color);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s ease;
            color: var(--text-secondary);
        }

        .scenarios-nav-btn:hover:not(:disabled) {
            border-color: var(--primary-color);
            background: rgba(176, 138, 251, 0.05);
            color: var(--primary-color);
            transform: scale(1.1);
        }

        .scenarios-nav-btn:disabled {
            opacity: 0.3;
            cursor: not-allowed;
        }

        .scenarios-nav-btn svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
            stroke-width: 2;
            fill: none;
        }

        .scenario-header {
            background: linear-gradient(135deg, var(--bg-dark) 0%, #1E293B 100%);
            padding: 32px;
            color: #FFFFFF;
            position: relative;
            overflow: hidden;
        }

        .scenario-header::before {
            content: '';
            position: absolute;
            top: -50%;
            right: -20%;
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(176, 138, 251, 0.2) 0%, transparent 70%);
            border-radius: 50%;
        }

        .scenario-title {
            font-size: 22px;
            font-weight: 600;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .scenario-label {
            font-size: 13px;
            opacity: 0.7;
            text-transform: uppercase;
            letter-spacing: 0.05em;
            position: relative;
            z-index: 1;
        }

        .scenario-body {
            padding: 32px;
        }

        .scenario-section {
            margin-bottom: 24px;
        }

        .scenario-section:last-child {
            margin-bottom: 0;
        }

        .scenario-section-title {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
            text-transform: uppercase;
            letter-spacing: 0.05em;
        }

        .scenario-section-content {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        .scenario-value {
            background: #F5F4FF;
            padding: 16px 20px;
            border-radius: var(--radius-sm);
            font-size: 14px;
            color: var(--primary-dark);
            font-weight: 600;
            border-left: 3px solid var(--primary-color);
        }

        /* Customers Section */
        .customers-intro {
            text-align: center;
            font-size: 20px;
            color: var(--text-secondary);
            margin-bottom: 56px;
            line-height: 1.8;
            font-weight: 500;
        }

        /* Customers Marquee */
        .customers-marquee-container {
            position: relative;
            overflow: hidden;
            padding: 60px 0;
            margin: 0 -20px;
        }

        .customers-marquee {
            display: flex;
            gap: 32px;
            cursor: grab;
            user-select: none;
            scroll-snap-type: x mandatory;
            overflow-x: auto;
            scrollbar-width: none;
            -ms-overflow-style: none;
            padding: 0 20px;
        }

        .customers-marquee::-webkit-scrollbar {
            display: none;
        }

        .customers-marquee.dragging {
            cursor: grabbing;
            scroll-snap-type: none;
        }

        .customers-marquee.paused {
            animation-play-state: paused !important;
        }

        .customers-track {
            display: flex;
            gap: 32px;
            animation: marqueeScroll 40s linear infinite;
        }

        .customers-track.paused {
            animation-play-state: paused;
        }

        @keyframes marqueeScroll {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .customer-card {
            min-width: 380px;
            max-width: 380px;
            background: #FFFFFF;
            border-radius: var(--radius-lg);
            padding: 40px;
            box-shadow: var(--shadow-sm);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid var(--border-color);
            position: relative;
            overflow: hidden;
            scroll-snap-align: center;
            flex-shrink: 0;
        }

        .customer-card:nth-child(odd) {
            transform: rotate(-1deg);
            margin-top: 20px;
        }

        .customer-card:nth-child(even) {
            transform: rotate(1deg);
            margin-bottom: 20px;
        }

        .customer-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, #B08AFB, #938AFB);
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .customer-card:hover {
            transform: rotate(0deg) translateY(-8px) scale(1.02);
            box-shadow: var(--shadow-lg);
            border-color: var(--primary-color);
            z-index: 10;
        }

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

        .customer-name {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .customer-quote-icon {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
        }

        .customer-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.9;
        }

        .customer-highlight {
            display: inline-block;
            background: linear-gradient(135deg, #B08AFB, #938AFB);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 700;
            font-size: 18px;
        }

        /* Logos Section */
        .logos-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            align-items: center;
            justify-items: center;
        }

        .logo-item {
            width: 100%;
            height: 100px;
            background: #FFFFFF;
            border-radius: var(--radius-md);
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            padding: 20px;
            border: 1px solid var(--border-color);
        }

        .logo-item:hover {
            transform: translateY(-4px) scale(1.03);
            box-shadow: var(--shadow-md);
            border-color: var(--primary-color);
            background: linear-gradient(135deg, #FFFFFF, rgba(176, 138, 251, 0.03));
        }

        .logo-placeholder {
            font-size: 14px;
            color: var(--text-light);
            text-align: center;
            font-weight: 500;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .hero-section {
                padding: 100px 20px 60px;
            }

            .hero-content {
                padding-left: 0;
                flex-direction: column;
                gap: 40px;
            }

            .hero-text {
                max-width: 100%;
            }

            .hero-content > * {
                max-width: 100%;
            }

            .hero-image {
                max-width: 100%;
            }

            .hero-image-top {
                position: static;
                margin-bottom: 20px;
            }

            .hero-image-top img {
                max-width: 200px;
            }

            .hero-title {
                font-size: 36px;
            }

            .hero-subtitle {
                font-size: 17px;
                width: 100%;
            }

            .hero-cta {
                justify-content: flex-start;
            }

            .section-title {
                font-size: 32px;
            }

            .section {
                padding: 60px 20px;
            }

            .intro-card {
                padding: 36px 28px;
            }

            .advantages-slide {
                grid-template-columns: 1fr;
            }

            .scenario-card {
                min-width: 100%;
            }

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

            .feature-desc {
                margin-left: 0;
                margin-top: 16px;
            }

            .logos-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .advantage-card,
            .feature-item,
            .customer-card {
                padding: 32px 24px;
            }

            .advantage-card {
                min-width: 320px;
                max-width: 320px;
            }

            .advantages-nav-btn {
                width: 40px;
                height: 40px;
            }

            .advantages-nav-prev {
                left: 8px;
            }

            .advantages-nav-next {
                right: 8px;
            }
        }

        /* Animation */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(40px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .fade-in-up {
            animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        /* Decorative Elements */
        .section-light::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 1px;
            height: 100px;
            background: linear-gradient(180deg, transparent, var(--border-color), transparent);
        }

        /* Floating Decorative Orbs */
        .deco-orb {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            opacity: 0.4;
            filter: blur(60px);
            animation: orbFloat 8s ease-in-out infinite;
        }

        .deco-orb-1 {
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(176, 138, 251, 0.15), transparent 70%);
            top: 10%;
            right: -100px;
            animation-delay: 0s;
        }

        .deco-orb-2 {
            width: 200px;
            height: 200px;
            background: radial-gradient(circle, rgba(147, 138, 251, 0.12), transparent 70%);
            bottom: 20%;
            left: -60px;
            animation-delay: -3s;
        }

        .deco-orb-3 {
            width: 250px;
            height: 250px;
            background: radial-gradient(circle, rgba(176, 138, 251, 0.1), transparent 70%);
            top: 50%;
            left: 60%;
            animation-delay: -5s;
        }

        @keyframes orbFloat {
            0%, 100% { transform: translate(0, 0) scale(1); }
            33% { transform: translate(20px, -20px) scale(1.05); }
            66% { transform: translate(-15px, 15px) scale(0.95); }
        }

        /* Decorative Grid Pattern */
        .deco-grid {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image:
                linear-gradient(rgba(176, 138, 251, 0.03) 1px, transparent 1px),
                linear-gradient(90deg, rgba(176, 138, 251, 0.03) 1px, transparent 1px);
            background-size: 60px 60px;
            pointer-events: none;
        }

        /* Decorative Dots */
        .deco-dots {
            position: absolute;
            width: 120px;
            height: 120px;
            background-image: radial-gradient(circle, rgba(176, 138, 251, 0.2) 1.5px, transparent 1.5px);
            background-size: 16px 16px;
            pointer-events: none;
            opacity: 0.6;
        }

        /* Section Divider */
        .section-divider {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-color), transparent);
            margin: 0 auto;
        }

        /* Logos Section */
        .logos-section {
            padding: 80px 20px;
            position: relative;
            background: var(--bg-light);
            border-top: 1px solid var(--border-color);
        }

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