@media(min-width: 992px){
    nav.fixed-top:not(.show-menu) .bg-wrap{
        opacity: 0 !important;
    }
}
nav.sticky-top.fixed-top:not(.show-menu) .bg-wrap, nav.fixed-top.sticky-top:not(.show-menu) .bg-wrap{
   opacity: 1 !important;
}
#nav-logo-menu-btn .bg-wrap {
	background: linear-gradient(to bottom, #f5f8fd, #f5f8fd);}
        #hero-section-retro {
            --color-1: 271, 91%, 65%;
            --color-2: 211, 90%, 65%;
            --color-3: 31, 90%, 65%;
            --color-4: 168, 90%, 65%;
            --color-5: 321, 90%, 65%;
            --primary-color: #4171ff;
            --secondary-color: #f64f02;
        }
        
        /* CTA Buttons Container */
        #hero-section-retro .cta-buttons-container {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 16px;
            margin-top: 10px;
            flex-wrap: wrap;
        }
        
        /* Primary Rainbow Button */
        #hero-section-retro .rainbow-button-container {
            display: inline-flex;
            height: 48px;
            border-radius: 9999px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            padding: 0 32px;
            border: calc(0.08 * 1rem) solid transparent;
            background-size: 200%;
            background-clip: padding-box, border-box, border-box;
            background-origin: border-box;
            background-image: 
                linear-gradient(#121213, #121213),
                linear-gradient(#121213 50%, rgba(18,18,19,0.6) 80%, rgba(18,18,19,0)),
                linear-gradient(90deg,
                    hsl(var(--color-1)),
                    hsl(var(--color-5)),
                    hsl(var(--color-3)),
                    hsl(var(--color-4)),
                    hsl(var(--color-2))
                );
            transition: all 0.3s ease;
            position: relative;
            text-decoration: none;
        }
        
        #hero-section-retro .rainbow-button-container::before {
            content: '';
            position: absolute;
            bottom: -20%;
            left: 50%;
            z-index: -1;
            height: 20%;
            width: 60%;
            transform: translateX(-50%);
            background: linear-gradient(90deg,
                hsl(var(--color-1)),
                hsl(var(--color-5)),
                hsl(var(--color-3)),
                hsl(var(--color-4)),
                hsl(var(--color-2))
            );
            filter: blur(calc(0.8 * 1rem));
            animation: rainbow 8s linear infinite;
        }
        
        #hero-section-retro .rainbow-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
            padding: 0;
            cursor: pointer;
            width: 100%;
        }
        
        #hero-section-retro .button-content {
            display: inline-flex;
            align-items: center;
            color: white;
            font-weight: 600;
            font-size: 1rem;
            transition: opacity 0.3s ease;
        }
        
        #hero-section-retro .button-content svg {
            width: 16px;
            height: 16px;
            margin-left: 8px;
            stroke: currentColor;
            stroke-width: 2;
        }
        
        #hero-section-retro .rainbow-button-container:hover .button-content {
            opacity: 0.8;
        }
        
        @keyframes rainbow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Secondary CTA Button */
        #hero-section-retro .secondary-cta-button {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            padding: 0 20px;
            border-radius: 9999px;
            background-color: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            text-decoration: none;
            transition: all 0.3s ease;
            backdrop-filter: blur(5px);
            -webkit-backdrop-filter: blur(5px);
        }
        
        #hero-section-retro .secondary-cta-button:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-2px);
        }
        
        #hero-section-retro .secondary-button-content {
            display: inline-flex;
            align-items: center;
            color: #333;
            font-weight: 500;
            font-size: 0.95rem;
        }
        
        #hero-section-retro .secondary-button-content svg {
            width: 16px;
            height: 16px;
            margin-right: 8px;
            stroke: var(--primary-color);
        }
        
        /* Responsive styles */
        @media (max-width: 768px) {
            #hero-section-retro .cta-buttons-container {
                flex-direction: column;
                gap: 12px;
            }
            
            #hero-section-retro .rainbow-button-container,
            #hero-section-retro .secondary-cta-button {
                width: 100%;
                max-width: 280px;
            }
            
            #hero-section-retro .rainbow-button-container {
                padding: 0 24px;
            }
            
            #hero-section-retro .button-content,
            #hero-section-retro .secondary-button-content {
                font-size: 0.9rem;
            }
        }
    
      #ai-maturity-timeline .bold-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        #ai-maturity-timeline .text-gradient-new {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        #ai-maturity-timeline {
            --color-1: 271, 91%, 65%;
            --color-2: 211, 90%, 65%;
            --color-3: 31, 90%, 65%;
            --color-4: 168, 90%, 65%;
            --color-5: 321, 90%, 65%;
            --primary-color: #4171ff;
            --secondary-color: #f64f02;
            background: linear-gradient(to bottom, #f5f8fd, #e2edfe);
        }

        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 1rem;
            position: relative;
            display: inline-block;
        }
        
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 3px;
            background: linear-gradient(90deg, #4171ff, #f64f02);
            border-radius: 2px;
        }

        /* Timeline Styles */
        .timeline {
            position: relative;
            padding-left: 2rem;
        }

        .timeline::before {
            content: '';
            position: absolute;
            left: 0;
            top: 0;
            height: 100%;
            width: 2px;
            background: linear-gradient(to bottom, #4171ff, #f64f02);
        }

        .timeline-item {
            position: relative;
            padding-bottom: 2rem;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -2rem;
            top: 0;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: white;
            border: 3px solid var(--primary-color);
            transform: translateX(-50%);
        }

        .level-badge {
            display: inline-block;
            background: linear-gradient(135deg, #4171ff, #f64f02);
            color: white;
            padding: 4px 12px;
            border-radius: 15px;
            font-weight: 600;
            font-size: 0.9rem;
            margin-bottom: 0.5rem;
        }

        .content {
            background: white;
            padding: 1.5rem;
            border-radius: 10px;
            box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }

        .content:hover {
            transform: translateX(5px);
        }

        .content h4 {
            color: #333;
            font-size: 1.1rem;
            margin: 0 0 1rem 0;
            font-weight: 600;
        }

        .maturity-details {
            display: flex;
            gap: 1.5rem;
        }

        .features, .action {
            flex: 1;
        }

        .features h5, .action h5 {
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            color: #718096;
            margin-bottom: 0.75rem;
        }

        .features ul {
            padding-left: 1.25rem;
            margin: 0;
        }

        .features li {
            color: #4a5568;
            font-size: 0.95rem;
            margin-bottom: 0.5rem;
            line-height: 1.5;
        }

        .action p {
            color: var(--secondary-color);
            font-weight: 500;
            font-size: 0.95rem;
            line-height: 1.5;
            margin: 0;
        }

        /* CTA Button Styles */
        .ai-steps__cta-wrapper {
            display: inline-flex;
            height: 44px;
            border-radius: 9999px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            padding: 0 32px;
            border: calc(0.08 * 1rem) solid transparent;
            background-size: 200%;
            background-clip: padding-box, border-box, border-box;
            background-origin: border-box;
            background-image: 
                linear-gradient(#121213, #121213),
                linear-gradient(#121213 50%, rgba(18,18,19,0.6) 80%, rgba(18,18,19,0)),
                linear-gradient(90deg,
                    hsl(var(--color-1)),
                    hsl(var(--color-5)),
                    hsl(var(--color-3)),
                    hsl(var(--color-4)),
                    hsl(var(--color-2))
                );
            position: relative;
            transition: all 0.3s ease;
        }

        .ai-steps__cta-wrapper::before {
            content: '';
            position: absolute;
            bottom: -20%;
            left: 50%;
            z-index: -1;
            height: 20%;
            width: 60%;
            transform: translateX(-50%);
            background: linear-gradient(90deg,
                hsl(var(--color-1)),
                hsl(var(--color-5)),
                hsl(var(--color-3)),
                hsl(var(--color-4)),
                hsl(var(--color-2))
            );
            filter: blur(calc(0.8 * 1rem));
            animation: rainbow 8s linear infinite;
        }

        .ai-steps__cta-button {
            background: transparent;
            border: none;
            padding: 0;
            cursor: pointer;
            width: fit-content;
        }

        .ai-steps__cta-content {
            display: inline-flex;
            align-items: center;
            color: white;
            font-weight: 500;
            gap: 8px;
        }

        .ai-steps__cta-content svg {
            width: 16px;
            height: 16px;
            stroke: currentColor;
        }

        @keyframes rainbow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.75rem;
            }

            .timeline {
                padding-left: 1.5rem;
            }

            .timeline-item::before {
                left: -1.5rem;
                width: 10px;
                height: 10px;
            }

            .content {
                padding: 1.25rem;
            }
            
            .maturity-details {
                flex-direction: column;
                gap: 1rem;
            }
            
            .ai-steps__cta-wrapper {
                padding: 0 20px;
                height: auto;
                min-height: 44px;
            }
            
            .ai-steps__cta-content {
                padding: 10px 0;
                font-size: 0.9rem;
                text-align: center;
                flex-wrap: wrap;
                justify-content: center;
            }
        }
    
     #slimai-offerings .conclusion-text {
    font-size: 1.2rem;
    color: #444;
    line-height: 1.6;
    font-weight: 500;
    margin: 40px 0 30px;
}
        #slimai-offerings {
            --color-1: 271, 91%, 65%;
            --color-2: 211, 90%, 65%;
            --color-3: 31, 90%, 65%;
            --color-4: 168, 90%, 65%;
            --color-5: 321, 90%, 65%;
            --primary-color: #4171ff;
            --secondary-color: #f64f02;
            position: relative;
            overflow: hidden;
        }

        #slimai-offerings .bg-wrap {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
        }

        #slimai-offerings .bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(248, 250, 252, 0.6), rgba(241, 245, 249, 0.6));
        }

        #slimai-offerings .bg:before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(120, 119, 198, 0.1) 1px, transparent 0);
            background-size: 20px 20px;
            opacity: 0.5;
        }
        
        /* Formula Box */
        #slimai-offerings .formula-box {
            background: rgba(255, 255, 255, 0.7);
            border-radius: 12px;
            padding: 18px 25px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
            max-width: 800px;
            margin: 0 auto;
            border: 1px solid rgba(255, 255, 255, 0.8);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        
        #slimai-offerings .formula-box:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
        }
        
        #slimai-offerings .formula-text {
            font-size: 1.3rem;
            font-weight: 500;
            color: #333;
            margin: 0;
            line-height: 1.4;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
            gap: 5px;
        }
        
        /* Dấu + và dấu = nét mỏng với gradient */
        #slimai-offerings .formula-symbol {
            font-weight: 300;
            margin: 0 6px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            position: relative;
            font-size: 1.5rem;
        }

        /* Typography */
        #slimai-offerings .bold-title {
            font-size: 2.5rem;
            font-weight: 700;
            color: #333;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }
        
        #slimai-offerings .text-gradient-new {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        #slimai-offerings .offering-title {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            position: relative;
            display: inline-block;
        }

        #slimai-offerings .separator-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #slimai-offerings .separator-line {
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        /* Service Flow - Sửa để 3 column có độ rộng bằng nhau */
        #slimai-offerings .service-flow-container {
            display: flex;
            justify-content: center;
            position: relative;
            width: 100%;
            gap: 30px;
        }
        
        #slimai-offerings .service-flow-item {
            display: flex;
            align-items: center;
            width: calc(33.333% - 20px); /* Chia đều 3 cột có khoảng cách 30px giữa chúng */
            position: relative;
        }
        
        #slimai-offerings .service-flow-item:last-child {
            margin-right: 0;
        }
        
        #slimai-offerings .service-flow-item:last-child .flow-arrow {
            display: none;
        }
        
        #slimai-offerings .flow-arrow {
            position: absolute;
            right: -27px; /* Đặt mũi tên ở ngoài các card */
            color: var(--secondary-color);
            animation: pulse 1.5s infinite ease-in-out;
            z-index: 1;
        }
        
        @keyframes pulse {
            0% { opacity: 0.5; transform: translateX(0); }
            50% { opacity: 1; transform: translateX(5px); }
            100% { opacity: 0.5; transform: translateX(0); }
        }

        /* Service Cards */
        #slimai-offerings .service-card {
            background-color: #fff;
            padding: 30px 20px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            height: 100%;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            width: 100%; /* Đảm bảo card chiếm hết chiều rộng của cột */
            text-align: center;
        }

        #slimai-offerings .service-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }
        
        #slimai-offerings .service-number-circle {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            transition: transform 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        #slimai-offerings .service-number-circle:before {
            content: '';
            position: absolute;
            inset: 2px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            z-index: 0;
        }
        
        #slimai-offerings .service-number-circle span {
            color: white;
            font-size: 2.5rem;
            font-weight: 700;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
        }
        
        #slimai-offerings .service-card:hover .service-number-circle {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        }

        #slimai-offerings .service-title {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin: 0 0 15px 0;
            line-height: 1.5;
        }
        
        #slimai-offerings .service-title a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
            position: relative;
        }
        
        #slimai-offerings .service-title a:after {
            content: '';
            position: absolute;
            bottom: -3px;
            left: 50%;
            width: 0;
            height: 2px;
            background: var(--secondary-color);
            transition: width 0.3s ease, left 0.3s ease;
            transform: translateX(-50%);
        }
        
        #slimai-offerings .service-title a:hover {
            color: var(--secondary-color);
        }
        
        #slimai-offerings .service-title a:hover:after {
            width: 100%;
        }
        
        #slimai-offerings .service-description {
            font-size: 0.95rem;
            color: #666;
            margin: 0;
            line-height: 1.5;
        }

        /* Product List */
        #slimai-offerings .product-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-bottom: 40px;
        }

        #slimai-offerings .product-item {
            display: flex;
            align-items: center;
            background-color: #fff;
            padding: 25px;
            border-radius: 12px;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        #slimai-offerings .product-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
        }

        #slimai-offerings .product-number {
            margin-right: 20px;
            flex-shrink: 0;
        }

        #slimai-offerings .product-item:hover .product-number {
            transform: scale(1.1);
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
        }

        #slimai-offerings .product-content {
            text-align: left;
            flex-grow: 1;
        }
        
        #slimai-offerings .product-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 10px;
            flex-wrap: wrap;
            gap: 10px;
        }

        #slimai-offerings .product-title {
            font-size: 1.3rem;
            font-weight: 600;
            color: #333;
            margin: 0;
            flex: 1;
            min-width: 200px;
        }

        #slimai-offerings .product-description {
            font-size: 1rem;
            color: #666;
            margin: 0;
            line-height: 1.5;
        }
        
        /* Gradient Border Button Styles */
        #slimai-offerings .gradient-border-button {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            background-color: white;
            color: #333;
            font-size: 14px;
            font-weight: 500;
            text-decoration: none;
            border-radius: 999px;
            position: relative;
            z-index: 1;
            transition: all 0.3s ease;
            text-align: center;
            min-width: 140px;
            gap: 6px;
        }
        
        #slimai-offerings .gradient-border-button::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 999px;
            padding: 1px;
            background: linear-gradient(90deg, #4171ff, #f64f02);
            -webkit-mask: 
                linear-gradient(#fff 0 0) content-box,
                linear-gradient(#fff 0 0);
            -webkit-mask-composite: xor;
            mask-composite: exclude;
            z-index: -1;
        }
        
        #slimai-offerings .gradient-border-button:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
        }
        
        #slimai-offerings .button-arrow {
            stroke: var(--secondary-color);
            transition: transform 0.3s ease;
        }
        
        #slimai-offerings .gradient-border-button:hover .button-arrow {
            transform: translateX(2px);
        }
        
        /* Rainbow Button CTA */
        #slimai-offerings .cta-container {
            margin-top: 50px;
        }
        
        #slimai-offerings .rainbow-button-container {
            display: inline-flex;
            height: 48px;
            border-radius: 9999px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            padding: 0 32px;
            font-medium: medium;
            border: calc(0.08 * 1rem) solid transparent;
            background-size: 200%;
            background-clip: padding-box, border-box, border-box;
            background-origin: border-box;
            background-image: 
                linear-gradient(#121213, #121213),
                linear-gradient(#121213 50%, rgba(18,18,19,0.6) 80%, rgba(18,18,19,0)),
                linear-gradient(90deg,
                    hsl(var(--color-1)),
                    hsl(var(--color-5)),
                    hsl(var(--color-3)),
                    hsl(var(--color-4)),
                    hsl(var(--color-2))
                );
            transition: all 0.3s ease;
            position: relative;
        }
        
        #slimai-offerings .rainbow-button-container::before {
            content: '';
            position: absolute;
            bottom: -20%;
            left: 50%;
            z-index: -1;
            height: 20%;
            width: 60%;
            transform: translateX(-50%);
            background: linear-gradient(90deg,
                hsl(var(--color-1)),
                hsl(var(--color-5)),
                hsl(var(--color-3)),
                hsl(var(--color-4)),
                hsl(var(--color-2))
            );
            filter: blur(calc(0.8 * 1rem));
            animation: rainbow 8s linear infinite;
        }
        
        #slimai-offerings .rainbow-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
            padding: 0;
            cursor: pointer;
            width: fit-content;
        }
        
        #slimai-offerings .button-content {
            display: inline-flex;
            align-items: center;
            color: white;
            font-weight: 500;
            font-size: 1rem;
            transition: opacity 0.3s ease;
        }
        
        #slimai-offerings .rainbow-button-container:hover .button-content {
            opacity: 0.8;
        }
        
        #slimai-offerings .button-content svg {
            width: 16px;
            height: 16px;
            margin-left: 8px;
            stroke: currentColor;
            stroke-width: 2;
        }
        
        @keyframes rainbow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Responsive */
        @media (max-width: 991px) {
            #slimai-offerings .service-flow-container {
                flex-direction: column;
                align-items: center;
                gap: 40px;
            }
            
            #slimai-offerings .service-flow-item {
                width: 100%;
                max-width: 450px;
            }
            
            #slimai-offerings .flow-arrow {
                position: relative;
                right: auto;
                transform: rotate(90deg);
                margin: 20px 0;
                display: block;
                text-align: center;
            }
            
            #slimai-offerings .service-flow-item:nth-child(1) .flow-arrow,
            #slimai-offerings .service-flow-item:nth-child(2) .flow-arrow {
                display: block;
                bottom: -40px;
            }
            
            @keyframes pulse {
                0% { opacity: 0.5; transform: rotate(90deg) translateX(0); }
                50% { opacity: 1; transform: rotate(90deg) translateX(5px); }
                100% { opacity: 0.5; transform: rotate(90deg) translateX(0); }
            }
        }
        
        @media (max-width: 768px) {
            #slimai-offerings .bold-title {
                font-size: 2rem;
            }
            
            #slimai-offerings .formula-text {
                font-size: 1.1rem;
            }
            
            #slimai-offerings .formula-symbol {
                font-size: 1.3rem;
                margin: 0 4px;
            }
            
            #slimai-offerings .offering-title {
                font-size: 1.5rem;
            }
            
            #slimai-offerings .service-number-circle {
                width: 70px;
                height: 70px;
            }
            
            #slimai-offerings .service-number-circle span {
                font-size: 2rem;
            }
            
            #slimai-offerings .service-title {
                font-size: 1rem;
            }
            
            #slimai-offerings .service-description {
                font-size: 0.9rem;
            }
            
            #slimai-offerings .product-item {
                flex-direction: column;
                align-items: center;
            }
            
            #slimai-offerings .product-number {
                margin-right: 0;
                margin-bottom: 15px;
            }
            
            #slimai-offerings .product-content {
                text-align: center;
                width: 100%;
            }
            
            #slimai-offerings .product-header {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            #slimai-offerings .product-title {
                text-align: center;
                margin-bottom: 10px;
            }
            
            #slimai-offerings .gradient-border-button {
                margin: 0 auto;
                font-size: 13px;
                padding: 6px 14px;
            }
            
            #slimai-offerings .rainbow-button-container {
                padding: 0 24px;
                height: 44px;
            }
            
            #slimai-offerings .button-content {
                font-size: 0.9rem;
            }
        }
    
        #why-choose-slimai {
            --color-1: 271, 91%, 65%;
            --color-2: 211, 90%, 65%;
            --color-3: 31, 90%, 65%;
            --color-4: 168, 90%, 65%;
            --color-5: 321, 90%, 65%;
            --primary-color: #4171ff;
            --secondary-color: #f64f02;
            position: relative;
            overflow: hidden;
            color: #333;
        }

        #why-choose-slimai .bg-wrap {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
        }

        #why-choose-slimai .bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(248, 250, 252, 0.6), rgba(241, 245, 249, 0.6));
        }

        #why-choose-slimai .bg:before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(120, 119, 198, 0.1) 1px, transparent 0);
            background-size: 20px 20px;
            opacity: 0.5;
        }

        /* Typography */
        #why-choose-slimai .bold-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        #why-choose-slimai .gradient-text {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }

        #why-choose-slimai .separator-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
            margin-bottom: 40px;
        }

        #why-choose-slimai .separator-line {
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        /* Comparison Container */
        #why-choose-slimai .comparison-container {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 16px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            margin-bottom: 40px;
            max-width: 900px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Header */
        #why-choose-slimai .comparison-header {
            display: flex;
            justify-content: center;
            background: rgba(255, 255, 255, 0.9);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            padding: 0;
        }

        #why-choose-slimai .comparison-option {
            flex: 1;
            padding: 20px;
            transition: all 0.3s ease;
            max-width: 400px;
        }

        #why-choose-slimai .comparison-option.active {
            background: rgba(246, 79, 2, 0.08);
        }

        #why-choose-slimai .comparison-icon {
            margin-bottom: 10px;
        }

        #why-choose-slimai .slimweb-icon {
            font-size: 2rem;
            color: #555;
        }

        #why-choose-slimai .comparison-option.active .slimweb-icon {
            color: var(--secondary-color);
        }

        #why-choose-slimai .comparison-option h3 {
            font-size: 1.2rem;
            margin: 0;
            font-weight: 500;
        }

        #why-choose-slimai .comparison-option.active h3 {
            color: var(--secondary-color);
        }

        /* Content */
        #why-choose-slimai .comparison-content {
            padding: 30px 20px;
        }

        #why-choose-slimai .comparison-row {
            display: flex;
            justify-content: center;
            margin-bottom: 15px;
            gap: 20px;
        }

        #why-choose-slimai .comparison-row:last-child {
            margin-bottom: 0;
        }

        #why-choose-slimai .comparison-card {
            flex: 1;
            display: flex;
            align-items: center;
            background: white;
            padding: 15px;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            max-width: 400px;
            width: 100%;
        }

        #why-choose-slimai .comparison-card.premium {
            background: rgba(246, 79, 2, 0.03);
        }

        #why-choose-slimai .comparison-card:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
        }

        #why-choose-slimai .check-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            margin-right: 12px;
            position: relative;
        }

        #why-choose-slimai .check-icon.basic {
            background: rgba(65, 113, 255, 0.1);
        }

        #why-choose-slimai .check-icon.premium {
            background: rgba(246, 79, 2, 0.1);
        }

        #why-choose-slimai .check-icon:before {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 16px;
            height: 16px;
            background-size: contain;
            background-repeat: no-repeat;
            background-position: center;
        }

        #why-choose-slimai .check-icon.basic:before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%234171ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        }

        #why-choose-slimai .check-icon.premium:before {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23f64f02' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
        }

        #why-choose-slimai .comparison-card p {
            margin: 0;
            font-size: 1rem;
            line-height: 1.4;
            text-align: left;
            white-space: nowrap;
        }

        #why-choose-slimai .comparison-card.premium p {
            font-weight: 500;
        }

        /* Conclusion */
        #why-choose-slimai .conclusion-text {
            font-size: 1.2rem;
            color: #444;
            line-height: 1.6;
            font-weight: 500;
            margin: 40px 0 30px;
        }

        /* Rainbow Button CTA */
        #why-choose-slimai .cta-container {
            margin-top: 20px;
        }
        
        #why-choose-slimai .rainbow-button-container {
            display: inline-flex;
            height: 48px;
            border-radius: 9999px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            padding: 0 32px;
            font-medium: medium;
            border: calc(0.08 * 1rem) solid transparent;
            background-size: 200%;
            background-clip: padding-box, border-box, border-box;
            background-origin: border-box;
            background-image: 
                linear-gradient(#121213, #121213),
                linear-gradient(#121213 50%, rgba(18,18,19,0.6) 80%, rgba(18,18,19,0)),
                linear-gradient(90deg,
                    hsl(var(--color-1)),
                    hsl(var(--color-5)),
                    hsl(var(--color-3)),
                    hsl(var(--color-4)),
                    hsl(var(--color-2))
                );
            transition: all 0.3s ease;
            position: relative;
        }
        
        #why-choose-slimai .rainbow-button-container::before {
            content: '';
            position: absolute;
            bottom: -20%;
            left: 50%;
            z-index: -1;
            height: 20%;
            width: 60%;
            transform: translateX(-50%);
            background: linear-gradient(90deg,
                hsl(var(--color-1)),
                hsl(var(--color-5)),
                hsl(var(--color-3)),
                hsl(var(--color-4)),
                hsl(var(--color-2))
            );
            filter: blur(calc(0.8 * 1rem));
            animation: rainbow 8s linear infinite;
        }
        
        #why-choose-slimai .rainbow-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
            padding: 0;
            cursor: pointer;
            width: fit-content;
        }
        
        #why-choose-slimai .button-content {
            display: inline-flex;
            align-items: center;
            color: white;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }
        
        #why-choose-slimai .rainbow-button-container:hover .button-content {
            opacity: 0.8;
        }
        
        #why-choose-slimai .button-content svg {
            width: 16px;
            height: 16px;
            margin-left: 8px;
            stroke: currentColor;
            stroke-width: 2;
        }
        
        @keyframes rainbow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        /* Responsive */
        @media (max-width: 768px) {
            #why-choose-slimai .bold-title {
                font-size: 1.8rem;
            }
            
            #why-choose-slimai .comparison-row {
                flex-direction: column;
                align-items: center;
                gap: 10px;
            }
            
            #why-choose-slimai .comparison-card {
                width: 100%;
                max-width: 100%;
            }
            
            #why-choose-slimai .comparison-card p {
                white-space: normal;
            }
            
            #why-choose-slimai .comparison-header {
                padding: 0;
            }
            
            #why-choose-slimai .comparison-option {
                padding: 15px 10px;
                max-width: 50%;
            }
            
            #why-choose-slimai .comparison-option h3 {
                font-size: 1rem;
            }
            
            #why-choose-slimai .conclusion-text {
                font-size: 1rem;
                margin: 30px 0 20px;
            }
            
            #why-choose-slimai .rainbow-button-container {
                padding: 0 24px;
                height: 44px;
            }
            
            #why-choose-slimai .button-content {
                font-size: 0.9rem;
            }
        }
    
        #automation-solutions {
            --color-1: 271, 91%, 65%;
            --color-2: 211, 90%, 65%;
            --color-3: 31, 90%, 65%;
            --color-4: 168, 90%, 65%;
            --color-5: 321, 90%, 65%;
            --primary-color: #4171ff;
            --secondary-color: #f64f02;
            position: relative;
            overflow: hidden;
        }

        #automation-solutions .bg-wrap {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
        }

        #automation-solutions .bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(248, 250, 252, 0.6), rgba(241, 245, 249, 0.6));
        }

        #automation-solutions .bg:before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(120, 119, 198, 0.1) 1px, transparent 0);
            background-size: 20px 20px;
            opacity: 0.5;
        }

        #automation-solutions .bold-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #333;
            max-width: 800px;
            margin-left: auto;
            margin-right: auto;
        }

        #automation-solutions .separator-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #automation-solutions .separator-line {
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        #automation-solutions .comparison-container {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.3);
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
            overflow: hidden;
            transition: all 0.3s ease;
        }

        #automation-solutions .automation-row {
            display: flex;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }

        #automation-solutions .automation-row:last-child {
            border-bottom: none;
        }

        #automation-solutions .automation-row:hover {
            background-color: rgba(255, 255, 255, 0.9);
        }

        #automation-solutions .problem-column {
            flex: 0 0 40%;
            padding: 20px;
            border-right: 1px solid rgba(0, 0, 0, 0.05);
        }

        #automation-solutions .solution-column {
            flex: 0 0 60%;
            padding: 20px;
        }

        #automation-solutions .problem-label, 
        #automation-solutions .solution-label {
            font-weight: 700;
            color: var(--primary-color);
            margin-bottom: 10px;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }

        #automation-solutions .solution-label {
            color: var(--secondary-color);
        }

        #automation-solutions .problem {
            font-weight: 600;
            font-size: 1.1rem;
            color: #333;
            text-align: left;
        }

        #automation-solutions .solution {
            display: flex;
            align-items: flex-start;
            text-align: left;
        }

        #automation-solutions .solution-icon {
            width: 18px;
            height: 18px;
            stroke: var(--secondary-color);
            margin-right: 12px;
            flex-shrink: 0;
            margin-top: 3px;
        }

        #automation-solutions .solution span {
            color: #444;
            font-size: 1rem;
            line-height: 1.5;
        }
        
        /* CTA Button Styles */
        #automation-solutions .cta-container {
            margin-top: 50px;
        }
        
        #automation-solutions .ai-steps__cta-wrapper {
            display: inline-flex;
            height: 44px;
            border-radius: 9999px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            padding: 0 32px;
            font-medium: medium;
            border: calc(0.08 * 1rem) solid transparent;
            background-size: 200%;
            background-clip: padding-box, border-box, border-box;
            background-origin: border-box;
            background-image: 
                linear-gradient(#121213, #121213),
                linear-gradient(#121213 50%, rgba(18,18,19,0.6) 80%, rgba(18,18,19,0)),
                linear-gradient(90deg,
                    hsl(var(--color-1)),
                    hsl(var(--color-5)),
                    hsl(var(--color-3)),
                    hsl(var(--color-4)),
                    hsl(var(--color-2))
                );
            transition: all 0.3s ease;
            position: relative;
        }

        #automation-solutions .ai-steps__cta-wrapper::before {
            content: '';
            position: absolute;
            bottom: -20%;
            left: 50%;
            z-index: -1;
            height: 20%;
            width: 60%;
            transform: translateX(-50%);
            background: linear-gradient(90deg,
                hsl(var(--color-1)),
                hsl(var(--color-5)),
                hsl(var(--color-3)),
                hsl(var(--color-4)),
                hsl(var(--color-2))
            );
            filter: blur(calc(0.8 * 1rem));
            animation: rainbow 8s linear infinite;
        }

        #automation-solutions .ai-steps__cta-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
            padding: 0;
            cursor: pointer;
            width: fit-content;
        }

        #automation-solutions .ai-steps__cta-content {
            display: inline-flex;
            align-items: center;
            color: white;
            font-weight: 500;
            transition: opacity 0.3s ease;
        }

        #automation-solutions .ai-steps__cta-wrapper:hover .ai-steps__cta-content {
            opacity: 0.8;
        }

        #automation-solutions .ai-steps__cta-button svg {
            width: 16px;
            height: 16px;
            margin-left: 4px;
            stroke: currentColor;
            stroke-width: 2;
        }
        
        /* Rainbow Animation */
        @keyframes rainbow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }

        @media (max-width: 768px) {
            #automation-solutions .bold-title {
                font-size: 2rem;
            }
            
            #automation-solutions .automation-row {
                flex-direction: column;
            }
            
            #automation-solutions .problem-column {
                flex: 0 0 100%;
                border-right: none;
                border-bottom: 1px solid rgba(0, 0, 0, 0.05);
                padding: 15px;
            }
            
            #automation-solutions .solution-column {
                flex: 0 0 100%;
                padding: 15px;
            }
            
            #automation-solutions .problem {
                font-size: 1rem;
            }
            
            #automation-solutions .solution span {
                font-size: 0.9rem;
            }
            
            #automation-solutions .ai-steps__cta-wrapper {
                padding: 0 20px;
            }
            
            #automation-solutions .ai-steps__cta-content {
                font-size: 0.9rem;
            }
        }
    
        #slimai-contact {
            --color-1: 271, 91%, 65%;
            --color-2: 211, 90%, 65%;
            --color-3: 31, 90%, 65%;
            --color-4: 168, 90%, 65%;
            --color-5: 321, 90%, 65%;
            --primary-color: #4171ff;
            --secondary-color: #f64f02;
            position: relative;
            overflow: hidden;
        }

        #slimai-contact .bg-wrap {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            z-index: -1;
        }

        #slimai-contact .bg {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(to bottom, rgba(65, 113, 255, 0), rgba(246, 79, 2, 0));
        }

        #slimai-contact .bg:before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(120, 119, 198, 0.1) 1px, transparent 0);
            background-size: 20px 20px;
            opacity: 0.5;
        }
        
        #slimai-contact .contact-wrapper {
            background: rgba(255, 255, 255, 0.8);
            backdrop-filter: blur(10px);
            -webkit-backdrop-filter: blur(10px);
            border-radius: 20px;
            padding: 60px 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.5);
        }

        /* Typography */
        #slimai-contact .section-title {
            font-size: 2.5rem;
            font-weight: 800;
            color: #333;
            letter-spacing: -0.02em;
        }

        #slimai-contact .contact-subtitle {
            font-size: 1.8rem;
            font-weight: 600;
            color: var(--primary-color);
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.4;
        }

        #slimai-contact .separator-wrapper {
            display: flex;
            justify-content: center;
            align-items: center;
        }

        #slimai-contact .separator-line {
            width: 60px;
            height: 4px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            border-radius: 2px;
        }

        /* Features */
        #slimai-contact .contact-features {
            display: flex;
            flex-direction: column;
            gap: 20px;
            max-width: 700px;
            margin-left: auto;
            margin-right: auto;
        }

        #slimai-contact .feature-item {
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.7);
            border-radius: 12px;
            padding: 15px 20px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        #slimai-contact .feature-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
        }

        #slimai-contact .feature-icon {
            flex-shrink: 0;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            background-color: var(--primary-color);
            color: white;
        }

        #slimai-contact .feature-icon svg {
            width: 20px;
            height: 20px;
            stroke: currentColor;
        }

        #slimai-contact .feature-text {
            font-size: 1.1rem;
            font-weight: 500;
            color: #333;
        }
        
        /* Rainbow Button */
        #slimai-contact .cta-container {
            margin-top: 30px;
        }
        
        #slimai-contact .rainbow-button-container {
            display: inline-flex;
            height: 54px;
            border-radius: 9999px;
            cursor: pointer;
            align-items: center;
            justify-content: center;
            padding: 0 32px;
            font-medium: medium;
            border: calc(0.08 * 1rem) solid transparent;
            background-size: 200%;
            background-clip: padding-box, border-box, border-box;
            background-origin: border-box;
            background-image: 
                linear-gradient(#121213, #121213),
                linear-gradient(#121213 50%, rgba(18,18,19,0.6) 80%, rgba(18,18,19,0)),
                linear-gradient(90deg,
                    hsl(var(--color-1)),
                    hsl(var(--color-5)),
                    hsl(var(--color-3)),
                    hsl(var(--color-4)),
                    hsl(var(--color-2))
                );
            transition: all 0.3s ease;
            position: relative;
        }
        
        #slimai-contact .rainbow-button-container::before {
            content: '';
            position: absolute;
            bottom: -20%;
            left: 50%;
            z-index: -1;
            height: 30%;
            width: 80%;
            transform: translateX(-50%);
            background: linear-gradient(90deg,
                hsl(var(--color-1)),
                hsl(var(--color-5)),
                hsl(var(--color-3)),
                hsl(var(--color-4)),
                hsl(var(--color-2))
            );
            filter: blur(calc(0.8 * 1rem));
            animation: rainbow 8s linear infinite;
        }
        
        #slimai-contact .rainbow-button {
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: none;
            padding: 0;
            cursor: pointer;
            width: 100%;
        }
        
        #slimai-contact .button-content {
            display: inline-flex;
            align-items: center;
            color: white;
            font-weight: 700;
            font-size: 1.1rem;
            transition: opacity 0.3s ease;
        }
        
        #slimai-contact .button-content svg {
            width: 22px;
            height: 22px;
            margin-right: 12px;
            stroke: currentColor;
        }
        
        #slimai-contact .rainbow-button-container:hover .button-content {
            opacity: 0.8;
        }
        
        @keyframes rainbow {
            0% { background-position: 0% 50%; }
            50% { background-position: 100% 50%; }
            100% { background-position: 0% 50%; }
        }
        
        /* Quote */
        #slimai-contact .quote-container {
            margin-top: 50px;
            position: relative;
        }
        
        #slimai-contact .quote-text {
            font-size: 1.5rem;
            font-weight: 600;
            font-style: italic;
            color: #333;
            position: relative;
            padding: 0 30px;
            max-width: 700px;
            margin: 0 auto;
        }
        
        #slimai-contact .quote-text:before,
        #slimai-contact .quote-text:after {
            content: '"';
            font-size: 3rem;
            position: absolute;
            color: var(--secondary-color);
            opacity: 0.3;
            font-family: serif;
        }
        
        #slimai-contact .quote-text:before {
            left: 0;
            top: -20px;
        }
        
        #slimai-contact .quote-text:after {
            right: 0;
            bottom: -40px;
        }

        /* Responsive */
        @media (max-width: 768px) {
            #slimai-contact .contact-wrapper {
                padding: 40px 20px;
            }
            
            #slimai-contact .section-title {
                font-size: 2rem;
            }
            
            #slimai-contact .contact-subtitle {
                font-size: 1.4rem;
            }
            
            #slimai-contact .feature-text {
                font-size: 1rem;
            }
            
            #slimai-contact .feature-icon {
                width: 30px;
                height: 30px;
                margin-right: 10px;
            }
            
            #slimai-contact .feature-icon svg {
                width: 16px;
                height: 16px;
            }
            
            #slimai-contact .rainbow-button-container {
                height: 48px;
                padding: 0 24px;
            }
            
            #slimai-contact .button-content {
                font-size: 0.95rem;
            }
            
            #slimai-contact .button-content svg {
                width: 18px;
                height: 18px;
                margin-right: 8px;
            }
            
            #slimai-contact .quote-text {
                font-size: 1.2rem;
                padding: 0 20px;
            }
        }
         #benefits-2col-14 {
            background: #fafafa;
        }

        #benefits-2col-14 .content-box {
            transition: all 0.3s;
            background: #fff;
            height: 100%;
        }

        #benefits-2col-14 .content-box:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.1) !important;
        }

        #benefits-2col-14 .icon-box {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--primary-color, #0181F2);
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto;
        }

        #benefits-2col-14 .icon {
            width: 24px;
            height: 24px;
            filter: brightness(0) invert(1);
        }

        /* Button với viền gradient */
        .btn-gradient-border {
            position: relative;
            padding: 0.5rem;
            background: linear-gradient(90deg, #0181F2, #FF6161, #E27BFF);
            border-radius: 50px;
            transition: all 0.3s;
            cursor: pointer;
            display: inline-block;
            text-decoration: none !important;
        }

        .btn-gradient-border.btn-sm span {
            padding: 0.5rem 1.5rem;
            font-size: 0.875rem;
        }

        .btn-gradient-border:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 32px rgba(0,0,0,0.15);
        }

        .btn-gradient-border:before {
            content: '';
            position: absolute;
            inset: 1px;
            background: #fff;
            border-radius: inherit;
            z-index: 0;
        }

        .btn-gradient-border span {
            position: relative;
            z-index: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0.75rem 2rem;
            font-weight: 500;
            color: #333;
            transition: color 0.3s;
        }

        .btn-gradient-border:hover span {
            color: #0181F2;
        }

        .btn-gradient-border i {
            margin-right: 8px;
        }

        /* Dark mode version */
        .dark .btn-gradient-border:before {
            background: #121213;
        }

        .dark .btn-gradient-border span {
            color: #fff;
        }

        @media (max-width: 768px) {
            #benefits-2col-14 .content-box {
                padding: 1.5rem !important;
            }
            
            .btn-gradient-border span {
                padding: 0.5rem 1.5rem;
            }
        }
