.elementor-11 .elementor-element.elementor-element-15078da{--display:flex;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11 .elementor-element.elementor-element-2a777b2{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-11 .elementor-element.elementor-element-7f669ba{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11 .elementor-element.elementor-element-3eb5e63{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11 .elementor-element.elementor-element-f40dd54{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-11 .elementor-element.elementor-element-659f60a{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-ece5598 *//* ==========================================
       RESET & BASE STYLES
       ========================================== */
    *, *::before, *::after {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    :root {
      --primary: #4344F7;
      --primary-gradient: linear-gradient(135deg, #304bf5 0%, #6737f6 100%);
      --primary-light: #EEF0FF;
      --text-dark: #0F172A;
      --text-muted: #64748B;
      --text-light: #94A3B8;
      --bg-light: #F8FAFC;
      --bg-card: #FFFFFF;
      --border-color: #E2E8F0;
      --border-light: #F1F5F9;
      --dark-navy: #080D27;
      --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
      --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
      --shadow-md: 0 4px 20px -2px rgba(67, 68, 247, 0.08);
      --shadow-lg: 0 20px 40px -15px rgba(67, 68, 247, 0.12);
      --radius-sm: 8px;
      --radius-md: 14px;
      --radius-lg: 20px;
      --radius-full: 9999px;
    }

    body {
      font-family: var(--font-main);
      color: var(--text-dark);
      background-color: #FFFFFF;
      line-height: 1.5;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    a {
      text-decoration: none;
      color: inherit;
      transition: all 0.2s ease;
    }

    button {
      cursor: pointer;
      border: none;
      background: none;
      font-family: inherit;
      transition: all 0.2s ease;
    }

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

    /* ==========================================
       COMPONENTS (BADGES, BUTTONS)
       ========================================== */
    .badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px 14px;
      background: var(--primary-light);
      color: var(--primary);
      font-size: 0.72rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.8px;
      border-radius: var(--radius-full);
      margin-bottom: 18px;
    }

    .badge-icon {
      font-size: 0.85rem;
    }

    .btn-primary {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: var(--primary-gradient);
      color: #fff;
      font-weight: 600;
      font-size: 0.95rem;
      padding: 12px 26px;
      border-radius: 10px;
      box-shadow: 0 6px 20px rgba(67, 68, 247, 0.35);
      
    }
    .btn-primary:hover {
        color:#fff;
      transform: translateY(-2px);
      box-shadow: 0 10px 24px rgba(67, 68, 247, 0.45);
    }

    .btn-white {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #FFFFFF;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.95rem;
      padding: 13px 28px;
      border-radius: 10px;
      box-shadow: 0 4px 15px rgba(0,0,0,0.06);
      
    }
    .btn-white:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 20px rgba(0,0,0,0.1);
    }

    .btn-outline {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      background: #FFF;
      color: var(--text-dark);
      font-weight: 600;
      font-size: 0.95rem;
      padding: 12px 24px;
      border-radius: 10px;
      border: 1px solid var(--border-color);
      border:1px solid #eee;
    }
    .btn-outline:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: #FAFBFF;
    }

    .arrow-circle {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 22px;
      height: 22px;
      border-radius: 50%;
      background: rgba(255,255,255,0.25);
    }

    /* ==========================================
       HEADER & NAVIGATION
       ========================================== */
    .header {
      position: sticky;
      top: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.95);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid #F1F5F9;
      padding: 16px 0;
    }

    .nav-container {
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 1.35rem;
      font-weight: 800;
      color: #0F172A;
    }

    .logo span {
      color: var(--text-muted);
      font-weight: 600;
    }

    .nav-menu {
      display: flex;
      align-items: center;
      gap: 32px;
      list-style: none;
    }

    .nav-menu a {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .nav-menu a:hover, .nav-menu a.active {
      color: var(--primary);
    }

    .nav-right {
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .login-link {
      font-size: 0.9rem;
      font-weight: 600;
      color: var(--text-muted);
    }
    .login-link:hover {
      color: var(--text-dark);
    }

    .mobile-menu-btn {
      display: none;
      font-size: 1.5rem;
      color: var(--text-dark);
    }

    /* ==========================================
       HERO SECTION
       ========================================== */
    .hero {
      position: relative;
      padding: 70px 0 60px;
      overflow: hidden;
    }

    .hero::before {
      content: '';
      position: absolute;
      width: 600px;
      height: 600px;
      top: -100px;
      right: 5%;
      background: radial-gradient(circle, rgba(67, 68, 247, 0.08) 0%, rgba(255,255,255,0) 70%);
      z-index: -1;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1fr 1.08fr;
      align-items: center;
      gap: 40px;
    }

    .hero-content h1 {
      font-size: 46px;
      line-height: 1.12;
      font-weight: 800;
      letter-spacing: -1.2px;
      margin-bottom: 20px;
    }

    .hero-content h1 .gradient-text {
      background: linear-gradient(135deg, #3B4BF7 0%, #7534F6 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .hero-desc {
      font-size: 1.05rem;
      color: var(--text-muted);
      line-height: 1.6;
      margin-bottom: 32px;
      max-width: 480px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }

    .hero-checklist {
      display: flex;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
    }

    .check-item {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 0.8rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .check-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 17px;
      height: 17px;
      background: #4344F7;
      color: #FFF;
      border-radius: 50%;
      font-size: 10px;
    }

    /* Hero Visual Right */
    .hero-visual {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: flex-end;
    }

    .robot-graphic {
      position: absolute;
      left: -40px;
      top: 50%;
      transform: translateY(-50%);
      width: 320px;
      height: 320px;
      z-index: 1;
      animation: float 4s ease-in-out infinite;
    }

    @keyframes float {
      0%, 100% { transform: translateY(-50%); }
      50% { transform: translateY(-56%); }
    }

    /* Chat Widget Preview */
    .chat-preview-card {
      position: relative;
      z-index: 2;
      width: 330px;
      background: #FFFFFF;
      border-radius: 24px;
      box-shadow: 0 25px 60px -15px rgba(30, 41, 135, 0.18), 0 0 0 1px rgba(226, 232, 240, 0.7);
      overflow: hidden;
      margin-left: auto;
    }

    .chat-header {
      background: var(--primary-gradient);
      padding: 16px 20px;
      color: #FFF;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .chat-header-user {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .chat-header-bot-icon {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #FFF;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .chat-header-info h4 {
      font-size: 0.95rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .chat-header-info span {
      font-size: 0.7rem;
      opacity: 0.9;
      display: flex;
      align-items: center;
      gap: 4px;
    }

    .chat-header-info span::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: #4ADE80;
    }

    .chat-header-actions {
      display: flex;
      gap: 8px;
      opacity: 0.85;
      font-size: 1.1rem;
    }

    .chat-body {
      padding: 18px 16px;
      background: #FAFBFD;
      display: flex;
      flex-direction: column;
      gap: 14px;
      font-size: 0.82rem;
    }

    .msg-bot {
      display: flex;
      gap: 8px;
      align-items: flex-start;
    }

    .msg-bot-avatar {
      width: 24px;
      height: 24px;
      border-radius: 50%;
      background: #E0E7FF;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .msg-bot-bubble {
      background: #FFFFFF;
      padding: 10px 14px;
      border-radius: 14px;
      border-top-left-radius: 2px;
      color: #1E293B;
      box-shadow: 0 2px 6px rgba(0,0,0,0.03);
      border: 1px solid #EEF2F6;
      line-height: 1.45;
    }

    .msg-user {
      align-self: flex-end;
      background: #4344F7;
      color: #FFF;
      padding: 10px 14px;
      border-radius: 14px;
      border-top-right-radius: 2px;
      max-width: 82%;
      line-height: 1.4;
    }

    .msg-time {
      font-size: 0.65rem;
      opacity: 0.75;
      text-align: right;
      margin-top: 3px;
      display: flex;
      align-items: center;
      justify-content: flex-end;
      gap: 2px;
    }

    .chat-quick-actions {
      display: flex;
      flex-direction: column;
      gap: 6px;
      margin-top: 8px;
    }

    .quick-btn {
      background: #FFFFFF;
      border: 1px solid #DCE3F1;
      padding: 7px 12px;
      border-radius: 8px;
      font-size: 0.76rem;
      font-weight: 600;
      color: #4344F7;
      text-align: center;
      transition: 0.2s;
    }
    .quick-btn:hover {
      background: #EEF2FF;
      border-color: #C7D2FE;
    }

    .chat-footer {
      padding: 10px 14px;
      background: #FFF;
      border-top: 1px solid #EEF2F6;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .chat-footer input {
      flex: 1;
      border: none;
      font-size: 0.8rem;
      font-family: inherit;
      outline: none;
      color: #1E293B;
    }

    .chat-send-btn {
      color: #4344F7;
      font-size: 1.1rem;
      display: flex;
      align-items: center;
    }

    /* Trusted By Logos */
    .trusted-by {
      margin-top: 50px;
    }

    .trusted-title {
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-light);
      margin-bottom: 16px;
    }

    .trusted-logos {
      display: flex;
      align-items: center;
      gap: 36px;
      flex-wrap: wrap;
    }

    .brand-logo {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 1.05rem;
      font-weight: 700;
      color: #1E293B;
      letter-spacing: -0.3px;
    }

    /* ==========================================
       FEATURES SECTION
       ========================================== */
    .section {
      padding: 90px 0;
    }

    .section-header {
      text-align: center;
      max-width: 650px;
      margin: 0 auto 54px;
    }

    .section-title {
      font-size: 2.25rem;
      font-weight: 800;
      line-height: 1.25;
      letter-spacing: -0.8px;
      margin-bottom: 12px;
    }

    .section-subtitle {
      font-size: 0.95rem;
      color: var(--text-muted);
      line-height: 1.6;
    }

    .features-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      margin-bottom: 40px;
    }

    .feature-card {
      background: #FFFFFF;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-lg);
      padding: 30px 24px;
      box-shadow: 0 4px 20px rgba(0,0,0,0.02);
      transition: transform 0.25s ease, box-shadow 0.25s ease;
    }

    .feature-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
      border-color: #E0E7FF;
    }

    .feature-icon-wrapper {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      font-size: 1.25rem;
    }

    .feature-card h3 {
      font-size: 1.1rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .feature-card p {
      font-size: 0.85rem;
      color: var(--text-muted);
      line-height: 1.55;
    }

    .features-footer-btn {
      text-align: center;
    }

    /* ==========================================
       INTEGRATIONS SECTION
       ========================================== */
    .integrations-wrapper {
      display: grid;
      grid-template-columns: 1fr 1.3fr;
      align-items: center;
      gap: 60px;
    }

    .integrations-left .badge {
      margin-bottom: 16px;
    }

    .integrations-left h2 {
      font-size: 2.3rem;
      font-weight: 800;
      line-height: 1.2;
      letter-spacing: -0.8px;
      margin-bottom: 14px;
    }

    .integrations-left p {
      color: var(--text-muted);
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 24px;
      max-width: 400px;
    }

    .view-all-link {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      color: var(--primary);
      font-weight: 700;
      font-size: 0.95rem;
    }
    .view-all-link:hover {
      gap: 10px;
    }

    .integrations-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
    }

    .integration-card {
      background: #FFFFFF;
      border: 1px solid var(--border-light);
      border-radius: var(--radius-md);
      padding: 18px 14px;
      display: flex;
      align-items: center;
      gap: 10px;
      box-shadow: 0 2px 8px rgba(0,0,0,0.02);
      font-size: 0.88rem;
      font-weight: 700;
      color: var(--text-dark);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .integration-card:hover {
      transform: translateY(-2px);
      box-shadow: 0 8px 16px rgba(0,0,0,0.05);
      border-color: #E2E8F0;
    }

    .integration-icon {
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    /* ==========================================
       HOW IT WORKS SECTION
       ========================================== */
    .steps-container {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 30px;
      text-align: center;
    }

    /* Dashed line connecting steps */
    .steps-line {
      position: absolute;
      top: 36px;
      left: 18%;
      right: 18%;
      height: 2px;
      border-top: 2px dashed #E2E8F0;
      z-index: 0;
    }

    .step-card {
      position: relative;
      z-index: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .step-icon-box {
      position: relative;
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 22px;
      box-shadow: 0 8px 24px rgba(0,0,0,0.06);
    }

    .step-number {
      position: absolute;
      top: -2px;
      left: -2px;
      width: 24px;
      height: 24px;
      border-radius: 50%;
      color: #FFF;
      font-size: 0.75rem;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    }

    .step-card h3 {
      font-size: 1.25rem;
      font-weight: 700;
      margin-bottom: 10px;
    }

    .step-card p {
      font-size: 0.88rem;
      color: var(--text-muted);
      line-height: 1.55;
      max-width: 280px;
    }

    /* ==========================================
       PRICING SECTION
       ========================================== */
    .pricing-toggle-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 14px;
      margin-bottom: 45px;
      font-size: 0.92rem;
      font-weight: 600;
      color: var(--text-muted);
    }

    .pricing-toggle-wrapper .active-label {
      color: var(--text-dark);
    }

    .discount-tag {
      color: #10B981;
      font-size: 0.85rem;
      font-weight: 700;
      margin-left: 2px;
    }

    .toggle-switch {
      position: relative;
      width: 48px;
      height: 26px;
      background: #CBD5E1;
      border-radius: 30px;
      cursor: pointer;
      transition: background 0.3s;
    }

    .toggle-switch.active {
      background: var(--primary);
    }

    .toggle-knob {
      position: absolute;
      top: 3px;
      left: 3px;
      width: 20px;
      height: 20px;
      background: #FFF;
      border-radius: 50%;
      transition: transform 0.3s;
      box-shadow: 0 2px 4px rgba(0,0,0,0.2);
    }

    .toggle-switch.active .toggle-knob {
      transform: translateX(22px);
    }

    .pricing-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 22px;
      margin-bottom: 30px;
    }

    .pricing-card {
      position: relative;
      background: #FFFFFF;
      border: 1px solid var(--border-color);
      border-radius: var(--radius-lg);
      padding: 32px 24px;
      display: flex;
      flex-direction: column;
      transition: transform 0.25s ease, box-shadow 0.25s ease;
      border:1px solid #eee;
    }

    .pricing-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .pricing-card.featured {
      border: 2px solid #6366F1;
      box-shadow: 0 10px 30px rgba(99, 102, 241, 0.12);
    }

    .featured-badge {
      position: absolute;
      top: -13px;
      left: 50%;
      transform: translateX(-50%);
      background: var(--primary-gradient);
      color: #FFF;
      font-size: 0.72rem;
      font-weight: 700;
      padding: 4px 14px;
      border-radius: var(--radius-full);
      box-shadow: 0 4px 10px rgba(67, 68, 247, 0.3);
    }

    .plan-name {
      font-size: 1.25rem;
      font-weight: 800;
      margin-bottom: 6px;
    }

    .plan-desc {
      font-size: 0.8rem;
      color: var(--text-muted);
      min-height: 38px;
      line-height: 1.45;
      margin-bottom: 18px;
    }

    .plan-price-box {
      margin-bottom: 22px;
    }

    .plan-price {
      font-size: 2.4rem;
      font-weight: 800;
      letter-spacing: -1px;
      color: #3B4BF7;
      line-height: 1;
    }

    .plan-price .period {
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
      letter-spacing: normal;
    }

    .plan-billed {
      font-size: 0.75rem;
      color: var(--text-light);
      margin-top: 4px;
    }

    .plan-features {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
      margin-bottom: 28px;
      flex: 1;
    }

    .plan-features li {
      font-size: 0.83rem;
      color: #334155;
      font-weight: 500;
    }

    .pricing-card .btn-outline,
    .pricing-card .btn-primary {
      width: 100%;
      padding: 10px 0;
      font-size: 0.9rem;
    }

    .guarantee-box {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--text-muted);
      margin-top: 15px;
    }

   

    /* ==========================================
       FOOTER
       ========================================== */
    .footer {
      background: var(--dark-navy);
      color: #FFF;
      padding: 70px 0 30px;
      font-size: 0.88rem;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.3fr 0.8fr 0.8fr 0.9fr 1.2fr;
      gap: 40px;
      margin-bottom: 60px;
    }

    .footer-brand .logo {
      color: #FFF;
      margin-bottom: 16px;
    }

    .footer-brand .logo span {
      color: #64748B;
    }

    .footer-brand p {
      color: #94A3B8;
      font-size: 0.83rem;
      line-height: 1.6;
      margin-bottom: 24px;
      max-width: 250px;
    }

    .social-links {
      display: flex;
      gap: 12px;
    }

    .social-btn {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #151D3D;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #94A3B8;
      font-size: 0.85rem;
      transition: 0.2s;
    }
    .social-btn:hover {
      background: var(--primary);
      color: #FFF;
    }

    .footer-col h4 {
      font-size: 0.95rem;
      font-weight: 700;
      margin-bottom: 20px;
      color: #FFF;
    }

    .footer-col ul {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-col a {
      color: #94A3B8;
      font-size: 0.83rem;
    }
    .footer-col a:hover {
      color: #FFF;
    }

    .newsletter-text {
      color: #94A3B8;
      font-size: 0.83rem;
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .newsletter-form {
      display: flex;
      align-items: center;
      background: #121A3D;
      border: 1px solid #1E2B58;
      border-radius: var(--radius-full);
      padding: 4px 5px 4px 14px;
    }

    .newsletter-form input {
      background: transparent;
      border: none;
      outline: none;
      color: #FFF;
      font-size: 0.8rem;
      font-family: inherit;
      width: 100%;
    }

    .newsletter-form button {
      background: var(--primary-gradient);
      color: #FFF;
      font-size: 0.8rem;
      font-weight: 600;
      padding: 8px 16px;
      border-radius: var(--radius-full);
    }

    .footer-bottom {
      border-top: 1px solid #141E43;
      padding-top: 24px;
      text-align: center;
      font-size: 0.78rem;
      color: #64748B;
    }

    /* ==========================================
       RESPONSIVE DESIGN
       ========================================== */
    @media (max-width: 1080px) {
      .features-grid,
      .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .integrations-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 36px;
      }
      .integrations-left p {
        margin: 0 auto 24px;
      }
      .footer-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 860px) {
      .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 50px;
      }
      .hero-content h1 {
        font-size: 2.6rem;
      }
      .hero-desc {
        margin: 0 auto 30px;
      }
      .hero-actions {
        justify-content: center;
      }
      .hero-checklist {
        justify-content: center;
      }
      .trusted-by {
        text-align: center;
      }
      .trusted-logos {
        justify-content: center;
      }
      .hero-visual {
        justify-content: center;
      }
      .robot-graphic {
        display: none;
      }
      .chat-preview-card {
        margin: 0 auto;
      }
      .steps-container {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .steps-line {
        display: none;
      }
      .cta-banner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 40px 24px;
      }
      .cta-left {
        flex-direction: column;
      }
      .nav-menu, .nav-right {
        display: none;
      }
      .mobile-menu-btn {
        display: block;
      }
      .nav-menu.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #FFF;
        padding: 24px;
        box-shadow: 0 10px 25px rgba(0,0,0,0.1);
        gap: 16px;
      }
    }

    @media (max-width: 580px) {
      .features-grid,
      .pricing-grid {
        grid-template-columns: 1fr;
      }
      .integrations-grid {
        grid-template-columns: repeat(2, 1fr);
      }
      .footer-grid {
        grid-template-columns: 1fr;
      }
      .hero-content h1 {
        font-size: 2.1rem;
      }
    }
    
    
    
    
    /* ==========================================
   CHAT PREVIEW - FIXED HEIGHT
   ========================================== */

.chat-preview-card {
  height: 500px;
  max-height: 500px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}


/* ==========================================
   CHAT HEADER
   ========================================== */

.chat-header {
  flex-shrink: 0;
}


/* ==========================================
   CHAT BODY
   ========================================== */

.chat-body {
  height: 100%;
  min-height: 0;
  flex: 1;

  overflow-y: auto;
  overflow-x: hidden;

  padding: 18px;

  scroll-behavior: smooth;
}


/* Custom Scrollbar */

.chat-body::-webkit-scrollbar {
  width: 5px;
}

.chat-body::-webkit-scrollbar-track {
  background: transparent;
}

.chat-body::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 10px;
}

.chat-body::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}


/* Firefox */

.chat-body {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
}


/* ==========================================
   CHAT FOOTER
   ========================================== */

.chat-footer {
  flex-shrink: 0;
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-3390559 *//* ==========================================
   INTEGRATIONS SECTION
   ========================================== */

.integrations-section {
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
}

.integrations-container {
  
  margin: 0 auto;

  display: grid;
  grid-template-columns: 310px 1fr;
  align-items: center;
  gap: 55px;
}


/* ==========================================
   LEFT CONTENT
   ========================================== */

.integrations-content {
  padding-top: 3px;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 13px;

  border-radius: 999px;

  background: #eef2ff;
  color: #4f46e5;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;

  line-height: 1;
  margin-bottom: 16px;
}

.integration-badge span {
  font-size: 11px;
}

.integrations-content h2 {
  margin: 0 0 14px;
  color: #0f1f46;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;

  letter-spacing: -0.7px;
}

.integrations-content p {
  margin: 0 0 20px;

  color: #71809c;

  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
}

.integration-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #315df6;

  text-decoration: none;

  font-size: 12px;
  font-weight: 700;

  transition: gap 0.2s ease;
}

.integration-link span {
  font-size: 17px;
  line-height: 1;
}

.integration-link:hover {
  gap: 11px;
}


/* ==========================================
   INTEGRATION GRID
   ========================================== */

.integration-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}


/* ==========================================
   INTEGRATION CARD
   ========================================== */

.integration-card {
  height: 74px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;

  border: 1px solid #e7ebf3;
  border-radius: 9px;

  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.025);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;

  box-sizing: border-box;
}

