@charset "UTF-8";
/* ==================== KI Agentur - Unified Design (wie ki-schulung.css) ==================== */
/* ==================== GLOBAL TEXT BREAKING FIXES ==================== */
* {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

h1, h2, h3, h4, h5, h6 {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

p, span, div {
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
}

/* ==================== Service Cards Section (EXAKT wie ki-schulung.css) ==================== */
.ki-services-section {
  padding: 80px 0;
  background: #000000;
}

.ki-services-title {
  font-size: 48px;
  font-weight: 600;
  color: #ffffff;
  text-align: center;
  margin-bottom: 20px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .ki-services-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
}

.ki-services-subtitle {
  font-size: 18px;
  color: #888888;
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .ki-services-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
  }
}

/* EXAKT wie course-grid - FIXED RESPONSIVE */
.ki-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  gap: 16px;
}
@media (max-width: 991px) {
  .ki-services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
}
@media (max-width: 767px) {
  .ki-services-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 500px;
    margin: 0 auto;
  }
}
@media (max-width: 575px) {
  .ki-services-grid {
    max-width: 400px;
    gap: 12px;
  }
}

/* EXAKT wie course-card */
.ki-service-card {
  background: #111111;
  border: 1px solid #333333;
  border-radius: 8px;
  overflow: hidden;
  transition: all 0.2s ease;
  cursor: pointer;
}
.ki-service-card:hover {
  border-color: #666666;
  transform: translateY(-2px);
}

/* EXAKT wie course-header */
.ki-service-card-header {
  padding: 20px;
  border-bottom: 1px solid #333333;
  position: relative;
}

/* EXAKT wie course-badge */
.ki-service-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #ffffff;
  color: #000000;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ki-service-badge.new {
  background: #00d8ff;
}
.ki-service-badge.premium {
  background: #ff0080;
  color: #ffffff;
}
.ki-service-badge.trending {
  background: #f5a623;
}
.ki-service-badge.expert {
  background: #7c3aed;
  color: #ffffff;
}

/* EXAKT wie course-title */
.ki-service-title {
  font-size: 18px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 8px;
  line-height: 1.3;
}

/* EXAKT wie course-meta */
.ki-service-meta {
  display: flex;
  gap: 16px;
  font-size: 12px;
  color: #666666;
}

/* EXAKT wie course-body */
.ki-service-card-body {
  padding: 20px;
}

/* EXAKT wie course-description */
.ki-service-description {
  color: #888888;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 16px;
}

/* EXAKT wie course-content */
.ki-service-content {
  margin-bottom: 20px;
  padding: 16px;
  background: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 6px;
}

/* EXAKT wie course-content h5 */
.ki-service-content h5 {
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}

/* EXAKT wie course-content ul */
.ki-service-content ul {
  margin: 0;
  padding-left: 20px;
  list-style: none;
}

/* EXAKT wie course-content li */
.ki-service-content li {
  color: #888888;
  font-size: 12px;
  line-height: 1.4;
  margin-bottom: 6px;
  position: relative;
}

/* EXAKT wie course-content li:before */
.ki-service-content li:before {
  content: "•";
  color: #666666;
  position: absolute;
  left: -15px;
}

/* EXAKT wie course-features */
.ki-service-features {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.ki-service-feature-tag {
  background: #1a1a1a;
  border: 1px solid #333333;
  color: #888888;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 500;
}

.ki-service-cta {
  background: #ffffff;
  color: #000000;
  padding: 10px 20px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s ease;
  border: 1px solid #ffffff;
}
.ki-service-cta:hover {
  background: #f0f0f0;
  color: #000000;
  text-decoration: none;
}
.ki-service-cta svg {
  transition: transform 0.2s ease;
}
.ki-service-cta:hover svg {
  transform: translateX(2px);
}

/* ==================== Process Steps Section ==================== */
.process-steps-section {
  background: #111111;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .process-steps-section {
    padding: 24px 20px;
  }
}

.process-steps-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .process-steps-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .process-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: 32px; /* MEHR ABSTAND zwischen Steps */
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  .process-steps-grid {
    gap: 28px;
    max-width: 400px;
  }
}

.process-step {
  text-align: center;
  position: relative;
}