#tool-back-to-top{
    position: fixed;
    right: 130px;
    bottom: 50px;
    z-index: 1001190 !important;
}

     #footer-text-4 .padding-list li {
    padding: 0.1em 0;
}
        #footer-text-4 {
            background: linear-gradient(to bottom, #f5f8fd, #e2edfe);
            color: #333;
        }

        #footer-text-4 h4 {
            color: #333;
            font-size: 1.1rem;
        }

        #footer-text-4 .list-unstyled {
            margin: 0;
            padding: 0;
        }

        #footer-text-4 .padding-list li {
            margin-bottom: 12px;
        }

        #footer-text-4 .padding-list a {
            color: #666;
            text-decoration: none;
            transition: color 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        #footer-text-4 .padding-list a:hover {
            color: #4171ff;
        }

        /* Style cho arrow icon */
        #footer-text-4 .arrow-icon {
            color: #4171ff;
            transition: transform 0.3s ease;
        }

        #footer-text-4 .padding-list a:hover .arrow-icon {
            transform: translateX(3px);
        }

        #footer-text-4 .social-links a {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        #footer-text-4 .social-links svg {
            transition: transform 0.3s ease;
        }

        #footer-text-4 .social-links a:hover svg {
            transform: scale(1.2);
        }

        /* Style cho contact info */
        #footer-text-4 .contact-info p {
            display: flex;
            align-items: center;
            gap: 8px;
            color: #666;
        }

        #footer-text-4 .contact-info svg {
            color: #4171ff;
            flex-shrink: 0;
        }

        @media (max-width: 768px) {
            #footer-text-4 .col-md-3,
            #footer-text-4 .col-md-5,
            #footer-text-4 .col-md-2 {
                text-align: center;
            }
            
            #footer-text-4 .social-links a,
            #footer-text-4 .padding-list a,
            #footer-text-4 .contact-info p {
                justify-content: center;
            }
        }
    