.integration-card:hover {
  transform: translateY(-2px);

  border-color: #d9e0ee;

  box-shadow:
    0 8px 22px rgba(15, 23, 42, 0.07);
}


/* ==========================================
   LOGO
   ========================================== */

.integration-card img {
  width: 34px;
  height: 34px;

  object-fit: contain;

  flex-shrink: 0;
}

.integration-card span {
  color: #263653;

  font-size: 13px;
  font-weight: 700;

  line-height: 1.2;
}


/* ==========================================
   MORE CARD
   ========================================== */

.more-card {
  gap: 13px;
}

.more-icon {
  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: #f1f3f7;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.more-icon span {
  color: #69758b;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1px;

  margin-top: -4px;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 1000px) {

  .integrations-container {
    width: min(900px, calc(100% - 50px));

    grid-template-columns: 1fr;

    gap: 35px;
  }

  .integrations-content {
    text-align: center;
  }

  .integration-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 700px) {

  .integrations-section {
    padding: 55px 0;
  }

  .integrations-container {
    width: calc(100% - 32px);
  }

  .integrations-content h2 {
    font-size: 25px;
  }

  .integrations-content p {
    font-size: 13px;
  }

  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .integration-card {
    height: 68px;
    padding: 0 14px;
  }

  .integration-card img,
  .more-icon {
    width: 30px;
    height: 30px;
  }

  .integration-card span {
    font-size: 12px;
  }

  .desktop-break {
    display: none;
  }

}