.process-step-number {
  width: 60px;
  height: 60px;
  background: #00d8ff;
  color: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 24px; /* MEHR ABSTAND */
}
@media (max-width: 767px) {
  .process-step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 20px; /* MEHR ABSTAND */
  }
}
@media (max-width: 575px) {
  .process-step-number {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.process-step-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px; /* MEHR ABSTAND */
  line-height: 1.3;
  word-wrap: break-word; /* TEXT BREAKING FIX */
  hyphens: auto;
}
@media (max-width: 767px) {
  .process-step-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
@media (max-width: 575px) {
  .process-step-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

.process-step-description {
  color: #888888;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px; /* MEHR BREITE */
  margin: 0 auto;
  word-wrap: break-word; /* TEXT BREAKING FIX */
  hyphens: auto;
}
@media (max-width: 767px) {
  .process-step-description {
    font-size: 13px;
    max-width: 280px;
  }
}
@media (max-width: 575px) {
  .process-step-description {
    font-size: 12px;
    max-width: 260px;
  }
}

/* ==================== Benefits Section ==================== */
.benefits-section {
  padding: 60px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
@media (max-width: 991px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 767px) {
  .benefits-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (max-width: 575px) {
  .benefits-grid {
    gap: 16px;
    max-width: 400px;
  }
}

.benefit-item {
  background: #111111;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 24px;
  transition: all 0.2s ease;
  text-align: center;
}
.benefit-item:hover {
  border-color: #666666;
  transform: translateY(-2px);
}
@media (max-width: 767px) {
  .benefit-item {
    padding: 20px;
  }
}

.benefit-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #00d8ff 0%, #0ea5e9 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: #000000;
  font-size: 24px;
}

.benefit-title {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px; /* MEHR ABSTAND */
  line-height: 1.3;
  word-wrap: break-word; /* TEXT BREAKING FIX */
  hyphens: auto;
}
@media (max-width: 767px) {
  .benefit-title {
    font-size: 16px;
    margin-bottom: 12px;
  }
}
@media (max-width: 575px) {
  .benefit-title {
    font-size: 15px;
    margin-bottom: 10px;
  }
}

.benefit-description {
  color: #888888;
  font-size: 14px;
  line-height: 1.6;
  word-wrap: break-word; /* TEXT BREAKING FIX */
  hyphens: auto;
}
@media (max-width: 767px) {
  .benefit-description {
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  .benefit-description {
    font-size: 12px;
  }
}

/* ==================== Project Examples Section ==================== */
.project-examples-section {
  background: #111111;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .project-examples-section {
    padding: 24px 20px;
  }
}

.project-examples-title {
  color: #ffffff;
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 32px;
  text-align: center;
  line-height: 1.3;
}
@media (max-width: 767px) {
  .project-examples-title {
    font-size: 24px;
    margin-bottom: 24px;
  }
}

.project-example {
  background: #0a0a0a;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 24px;
  margin-bottom: 16px;
  transition: all 0.2s ease;
}
.project-example:hover {
  border-color: #666666;
}
.project-example:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px) {
  .project-example {
    padding: 20px;
  }
}

.project-example-title {
  color: #00d8ff;
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;
  line-height: 1.3;
}

.project-example-description {
  color: #888888;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

/* ==================== Content Sections Styling ==================== */
.content-section {
  background: #111111;
  border: 1px solid #333333;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
}
@media (max-width: 767px) {
  .content-section {
    padding: 24px 20px;
    margin-bottom: 30px;
  }
}

.content-section h2 {
  color: #ffffff;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 24px;
  line-height: 1.3;
  word-wrap: break-word; /* TEXT BREAKING FIX */
  hyphens: auto;
}
@media (max-width: 767px) {
  .content-section h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media (max-width: 575px) {
  .content-section h2 {
    font-size: 22px;
    margin-bottom: 18px;
  }
}

.content-section h3 {
  color: #00d8ff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 16px; /* MEHR ABSTAND */
  margin-top: 28px; /* MEHR ABSTAND */
  line-height: 1.3;
  word-wrap: break-word; /* TEXT BREAKING FIX */
  hyphens: auto;
}
.content-section h3:first-of-type {
  margin-top: 0;
}
@media (max-width: 767px) {
  .content-section h3 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 24px;
  }
}
@media (max-width: 575px) {
  .content-section h3 {
    font-size: 16px;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}

.content-section p {
  color: #888888;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px; /* MEHR ABSTAND */
  word-wrap: break-word; /* TEXT BREAKING FIX */
  hyphens: auto;
}
@media (max-width: 767px) {
  .content-section p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
@media (max-width: 575px) {
  .content-section p {
    font-size: 13px;
    margin-bottom: 14px;
  }
}

.content-section ul.key-points {
  margin: 0;
  padding: 0;
  list-style: none;
}

.content-section ul.key-points li {
  color: #888888;
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 16px;
  padding-left: 28px;
  position: relative;
}
.content-section ul.key-points li::before {
  content: "✓";
  color: #10b981;
  position: absolute;
  left: 0;
  top: 2px;
  font-weight: bold;
  font-size: 16px;
  width: 20px;
  text-align: center;
}
@media (max-width: 767px) {
  .content-section ul.key-points li {
    font-size: 14px;
    margin-bottom: 14px;
    padding-left: 24px;
  }
  .content-section ul.key-points li::before {
    font-size: 14px;
    width: 16px;
    top: 1px;
  }
}

.content-section ol {
  margin: 0;
  padding-left: 20px;
  color: #888888;
}

.content-section ol li {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 12px;
}
@media (max-width: 767px) {
  .content-section ol li {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

/* ==================== Mobile Design Improvements ==================== */
@media (max-width: 991px) {
  .ki-services-section {
    padding: 60px 0;
  }
  .ki-services-grid {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media (max-width: 767px) {
  .ki-services-section {
    padding: 40px 0;
  }
  .ki-services-grid {
    max-width: 400px;
    padding: 0 16px;
  }
  .ki-service-card {
    margin-bottom: 16px;
  }
  .ki-service-card-header {
    padding: 20px 20px 12px;
  }
  .ki-service-card-body {
    padding: 16px 20px 20px;
  }
  .ki-service-icon {
    width: 40px;
    height: 40px;
    font-size: 18px;
    margin-bottom: 12px;
  }
  .ki-service-title {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .ki-service-subtitle {
    font-size: 13px;
  }
  .ki-service-description {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .ki-service-features h6 {
    font-size: 13px;
    margin-bottom: 10px;
  }
  .ki-service-cta {
    padding: 8px 16px;
    font-size: 13px;
    width: 100%;
    justify-content: center;
  }
  .benefits-section {
    padding: 40px 0;
  }
  .benefits-grid {
    padding: 0 16px;
  }
  .benefit-item {
    margin-bottom: 16px;
  }
  .benefit-icon {
    width: 50px;
    height: 50px;
    font-size: 20px;
    margin-bottom: 16px;
  }
  .benefit-title {
    font-size: 16px;
    margin-bottom: 10px;
  }
  .benefit-description {
    font-size: 13px;
  }
}
/* ==================== Call-to-Action Section ==================== */
.cta-section {
  background: linear-gradient(135deg, #111111 0%, #0a0a0a 100%);
  border: 1px solid #00d8ff;
  border-radius: 8px;
  padding: 60px 40px;
  text-align: center;
  margin: 60px 0;
}
@media (max-width: 767px) {
  .cta-section {
    padding: 40px 20px;
    margin: 40px 0;
  }
}

.cta-title {
  color: #ffffff;
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .cta-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
}

.cta-subtitle {
  color: #888888;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 767px) {
  .cta-subtitle {
    font-size: 16px;
    margin-bottom: 24px;
  }
}

.cta-button {
  background: #00d8ff;
  color: #000000;
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s ease;
  border: 2px solid #00d8ff;
}
.cta-button:hover {
  background: transparent;
  color: #00d8ff;
  text-decoration: none;
}
.cta-button svg {
  transition: transform 0.2s ease;
}
.cta-button:hover svg {
  transform: translateX(4px);
}
@media (max-width: 767px) {
  .cta-button {
    padding: 14px 24px;
    font-size: 14px;
  }
}

/* ==================== Extra Small Mobile (≤575px) ==================== */
@media (max-width: 575px) {
  .ki-services-title {
    font-size: 28px;
    margin-bottom: 12px;
  }
  .ki-services-subtitle {
    font-size: 14px;
    margin-bottom: 30px;
  }
  .ki-services-grid {
    max-width: 340px;
    padding: 0 12px;
    gap: 12px;
  }
  .ki-service-card-header {
    padding: 16px 16px 10px;
  }
  .ki-service-card-body {
    padding: 12px 16px 16px;
  }
  .ki-service-icon {
    width: 36px;
    height: 36px;
    font-size: 16px;
    margin-bottom: 10px;
  }
  .ki-service-title {
    font-size: 16px;
    margin-bottom: 4px;
  }
  .ki-service-subtitle {
    font-size: 12px;
  }
  .ki-service-description {
    font-size: 12px;
    margin-bottom: 14px;
  }
  .ki-service-features h6 {
    font-size: 12px;
    margin-bottom: 8px;
  }
  .ki-service-cta {
    padding: 6px 12px;
    font-size: 12px;
  }
  .content-section {
    padding: 20px 16px;
    margin-bottom: 24px;
  }
  .content-section h2 {
    font-size: 20px;
    margin-bottom: 16px;
  }
  .content-section h3 {
    font-size: 16px;
    margin-bottom: 8px;
    margin-top: 16px;
  }
  .content-section p {
    font-size: 13px;
    margin-bottom: 12px;
  }
  .content-section ul.key-points li {
    font-size: 13px;
    margin-bottom: 12px;
    padding-left: 22px;
  }
  .content-section ul.key-points li::before {
    font-size: 13px;
    width: 15px;
  }
  .process-steps-section {
    padding: 20px 16px;
  }
  .process-steps-title {
    font-size: 20px;
    margin-bottom: 12px;
  }
  .process-step-number {
    width: 44px;
    height: 44px;
    font-size: 18px;
    margin-bottom: 12px;
  }
  .process-step-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .process-step-description {
    font-size: 12px;
  }
  .project-examples-section {
    padding: 20px 16px;
  }
  .project-examples-title {
    font-size: 20px;
    margin-bottom: 20px;
  }
  .project-example {
    padding: 16px;
    margin-bottom: 12px;
  }
  .project-example-title {
    font-size: 14px;
    margin-bottom: 6px;
  }
  .project-example-description {
    font-size: 12px;
  }
  .cta-section {
    padding: 30px 16px;
    margin: 30px 0;
  }
  .cta-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .cta-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  .cta-button {
    padding: 12px 20px;
    font-size: 13px;
  }
}
