@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Urbanist:wght@400;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@500&display=swap');

:root {
    --aibot-color-bg: #F9F8FD;
    --aibot-color-purple: #5D2A7B;
    --aibot-color-accent: #EE5955;
    --aibot-color-dark: #2B2931;
    --aibot-color-light-gray: #717171;
    --aibot-color-white: #FFFFFF;
    --aibot-font-family: 'Poppins', sans-serif;

    --header-purple-main: #6a1b9a;
    --header-purple-dark: #4a0072;
    --header-purple-light-bg: #f3e5f5;
    --header-red-logo: #f04362;
    --header-text-primary: #111827;
    --header-text-secondary: #4b5563;
    --header-white: #ffffff;
    --header-grey-light: #f9fafb;
    --header-grey-border: #e5e7eb;
    --header-dotted-border-color: #d1d5db;
    --header-glass-bg: rgba(255, 255, 255, 0.4);
    --header-transition-speed: 0.35s;
    --header-transition-easing: cubic-bezier(0.23, 1, 0.32, 1);
}
body {
    font-family: var(--aibot-font-family);
    background-color: var(--aibot-color-bg);
    padding-top: 80px;
}

.header {
    opacity: 1 !important;
    visibility: visible !important;
    font-family: 'Inter', sans-serif;
    color: var(--header-text-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background: var(--header-glass-bg);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    position: fixed;
    border-bottom: 1px solid var(--header-grey-border);
    top: 0;
    z-index: 1002;
    width: 100%;
    min-height: 60px;
}

.header .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 24px;
}

.header a, .header button {
    text-decoration: none;
    color: inherit;
    font-family: inherit;
    cursor: pointer;
}

.header ul { list-style: none; }
.header button { background: none; border: none; }

.header .navbar {
    display: flex;
    align-items: center;
    height: 80px;
    position: relative;
    padding: 0;
}

.header .logo {
    font-size: 24px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 7px;
    margin-right: auto;
}

.header .logo img { width: 34px; height: 34px; }
.header .logo-text { color: var(--header-red-logo); }

.header .nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-right: 16px;
}

.header .nav-item, .header .dropdown-item { position: relative; }

.header .nav-link {
    font-size: 16px;
    font-weight: 500;
    color: var(--header-text-secondary);
    padding: 10px 16px;
    border-radius: 8px;
    transition: all var(--header-transition-speed) ease;
    white-space: nowrap;
}

.header .nav-link:hover,
.header .dropdown-item.is-open .dropdown-toggle {
    color: var(--header-purple-main);
    background-color: var(--header-purple-light-bg);
}

.header .dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.header .dropdown-chevron {
    transition: transform var(--header-transition-speed) var(--header-transition-easing);
}

.header .dropdown-item.is-open .dropdown-chevron {
    transform: rotate(180deg);
}

.header .nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header .cta-button {
    background-color: var(--header-white);
    color: #5D2A7B;
    padding: 12px 24px;
    border-radius: 50px;
    border: 1px solid var(--header-purple-main);
    font-weight: 600;
    font-size: 15px;
    transition: all var(--header-transition-speed) var(--header-transition-easing);
}

.header .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -10px rgba(106, 27, 154, 0.5);
}

.header .desktop-only { display: inline-flex; }

.header .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 44px;
    height: 44px;
    background: none;
    border: 2px solid transparent;
    cursor: pointer;
    padding: 8px;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
}

.header .hamburger-line {
    width: 24px;
    height: 2.5px;
    background-color: #374151;
    transition: all 0.35s cubic-bezier(0.23, 1, 0.32, 1);
    transform-origin: center;
    border-radius: 1px;
}

.header .hamburger-line:nth-child(2) { margin: 5px 0; }

ma-header:empty {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: var(--header-glass-bg);
    border-bottom: 1px solid var(--header-grey-border);
    z-index: 1001;
}

.aibot-main-wrapper {
    overflow-x: hidden;
    line-height: 1.6;
}

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

.aibot-feels-human-section .aibot-container {
    max-width: 1400px;
}

