/* angebot-ki.css — KI-Training für Coaches specific styles */

/* HERO — ki-specific background image and overlay */
#hero {
  background-image: url('https://images.unsplash.com/photo-1620712943543-bcc4688e7485?w=1400&q=80&auto=format&fit=crop');
  background-position: center 35%;
}
#hero::before {
  background:
    radial-gradient(ellipse 60% 50% at 30% 55%, rgba(200,137,42,.12) 0%, transparent 65%),
    radial-gradient(ellipse 40% 60% at 80% 20%, rgba(61,107,142,.12) 0%, transparent 55%),
    linear-gradient(rgba(10,10,11,.73), rgba(10,10,11,.73));
}

/* HERO sub — ki uses slightly wider max-width */
.hero-sub { max-width: 520px; }

/* PROBLEM — ki uses bg-surface */
#problem { background: var(--bg-surface); }

/* MODULE */
#module { background: var(--bg); }
.module-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.modul {
  background: var(--bg);
  padding: 2.25rem;
  transition: background .25s;
}
.modul:hover { background: var(--bg-surface); }
.modul-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 1.25rem;
  opacity: .6;
}
.modul h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 300; margin-bottom: .5rem; }
.modul-dauer { font-size: .65rem; letter-spacing: .09em; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.modul ul { list-style: none; }
.modul ul li {
  font-size: .78rem;
  color: var(--text-secondary);
  padding: .35rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  gap: .65rem;
  line-height: 1.5;
}
.modul ul li::before { content: '→'; color: var(--text-muted); flex-shrink: 0; }

/* LEISTUNGEN — ki uses leistung-grid (not feat-grid) */
#leistungen { background: var(--bg-surface); }
.leistung-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}
.leistung-cell {
  background: var(--bg-surface);
  padding: 2rem 2.25rem;
  transition: background .25s;
}
.leistung-cell:hover { background: var(--bg-elevated); }
.leistung-icon { font-size: 1.3rem; margin-bottom: 1.25rem; display: block; opacity: .7; }
.leistung-cell h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 300; margin-bottom: .55rem; }
.leistung-cell p { font-size: .79rem; color: var(--text-secondary); line-height: 1.75; }

/* PAKETE — ki uses bg (not bg-surface) */
#pakete { background: var(--bg); }
.paket { background: var(--bg); }

/* ABLAUF */
#ablauf { background: var(--bg-surface); }
.ablauf-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
  background: var(--border);
  border: 1px solid var(--border);
}
.ablauf-step { background: var(--bg-surface); padding: 2.25rem; }
.ablauf-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--bg-elevated);
  line-height: 1;
  margin-bottom: 1rem;
}
.ablauf-step h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 300; margin-bottom: .55rem; }
.ablauf-step p { font-size: .79rem; color: var(--text-secondary); line-height: 1.75; }

/* FAQ */
#faq { background: var(--bg); }
.faq-list { max-width: 720px; }
.faq-item { border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.faq-q {
  font-size: .85rem;
  color: var(--text-primary);
  margin-bottom: .75rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.faq-q::after {
  content: '+';
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform .2s;
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a { font-size: .8rem; color: var(--text-secondary); line-height: 1.85; display: none; }
.faq-item.open .faq-a { display: block; }

/* KONTAKT — ki uses bg-surface */
#kontakt { background: var(--bg-surface); }

/* RESPONSIVE */
@media(max-width:1024px) {
  .ablauf-steps { grid-template-columns: 1fr; }
}
