@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;
            }
        }
    
        #popular-ai-staff {
            --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;
            background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.8));
        }

        #popular-ai-staff::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;
            pointer-events: none;
        }

        .bold-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #333;
        }

        .text-gradient-new {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .ai-staff-container {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }

        .ai-staff-row {
            display: flex;
            padding: 24px;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

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

        .ai-staff-row:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        .staff-name {
            flex: 0 0 25%;
            padding-right: 24px;
        }

        .staff-name h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--primary-color);
            margin: 0;
        }

        .staff-info {
            flex: 0 0 75%;
        }

        .job, .result {
            display: flex;
            align-items: flex-start;
            margin-bottom: 12px;
        }

        .result {
            margin-bottom: 0;
            color: var(--secondary-color);
        }

        .job i, .result i {
            width: 20px;
            height: 20px;
            margin-right: 12px;
            margin-top: 3px;
            flex-shrink: 0;
        }

        .icon-task:before {
            content: '✓';
            color: var(--primary-color);
        }

        .icon-chart:before {
            content: '→';
            color: var(--secondary-color);
        }

        .job span, .result span {
            font-size: 1rem;
            line-height: 1.5;
            color: #444;
            text-align: left;
        }

        .result span {
            font-weight: 500;
        }

        /* 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) {
            .bold-title {
                font-size: 2rem;
                padding: 0 20px;
            }

            .ai-staff-row {
                flex-direction: column;
                padding: 20px;
            }

            .staff-name {
                flex: 0 0 100%;
                padding-right: 0;
                margin-bottom: 12px;
            }

            .staff-info {
                flex: 0 0 100%;
            }

            .job, .result {
                margin-bottom: 8px;
            }

            .job span, .result span {
                font-size: 0.95rem;
            }

            .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;
            }
        }
    
        #ai-principles {
            --primary-color: #4171ff;
            --secondary-color: #f64f02;
            position: relative;
            background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.8));
        }

        #ai-principles::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;
            pointer-events: none;
        }

        .bold-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #333;
        }

        .text-gradient-new {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

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

        .principles-container {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
        }

        .principle-card {
            flex: 1 1 300px;
            max-width: 400px;
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            padding: 30px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
        }

        .principle-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
        }

        .principle-icon {
            width: 64px;
            height: 64px;
            background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
        }

        .principle-icon svg {
            width: 32px;
            height: 32px;
            stroke: white;
        }

        .principle-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: #333;
            margin-bottom: 12px;
        }

        .principle-content p {
            color: #444;
            font-size: 1rem;
            line-height: 1.6;
            margin: 0;
        }

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

        .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));
        }

        @media (max-width: 992px) {
            .principles-container {
                flex-direction: column;
                align-items: center;
            }
            
            .principle-card {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .bold-title {
                font-size: 2rem;
                padding: 0 20px;
            }
            
            .principle-card {
                padding: 24px;
            }
            
            .principle-icon {
                width: 56px;
                height: 56px;
            }
            
            .principle-icon svg {
                width: 28px;
                height: 28px;
            }
            
            .principle-content h3 {
                font-size: 1.1rem;
            }
            
            .principle-content p {
                font-size: 0.95rem;
            }
        }
    
        #faq-section {
            --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;
            background: linear-gradient(135deg, rgba(248, 250, 252, 0.8), rgba(241, 245, 249, 0.8));
        }

        #faq-section::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;
            pointer-events: none;
        }

        .bold-title {
            font-size: 2.5rem;
            font-weight: 800;
            line-height: 1.2;
            letter-spacing: -0.02em;
            color: #333;
        }

        .text-gradient-new {
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }

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

        .faq-container {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(10px);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
        }

        .faq-item {
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
        }

        .faq-item:last-child {
            border-bottom: none;
        }

        .faq-item:hover {
            background: rgba(255, 255, 255, 0.9);
        }

        .faq-question {
            display: flex;
            align-items: flex-start;
            padding: 24px;
            text-align: left;
        }

        .question-number {
            width: 28px;
            height: 28px;
            background: linear-gradient(to right, var(--primary-color), var(--secondary-color));
            color: white;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 600;
            margin-right: 16px;
            flex-shrink: 0;
        }

        .faq-question h3 {
            font-size: 1.1rem;
            font-weight: 600;
            color: #333;
            margin: 0;
        }

        .faq-answer {
            padding: 0 24px 24px 68px;
            text-align: left;
        }

        .faq-answer p {
            color: #444;
            font-size: 1rem;
            line-height: 1.5;
            margin: 0;
        }

        .faq-answer ul {
            margin: 0.5rem 0 0 0;
            padding-left: 1.5rem;
            color: #444;
        }

        .faq-answer li {
            margin-bottom: 0.5rem;
            text-align: left;
        }

        /* 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) {
            .bold-title {
                font-size: 2rem;
                padding: 0 20px;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-question h3 {
                font-size: 1rem;
            }

            .faq-answer {
                padding: 0 20px 20px 60px;
            }

            .faq-answer p,
            .faq-answer li {
                font-size: 0.95rem;
            }

            .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-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;
            }
        }
    