.elementor-1194 .elementor-element.elementor-element-0cbc444{--display:flex;}:root{--page-title-display:none;}@media(max-width:767px){.elementor-1194 .elementor-element.elementor-element-0cbc444{--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}}/* Start custom CSS for html, class: .elementor-element-ca75678 *//* AI About Section - מינימליסטי מתקדם */
.ai-about-section {
  padding: 80px 0;
  background: linear-gradient(180deg, #fafbfc 0%, #ffffff 100%);
  direction: rtl;
  font-family: 'Heebo', 'Assistant', -apple-system, BlinkMacSystemFont, sans-serif;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

/* כותרת ראשית */
.intro-block {
  text-align: center;
  margin-bottom: 60px;
  position: relative;
}

.question-mark {
  display: inline-block;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #1d2942 0%, #2d3e57 100%);
  color: white;
  font-size: 32px;
  font-weight: 700;
  border-radius: 16px;
  line-height: 60px;
  margin-bottom: 20px;
  box-shadow: 0 8px 24px rgba(29, 41, 66, 0.15);
}

.main-title {
  font-size: 48px;
  font-weight: 700;
  color: #1d2942;
  margin: 0 0 30px 0;
  letter-spacing: -1px;
}

.company-intro {
  font-size: 20px;
  line-height: 1.6;
  color: #4a5568;
  max-width: 800px;
  margin: 0 auto;
}

.brand-highlight {
  color: #1d2942;
  font-weight: 700;
  font-size: 22px;
  position: relative;
}

.brand-highlight::after {
  content: '';
  position: absolute;
  bottom: -2px;
  right: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, #1d2942 0%, transparent 100%);
}

/* רשת תוכן */
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 70px;
}

.info-card {
  background: white;
  padding: 30px;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.info-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #1d2942 0%, #3a4f73 50%, transparent 100%);
}

.info-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(29, 41, 66, 0.1);
  border-color: rgba(29, 41, 66, 0.2);
}

.card-icon {
  font-size: 24px;
  margin-bottom: 15px;
  display: block;
}

.info-card p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin: 0;
}

.highlight-text {
  color: #1d2942;
  font-weight: 600;
  background: linear-gradient(135deg, rgba(29, 41, 66, 0.08) 0%, rgba(29, 41, 66, 0.04) 100%);
  padding: 2px 6px;
  border-radius: 4px;
}

/* קטע המייסד */
.founder-section {
  background: white;
  border-radius: 16px;
  padding: 40px;
  border: 1px solid #e2e8f0;
  position: relative;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #1d2942 0%, #3a4f73 100%);
  border-radius: 16px 16px 0 0;
}

.founder-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
}

.person-icon {
  font-size: 28px;
}

.founder-title {
  font-size: 28px;
  font-weight: 700;
  color: #1d2942;
  margin: 0;
}

.founder-content p {
  font-size: 16px;
  line-height: 1.7;
  color: #4a5568;
  margin-bottom: 20px;
}

.founder-content p:last-child {
  margin-bottom: 0;
}

/* טכנולוגיות */
.tech-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 25px 0;
  justify-content: flex-end;
}

.tech-item {
  background: linear-gradient(135deg, #1d2942 0%, #2d3e57 100%);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 500;
  display: inline-block;
  transition: all 0.2s ease;
}

.tech-item:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(29, 41, 66, 0.3);
}

.closing-text {
  font-weight: 500 !important;
  color: #2d3748 !important;
}

/* רספונסיביות */
@media (max-width: 768px) {
  .ai-about-section {
    padding: 50px 0;
  }
  
  .container {
    padding: 0 15px;
  }
  
  .question-mark {
    width: 50px;
    height: 50px;
    font-size: 28px;
    line-height: 50px;
  }
  
  .main-title {
    font-size: 36px;
    margin-bottom: 20px;
  }
  
  .company-intro {
    font-size: 18px;
  }
  
  .brand-highlight {
    font-size: 20px;
  }
  
  .content-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 50px;
  }
  
  .info-card {
    padding: 25px;
  }
  
  .founder-section {
    padding: 30px 20px;
  }
  
  .founder-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  
  .founder-title {
    font-size: 24px;
  }
  
  .tech-stack {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .ai-about-section {
    padding: 40px 0;
  }
  
  .container {
    padding: 0 10px;
  }
  
  .main-title {
    font-size: 28px;
  }
  
  .company-intro {
    font-size: 16px;
  }
  
  .brand-highlight {
    font-size: 18px;
  }
  
  .info-card {
    padding: 20px;
  }
  
  .founder-section {
    padding: 25px 15px;
  }
  
  .founder-title {
    font-size: 22px;
  }
  
  .founder-content p {
    font-size: 15px;
  }
  
  .tech-item {
    font-size: 13px;
    padding: 5px 10px;
  }
}/* End custom CSS */