.aibot-section {
    padding: 80px 0;
}

.aibot-differentiators-grid .aibot-card-icon {
    border-radius: 15px;
}

.aibot-card-icon-what {
    width: 50px;
    height: 50px;
    background-color: #F0E9F7;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}

.aibot-section-title {
    font-size: 38px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 20px;
    background: linear-gradient(87deg, #8253C2 2.38%, #F45346 85.76%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aibot-section-subtitle {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px auto;
    color: var(--aibot-color-light-gray);
}

.aibot-text-accent {
    background: linear-gradient(87deg, #8253C2 2.38%, #F45346 85.76%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.aibot-hero {
    max-width: 1300px;
    margin: 20px auto;
    padding: 60px;
    background: linear-gradient(120deg, rgba(244, 238, 253, 1) 0%, rgba(235, 235, 255, 1) 100%);
    border-radius: 40px;
}

.aibot-hero-container {
    display: flex;
    align-items: center;
    gap: 40px;
}

.aibot-hero-content {
    flex: 1;
}

.aibot-main-heading {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.aibot-main-heading{
    background: linear-gradient(87deg, #8253C2 2.38%, #F45346 85.76%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


.aibot-subheading {
    font-size: 18px;
    color: var(--aibot-color-light-gray);
    margin-bottom: 30px;
}

.aibot-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.aibot-btn-primary {
    background-color: var(--aibot-color-purple);
    color: var(--aibot-color-white);
    text-decoration: none;
}

.aibot-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.aibot-hero-image-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.aibot-hero-main-img {
    z-index: 5;
    max-width: 100%;
    height: auto;
    position: relative;
    border-radius: 15px;
    top: 59px;
}

.aibot-hero-float {
    position: absolute;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.aibot-hero-float-code {
    width: 250px;
    bottom: -57px;
    left: -80px;
    z-index: 4;
}
.aibot-hero-float-insights {
    width: 280px;
    top: -30px;
    right: -80px;
    z-index: 4;
}

.aibot-section-text{
    text-align: center;
}



.aibot-card-grid {
    display: grid;
    gap: 40px;
    margin-top: 50px;
    align-items: stretch;
}
.aibot-grid-4 {
    grid-template-columns: repeat(4, 1fr);
}
.aibot-grid-3 {
    grid-template-columns: repeat(4, 1fr);
}

.aibot-card {
    background: var(--aibot-color-white);
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 22.699px 22.699px -11.349px rgba(0, 0, 0, 0.04), 0 11.349px 11.349px -5.675px rgba(0, 0, 0, 0.04), 0 5.675px 5.675px -2.837px rgba(0, 0, 0, 0.04), 0 2.837px 2.837px -1.419px rgba(0, 0, 0, 0.04), 0 0.946px 0.946px -0.473px rgba(0, 0, 0, 0.04), 0 0 0 0.946px rgba(0, 0, 0, 0.05);
    text-align: left;
}
.aibot-card-icon {
    width: 50px;
    height: 50px;
    background-color: #FFF;
    box-shadow: 0 22.699px 22.699px -2.837px rgba(0, 0, 0, 0.04), 0 11.349px 11.349px -2.837px rgba(0, 0, 0, 0.04), 0 5.675px 5.675px -2.837px rgba(0, 0, 0, 0.04), 0 1.892px 1.892px -0.946px rgba(0, 0, 0, 0.04), 0 0.946px 0.946px -0.473px rgba(0, 0, 0, 0.04), 0 0 0 0.946px rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
}
.aibot-card-icon img {
    width: 24px;
    height: 24px;
}
.aibot-card-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--aibot-color-purple);
    text-align: left;
    line-height: 1.4;
}
.aibot-card-text {
    font-size: 15px;
    color: var(--aibot-color-light-gray);
    text-align: left;
    line-height: 1.6;
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}

.aibot-feels-human-section{
    background: #F5F0FD;
}

.aibot-feels-human-section .aibot-card-title,
.aibot-feels-human-section .aibot-card-text {
    text-align: center;
}

.aibot-image-card {
    text-align: center;
    padding: 20px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    align-items: center;
    justify-content: flex-start;
}
.aibot-image-card img {
    max-width: 100%;
    width: 280px;
    height: 280px;
    border-radius: 12px;
    object-fit: contain;
    flex-shrink: 0;
}

.aibot-differentiators-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px 50px;
    max-width: 1000px;
    margin: 50px auto 0 auto;
}
.aibot-feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
}
.aibot-feature-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--aibot-color-dark);
}
.aibot-feature-text {
    font-size: 15px;
    color: var(--aibot-color-light-gray);
}

.aiboit-how-it-works-section{
    background: #F5F0FD;
}

.aibot-how-it-works-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}
.aibot-step-item {
    padding: 30px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.aibot-step-item::before {
    content: attr(data-step);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(40px, -60%);
    font-size: 200px;
    font-weight: 700;
    color: #EAE5F2;
    z-index: -1;
}
.aibot-step-item .aibot-card-icon {
    margin: 0 auto 20px auto;
}

.aibot-team-container {
    display: flex;
    align-items: center;
    gap: 50px;
}
.aibot-team-content {
    flex: 1;
}
.aibot-section-title.aibot-left-align {
    text-align: left;
}
.aibot-team-content p {
    margin-bottom: 30px;
    max-width: 450px;
    color: var(--aibot-color-light-gray);
}
.aibot-highlight-box {
    background: var(--2-GRAD, linear-gradient(90deg, #D7C3FF 0%, #FBE8F3 100%));
    padding: 20px;
    border-radius: 12px;
    border: 4px solid var(--aibot-color-bg);
    font-weight: 500;
    color: var(--aibot-color-purple);
    box-shadow: 0 0 15px 0 rgba(168, 87, 241, 0.25);
    width:81%;
    height:72px;
}
.aibot-team-image-wrapper {
    flex: 1;
    position: relative;
}
.aibot-team-main-img {
    width: 100%;
    border-radius: 20px;
    left: 90px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}
.aibot-team-secondary-img {
    position: absolute;
    width: 200px;
    height: 200px;
    object-fit: cover;
    border: 5px solid var(--aibot-color-white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    bottom: -50px;
    left: -50px;
}
.aibot-tag {
    position: absolute;
    background: #F7F7FC;
    padding: 8px 16px;
    border-radius: 14px;
    box-shadow: 0 3.31px 6.62px 2.482px rgba(0, 0, 0, 0.15), 0 0.827px 2.482px 0 rgba(0, 0, 0, 0.30);
    font-size: 14px;
    font-weight: 500;
    color: var(--aibot-color-dark);
}
.aibot-tag-1 { top: 20px; left: -30px; }
.aibot-tag-2 { top: 120px; right: -30px; }
.aibot-tag-3 { bottom: 20px; right: -50px; }

.aibot-cta-section {
    max-width: 1300px;
    margin: 80px auto 80px auto;
    border-radius: 30px;
    padding: 60px 20px;
    background: var(--12, linear-gradient(35deg, rgba(225, 244, 255, 0.60) 12%, rgba(249, 225, 255, 0.80) 27%, rgba(255, 230, 233, 0.60) 100%));
    position: relative;
    overflow: hidden;
}

.aibot-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.aibot-cta-content a{
    text-decoration: none;
    color: var(--aibot-color-white);
}

.aibot-cta-content .aibot-section-title {
    color: var(--aibot-color-purple);
    -webkit-text-fill-color: var(--aibot-color-purple);
    margin-bottom: 40px;
}

.aibot-btn-cta {
    background: var(--aibot-color-purple);
    color: var(--aibot-color-white);
    padding: 15px 40px;
    margin-top: 40px;
    box-shadow: 0 0 20px 5px rgba(255, 173, 222, 0.7);
}
.aibot-btn-cta:hover {
    box-shadow: 0 0 30px 10px rgba(255, 173, 222, 1);
    transform: translateY(-3px);
}

@media (max-width: 1240px) {
    .aibot-hero, .aibot-cta-section {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 1024px) {
    .aibot-hero-container {
        flex-direction: column;
        text-align: center;
    }
    .aibot-hero-image-wrapper {
        margin-top: 10px; }
     .aibot-hero-float {
        transform: scale(0.9);
    }
    .aibot-grid-4, .aibot-grid-3, .aibot-how-it-works-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .aibot-image-card img {
        width: 220px;
        height: 220px;
    }
    .aibot-team-container {
        flex-direction: column;
        gap: 80px;
        text-align: center;
    }
    .aibot-section-title.aibot-left-align {
        text-align: center;
    }
    .aibot-highlight-box {
        width: 90%;
        height: auto;
        min-height: 65px;
        font-size: 15px;
    }
    
    .aibot-team-content p {
        margin-left: auto;
        margin-right: auto;
    }
}

@media (max-width: 768px) {
    .aibot-hero {
        padding: 40px 20px;
    }
    .aibot-section-title {
        font-size: 32px;
    }
    .aibot-main-heading {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .aibot-main-heading {
        font-size: 2rem;
    }
    .aibot-grid-4, .aibot-grid-3, .aibot-how-it-works-grid, .aibot-differentiators-grid {
        grid-template-columns: 1fr;
    }
    .aibot-hero-float {
        display: none; 
    }
    
    .aibot-image-card img {
        width: 220px;
        height: 220px;
    }
    .aibot-highlight-box {
        width: 100%;
        height: auto;
        min-height: 60px;
        padding: 15px;
        font-size: 14px;
        line-height: 1.4;
    }
    
    .aibot-team-image-wrapper {
        margin-top: 40px;
        transform: scale(0.85);
        transform-origin: center;
    }
    .aibot-team-secondary-img {
        width: 150px;
        height: 150px;
        left: -20px;
        bottom: -30px;
    }
}

@media screen and (max-width: 767px) {
    *,
    *::before,
    *::after {
        animation-duration: 0s !important;
        animation-delay: 0s !important;
        transition-duration: 0s !important;
        transition-delay: 0s !important;
    }

    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .header .container { padding: 0 16px; }
    .header .navbar { height: 70px; }
    .header .nav-menu { display: none; }
    .header .desktop-only { display: none !important; }
    .header .mobile-menu-toggle { display: flex; }
    .header .logo { font-size: 20px; }
    .header .logo img { width: 28px; height: 28px; }

    ma-header:empty { height: 70px; }
    body { padding-top: 70px; }
}

@media screen and (max-width: 1023px) and (min-width: 768px) {
    .header .container { padding: 0 20px; }

    .header .nav-menu { display: none; }
    .header .desktop-only { display: none !important; }
    .header .mobile-menu-toggle { display: flex; }

    .aibot-hero h1 { font-size: 2.5rem; line-height: 1.2; }
    .aibot-hero p { font-size: 1.1rem; margin-bottom: 2rem; }
    .aibot-card-grid { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
    .aibot-hero-image-wrapper { padding-left: 2rem; }
}

@media screen and (max-width: 388px) {
    .header .container {
        padding: 0 12px;
    }

    .hero-section h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero-section p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 12px;
    }

    .stats-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 12px;
    }

    .testimonials-wrapper {
        max-width: 100%;
        padding: 0 12px;
    }

    .container,
    .hero-container,
    .section-container {
        padding-left: 12px;
        padding-right: 12px;
        max-width: 100%;
    }

    .btn,
    .cta-button {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
        display: block;
        text-align: center;
    }

    .image-container {
        padding: 0;
        margin: 1rem 0;
    }

    .section-title {
        font-size: 1.5rem;
        text-align: center;
    }

    .section-subtitle {
        font-size: 0.9rem;
        text-align: center;
        max-width: 100%;
    }

    .header .mobile-menu-list li a {
        padding: 6px 10px;
        font-size: 13px;
    }

    .header .mobile-group-title {
        font-size: 14px;
        padding: 12px 0 8px;
    }

    .header .mobile-cta-section {
        padding: 16px 12px;
    }

    .header .mobile-cta-button {
        padding: 10px 16px;
        font-size: 14px;
    }
}