/* ==========================================
   SMALL MOBILE
   ========================================== */

@media (max-width: 400px) {

  .integration-grid {
    grid-template-columns: 1fr 1fr;
  }

  .integration-card {
    gap: 9px;
    padding: 0 10px;
  }

  .integration-card img,
  .more-icon {
    width: 27px;
    height: 27px;
  }

  .integration-card span {
    font-size: 11px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c43189d *//* ==========================================
   INTEGRATIONS SECTION
   ========================================== */

.integrations-section {
  width: 100%;
  padding: 70px 0;
  background: #ffffff;
}

.integrations-container {
  
  margin: 0 auto;

  display: grid;
  grid-template-columns: 310px 1fr;
  align-items: center;
  gap: 55px;
}


/* ==========================================
   LEFT CONTENT
   ========================================== */

.integrations-content {
  padding-top: 3px;
}

.integration-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  padding: 7px 13px;

  border-radius: 999px;

  background: #eef2ff;
  color: #4f46e5;

  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.4px;

  line-height: 1;
  margin-bottom: 16px;
}

.integration-badge span {
  font-size: 11px;
}

.integrations-content h2 {
  margin: 0 0 14px;
  color: #0f1f46;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 800;

  letter-spacing: -0.7px;
}

.integrations-content p {
  margin: 0 0 20px;

  color: #71809c;

  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
}

.integration-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;

  color: #315df6;

  text-decoration: none;

  font-size: 12px;
  font-weight: 700;

  transition: gap 0.2s ease;
}

