/* ===================== Mikroklima — Solution Landing ===================== */

.mk-title {
  text-align: center;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  color: var(--bd-blue);
  margin: 0 0 8px;
}
.mk-title::after {
  content: "";
  display: block;
  width: 58px;
  height: 3px;
  background: var(--bd-orange);
  border-radius: 2px;
  margin: 14px auto 0;
}
.mk-section { padding: 54px 0; background: var(--bd-bg-soft); }

/* ---------- Hero ---------- */
.mk-hero {
  background:
    radial-gradient(120% 120% at 80% 20%, #eaf1ff 0%, #ffffff 60%);
  overflow: hidden;
}
.mk-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding-top: 54px;
  padding-bottom: 60px;
}
.mk-eyebrow {
  color: var(--bd-orange);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  margin: 0 0 14px;
}
.mk-hero-title {
  color: var(--bd-blue);
  font-size: clamp(44px, 6vw, 74px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.5px;
  margin: 0 0 12px;
}
.mk-hero-subtitle {
  color: var(--bd-blue);
  font-size: clamp(20px, 2.4vw, 27px);
  font-weight: 700;
  margin: 0 0 22px;
}
.mk-hero-lead {
  color: var(--bd-grey);
  font-size: 17px;
  max-width: 460px;
  margin: 0 0 30px;
}
.mk-hero-actions { display: flex; flex-wrap: wrap; gap: 16px; }
.mk-hero-media { display: flex; justify-content: center; }
.mk-hero-img { width: 100%; max-width: 520px; height: auto; display: block; }
.mk-hero-media--empty {
  width: 100%;
  min-height: 360px;
  border-radius: 20px;
  background:
    radial-gradient(60% 60% at 50% 45%, #dfe9ff 0%, #eef3fd 70%, #f6f8fd 100%);
  border: 1px dashed #c9d5ef;
  position: relative;
}
.mk-hero-media--empty::after {
  content: "Wetterstation-Bild folgt";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9fb0d0;
  font-size: 14px;
  font-weight: 600;
}

/* ---------- Features ---------- */
.mk-feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.mk-feature {
  background: #fff;
  border: 1px solid var(--bd-line);
  border-radius: var(--bd-radius);
  padding: 26px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: box-shadow .2s, transform .2s;
}
.mk-feature:hover { box-shadow: var(--bd-shadow); transform: translateY(-3px); }
.mk-feature-icon {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  background: #eaf0fb;
  color: var(--bd-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.mk-feature-icon svg { width: 30px; height: 30px; }
.mk-feature-icon--accent { background: var(--bd-orange); color: #fff; }
.mk-feature-title { font-size: 17px; font-weight: 700; color: var(--bd-navy); margin: 0 0 6px; }
.mk-feature-text { font-size: 13.5px; line-height: 1.45; color: var(--bd-grey); margin: 0; }

/* ---------- Live-Daten ---------- */
.mk-live-panel {
  background: #fff;
  border: 1px solid var(--bd-line);
  border-radius: var(--bd-radius);
  box-shadow: var(--bd-shadow);
  padding: 30px 34px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px 34px;
}
.mk-metric { display: flex; gap: 14px; align-items: flex-start; }
.mk-metric-icon { color: var(--bd-blue); flex: none; margin-top: 2px; }
.mk-metric-icon svg { width: 30px; height: 30px; }
.mk-metric-body { min-width: 0; flex: 1; }
.mk-metric-value { font-size: 26px; font-weight: 800; color: var(--bd-navy); margin: 0; line-height: 1.1; }
.mk-metric-unit { font-size: 14px; font-weight: 600; color: var(--bd-grey); }
.mk-metric-label { font-size: 13px; color: var(--bd-grey); margin: 2px 0 0; }
.mk-spark { width: 100%; height: 26px; display: block; margin-top: 8px; color: var(--bd-blue); }
.mk-spark--green { color: #2fb457; }

/* ---------- Prozess ---------- */
.mk-flow-steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 6px;
}
.mk-step {
  position: relative;
  flex: 1 1 0;
  max-width: 210px;
  text-align: center;
  padding-top: 6px;
}
.mk-step-badge {
  position: absolute;
  top: 0;
  left: calc(50% - 46px);
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--bd-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.mk-step-icon {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  background: #eaf0fb;
  color: var(--bd-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.mk-step-icon svg { width: 38px; height: 38px; }
.mk-step-title { font-size: 16px; font-weight: 700; color: var(--bd-navy); margin: 0 0 5px; }
.mk-step-text { font-size: 13px; color: var(--bd-grey); margin: 0; }
.mk-step-arrow { flex: none; margin-top: 30px; align-self: flex-start; }

/* ---------- CTA ---------- */
.mk-cta-wrap { padding: 44px 0 56px; background: var(--bd-bg-soft); }
.mk-cta {
  background: var(--bd-blue);
  color: #fff;
  border-radius: 18px;
  padding: 36px 44px;
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
}
.mk-cta-illus { color: rgba(255, 255, 255, 0.55); flex: none; }
.mk-cta-copy { flex: 1 1 340px; }
.mk-cta-title { font-size: clamp(22px, 2.6vw, 28px); font-weight: 800; margin: 0 0 10px; line-height: 1.15; }
.mk-cta-text { font-size: 15px; margin: 0; color: rgba(255, 255, 255, 0.9); max-width: 480px; }
.mk-cta-actions { display: flex; flex-direction: column; gap: 12px; flex: none; }
.mk-cta-actions .bd-btn { justify-content: center; }
.mk-btn-white-outline { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.7); }
.mk-btn-white-outline:hover { background: #fff; color: var(--bd-blue); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .mk-feature-grid { grid-template-columns: repeat(2, 1fr); }
  .mk-live-panel { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 900px) {
  .mk-hero-inner { grid-template-columns: 1fr; }
  .mk-hero-media { order: -1; }
  .mk-hero-img, .mk-hero-media--empty { max-width: 420px; }
  .mk-flow-steps { flex-wrap: wrap; gap: 24px 6px; }
  .mk-step { flex-basis: 40%; max-width: none; }
  .mk-step-arrow { display: none; }
}
@media (max-width: 620px) {
  .mk-feature-grid { grid-template-columns: 1fr; }
  .mk-live-panel { grid-template-columns: 1fr; gap: 22px; padding: 24px; }
  .mk-cta { padding: 28px 24px; }
  .mk-cta-actions { width: 100%; }
  .mk-step { flex-basis: 100%; }
}
