@charset "UTF-8";
/* ============================================
   AIO SOLUTIONS Section Styles
   (AI Optimization - Next Generation SEO)
   ============================================ */
.ai-solutions-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
  background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.ai-solutions-section::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at 20% 30%, rgba(179, 27, 27, 0.03) 0%, transparent 50%), radial-gradient(circle at 80% 70%, rgba(179, 27, 27, 0.03) 0%, transparent 50%);
}

/* Section Title with NEW Badge */
.section-title-wrapper {
  display: flex;
  gap: 15px;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.new-badge {
  display: inline-flex;
  gap: 4px;
  align-items: center;
  padding: 6px 12px;
  font-size: 12px;
  font-weight: 600;
  color: #fff;
  letter-spacing: 0.05em;
  background: var(--accent-color);
  border-radius: 20px;
  animation: pulse-badge 2s ease-in-out infinite;
}

@keyframes pulse-badge {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(179, 27, 27, 0.4);
    transform: scale(1);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(179, 27, 27, 0);
    transform: scale(1.05);
  }
}
/* AI Cards Grid */
.ai-cards-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 60px;
}

/* AI Card */
.ai-card {
  position: relative;
  padding: 35px 30px;
  overflow: hidden;
  background: #fff;
  border: 2px solid transparent;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.ai-card::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  background: linear-gradient(135deg, rgba(179, 27, 27, 0.02) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Card Header */
.ai-card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
}

.ai-card-badge {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent-color);
  letter-spacing: 0.05em;
}

.ai-card-number {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 0;
  font-size: 72px;
  font-weight: 900;
  line-height: 1;
  color: #f5f5f5;
  -webkit-user-select: none;
          user-select: none;
}

/* Card Icon */
.ai-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, #fff5f5 0%, #fff 100%);
  border-radius: 50%;
  box-shadow: 0 4px 15px rgba(179, 27, 27, 0.1);
  transition: all 0.4s ease;
}

.ai-card-icon svg {
  width: 40px;
  height: 40px;
  stroke: var(--accent-color);
  stroke-width: 2;
}

/* Card Divider */
.ai-card-divider {
  width: 60px;
  height: 3px;
  margin: 0 auto 25px;
  background: linear-gradient(90deg, var(--accent-color) 0%, rgba(179, 27, 27, 0.3) 100%);
  border-radius: 2px;
}

/* Card Title */
.ai-card-title {
  position: relative;
  z-index: 1;
  margin-bottom: 25px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  color: #1a1a1a;
  text-align: center;
  letter-spacing: 0.01em;
}

/* Card List */
.ai-card-list {
  padding: 0;
  margin: 0 0 30px;
  list-style: none;
}

.ai-card-list li {
  position: relative;
  z-index: 1;
  padding-left: 0;
  font-size: 14px;
  line-height: 2;
  color: #555;
  letter-spacing: 0.02em;
}

.ai-card-list li::before {
  display: inline-block;
  margin-right: 8px;
  font-size: 10px;
  line-height: 1;
  color: #87CEEB;
  content: "⚪";
}

/* Card Tech Stack */
.ai-card-tech {
  position: relative;
  z-index: 1;
  padding: 10px 15px;
  font-size: 13px;
  font-weight: 600;
  color: #06c;
  text-align: center;
  letter-spacing: 0.03em;
  background: rgba(0, 102, 204, 0.05);
  border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .ai-cards-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
  }
}
@media (max-width: 768px) {
  .ai-solutions-section {
    padding: 80px 0;
  }
  .ai-cards-grid {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 40px;
  }
  .ai-card {
    padding: 30px 25px;
  }
  .ai-card-number {
    top: 15px;
    right: 15px;
    font-size: 56px;
  }
  .ai-card-icon {
    width: 70px;
    height: 70px;
  }
  .ai-card-icon svg {
    width: 35px;
    height: 35px;
  }
  .ai-card-title {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .ai-solutions-section {
    padding: 60px 0;
  }
  .section-title-wrapper {
    flex-direction: column;
    gap: 10px;
  }
  .new-badge {
    padding: 5px 10px;
    font-size: 11px;
  }
  .ai-card {
    padding: 25px 20px;
  }
  .ai-card-number {
    font-size: 48px;
  }
  .ai-card-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
  }
  .ai-card-icon svg {
    width: 30px;
    height: 30px;
  }
  .ai-card-title {
    margin-bottom: 20px;
    font-size: 17px;
  }
  .ai-card-list li {
    font-size: 13px;
    line-height: 1.9;
  }
  .ai-card-list li::before {
    font-size: 9px;
  }
  .ai-card-tech {
    padding: 8px 12px;
    font-size: 12px;
  }
}