.integration-link span {
  font-size: 17px;
  line-height: 1;
}

.integration-link:hover {
  gap: 11px;
}


/* ==========================================
   INTEGRATION GRID
   ========================================== */

.integration-grid {
  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 20px;
}


/* ==========================================
   INTEGRATION CARD
   ========================================== */

.integration-card {
  height: 74px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  background: #ffffff;

  border: 1px solid #e7ebf3;
  border-radius: 9px;

  box-shadow:
    0 2px 8px rgba(15, 23, 42, 0.025);

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;

  box-sizing: border-box;
}

.integration-card:hover {
  transform: translateY(-2px);

  border-color: #d9e0ee;

  box-shadow:
    0 8px 22px rgba(15, 23, 42, 0.07);
}


/* ==========================================
   LOGO
   ========================================== */

.integration-card img {
  width: 34px;
  height: 34px;

  object-fit: contain;

  flex-shrink: 0;
}

.integration-card span {
  color: #263653;

  font-size: 13px;
  font-weight: 700;

  line-height: 1.2;
}


/* ==========================================
   MORE CARD
   ========================================== */

.more-card {
  gap: 13px;
}

.more-icon {
  width: 34px;
  height: 34px;

  border-radius: 50%;

  background: #f1f3f7;

  display: flex;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
}

.more-icon span {
  color: #69758b;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 1px;

  margin-top: -4px;
}


/* ==========================================
   TABLET
   ========================================== */

@media (max-width: 1000px) {

  .integrations-container {
    width: min(900px, calc(100% - 50px));

    grid-template-columns: 1fr;

    gap: 35px;
  }

  .integrations-content {
    text-align: center;
  }

  .integration-grid {
    grid-template-columns: repeat(4, 1fr);
  }

}


/* ==========================================
   MOBILE
   ========================================== */

@media (max-width: 700px) {

  .integrations-section {
    padding: 55px 0;
  }

  .integrations-container {
    width: calc(100% - 32px);
  }

  .integrations-content h2 {
    font-size: 25px;
  }

  .integrations-content p {
    font-size: 13px;
  }

  .integration-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .integration-card {
    height: 68px;
    padding: 0 14px;
  }

  .integration-card img,
  .more-icon {
    width: 30px;
    height: 30px;
  }

  .integration-card span {
    font-size: 12px;
  }

  .desktop-break {
    display: none;
  }

}


/* ==========================================
   SMALL MOBILE
   ========================================== */

@media (max-width: 400px) {

  .integration-grid {
    grid-template-columns: 1fr 1fr;
  }

  .integration-card {
    gap: 9px;
    padding: 0 10px;
  }

  .integration-card img,
  .more-icon {
    width: 27px;
    height: 27px;
  }

  .integration-card span {
    font-size: 11px;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-08d0c4a *//* ==========================================
   CTA BANNER SECTION
   ========================================== */

.cta-banner-wrapper {
  padding: 40px 0 80px;
}

.cta-banner {
  position: relative;

  background: linear-gradient(
    135deg,
    #1B3BF5 0%,
    #6830F6 100%
  );

  border-radius: 28px;

  padding: 32px 56px;

  color: #fff;

  display: flex;
  align-items: center;
  justify-content: space-between;

  overflow: hidden;

  box-shadow:
    0 20px 45px rgba(45, 53, 245, 0.25);
}


/* ==========================================
   LEFT SIDE
   ========================================== */

.cta-left {
  display: flex;
  align-items: center;

  gap: 28px;

  max-width: 700px;
}


/* ==========================================
   CTA ROBOT IMAGE
   ========================================== */

.cta-robot {
  width: 150px;
  height: 150px;

  flex-shrink: 0;

  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-robot img {
  width: 100%;
  height: 100%;

  display: block;

  object-fit: contain;
}


/* ==========================================
   CTA CONTENT
   ========================================== */

.cta-content {
  position: relative;
  z-index: 2;
}

.cta-left h2 {
  font-size: 1.85rem;

  font-weight: 800;

  line-height: 1.25;

  margin: 0 0 8px;
}

.cta-left p {
  font-size: 0.92rem;

  opacity: 0.9;

  line-height: 1.5;

  margin: 0;

  max-width: 560px;
}


/* ==========================================
   RIGHT SIDE
   ========================================== */

.cta-right {
  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 10px;

  flex-shrink: 0;

  position: relative;

  z-index: 2;
}

.cta-right .btn-white {
  color: #1B3BF5;
}

.cta-micro {
  font-size: 0.75rem;

  opacity: 0.85;
}


/* ==========================================
   RESPONSIVE
   ========================================== */

@media (max-width: 900px) {

  .cta-banner {
    padding: 32px;
  }

  .cta-left {
    gap: 18px;
  }

  .cta-robot {
    width: 120px;
    height: 120px;
  }

  .cta-left h2 {
    font-size: 1.55rem;
  }

  .cta-left p {
    font-size: 0.85rem;
  }

}


@media (max-width: 700px) {

  .cta-banner {
    padding: 35px 25px;

    flex-direction: column;

    text-align: center;

    gap: 28px;
  }

  .cta-left {
    flex-direction: column;

    gap: 15px;

    max-width: 100%;
  }

  .cta-robot {
    width: 130px;
    height: 130px;
  }

  .cta-left h2 {
    font-size: 1.55rem;
  }

  .cta-left p {
    font-size: 0.85rem;
  }

  .cta-right {
    width: 100%;
  }

}


@media (max-width: 480px) {

  .cta-banner {
    border-radius: 20px;

    padding: 30px 20px;
  }

  .cta-robot {
    width: 115px;
    height: 115px;
  }

  .cta-left h2 {
    font-size: 1.35rem;
  }

  .cta-left p {
    font-size: 0.8rem;
  }

}/* End custom CSS */