/* ============================================================
   MAXIMAL24 — FRONTEND CSS
   Wird vom Shortcode automatisch geladen.
   Im Editor wird das gleiche CSS in den Canvas geladen.
   ============================================================ */

.m24-page-wrapper {
  --m24-bg: #ffffff;
  --m24-bg-light: #f7f7f8;
  --m24-bg-dark: #0d0d0d;
  --m24-text: #1a1a1a;
  --m24-text-mid: #4a4a4a;
  --m24-text-light: #717171;
  --m24-red: #c41e1e;
  --m24-red-light: #fef2f2;
  --m24-red-hover: #a51818;
  --m24-red-glow: rgba(196,30,30,0.08);
  --m24-green: #16a34a;
  --m24-green-light: #f0fdf4;
  --m24-border: #e5e5e5;
  --m24-border-light: #f0f0f0;
  --m24-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --m24-shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --m24-shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --m24-radius: 16px;
  --m24-radius-sm: 10px;
  --m24-font-display: 'Outfit', sans-serif;
  --m24-font-body: 'Plus Jakarta Sans', sans-serif;
  --m24-max-width: 1180px;
  --m24-section-pad: 100px;

  font-family: var(--m24-font-body);
  color: var(--m24-text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
.m24-page-wrapper * { box-sizing: border-box; }

/* Auch in iframes/standalone (für GrapesJS-Canvas) */
body, html { background: #fff; }
body.gjs-pasted, .gjs-cv-canvas iframe body {
  --m24-bg: #ffffff;
  --m24-bg-light: #f7f7f8;
  --m24-bg-dark: #0d0d0d;
  --m24-text: #1a1a1a;
  --m24-text-mid: #4a4a4a;
  --m24-text-light: #717171;
  --m24-red: #c41e1e;
  --m24-red-light: #fef2f2;
  --m24-red-hover: #a51818;
  --m24-red-glow: rgba(196,30,30,0.08);
  --m24-green: #16a34a;
  --m24-green-light: #f0fdf4;
  --m24-border: #e5e5e5;
  --m24-border-light: #f0f0f0;
  --m24-shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --m24-shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --m24-shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --m24-radius: 16px;
  --m24-radius-sm: 10px;
  --m24-font-display: 'Outfit', sans-serif;
  --m24-font-body: 'Plus Jakarta Sans', sans-serif;
  --m24-max-width: 1180px;
  --m24-section-pad: 100px;
  font-family: var(--m24-font-body);
  color: var(--m24-text);
  line-height: 1.6;
}

/* Container */
.m24-container {
  max-width: var(--m24-max-width, 1180px);
  margin: 0 auto;
  padding: 0 24px;
}

/* Section base */
.m24-section { padding: var(--m24-section-pad, 100px) 0; }
.m24-bg-alt  { background: var(--m24-bg-light, #f7f7f8); }

/* Label */
.m24-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--m24-red, #c41e1e);
  font-weight: 700;
  margin-bottom: 12px;
  display: block;
}
.m24-label.center { text-align: center; }

/* Title */
.m24-title {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: clamp(1.7rem, 3.2vw, 2.6rem);
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.8px;
  color: var(--m24-text, #1a1a1a);
  max-width: 680px;
  margin: 0 0 20px;
}
.m24-title em  { font-style: normal; color: var(--m24-red, #c41e1e); }
.m24-title .red { color: var(--m24-red, #c41e1e); }
.m24-title.center { text-align: center; margin-left: auto; margin-right: auto; }

/* Text */
.m24-text {
  font-size: 1rem;
  color: var(--m24-text-mid, #4a4a4a);
  max-width: 620px;
  line-height: 1.7;
}

/* Button */
.m24-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--m24-red, #c41e1e);
  color: #fff !important;
  padding: 13px 28px;
  border-radius: var(--m24-radius-sm, 10px);
  font-family: var(--m24-font-body, 'Plus Jakarta Sans', sans-serif);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all 0.25s;
  border: none;
  cursor: pointer;
}
.m24-btn:hover {
  background: var(--m24-red-hover, #a51818);
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(196,30,30,0.2);
}

/* Grids */
.m24-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 48px; }
.m24-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 48px; }
.m24-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 48px; }

/* Card */
.m24-card {
  background: #fff;
  border: 1px solid var(--m24-border, #e5e5e5);
  border-radius: var(--m24-radius, 16px);
  padding: 32px;
  transition: all 0.3s;
  height: 100%;
}
.m24-card:hover {
  border-color: var(--m24-red, #c41e1e);
  box-shadow: var(--m24-shadow-md, 0 4px 20px rgba(0,0,0,0.08));
  transform: translateY(-2px);
}
.m24-card-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--m24-red-light, #fef2f2);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem;
  margin-bottom: 16px;
}
.m24-card h3 {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 10px;
  line-height: 1.3;
}
.m24-card p {
  font-size: 0.9rem;
  color: var(--m24-text-light, #717171);
  line-height: 1.6;
  margin: 0;
}

/* Step-Card */
.m24-step-card {
  background: #fff;
  border: 1px solid var(--m24-border, #e5e5e5);
  border-radius: var(--m24-radius, 16px);
  padding: 32px;
  text-align: center;
  transition: all 0.3s;
  height: 100%;
}
.m24-step-card:hover {
  border-color: var(--m24-red, #c41e1e);
  box-shadow: var(--m24-shadow-md, 0 4px 20px rgba(0,0,0,0.08));
}
.m24-step-num {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--m24-red-light, #fef2f2);
  line-height: 1;
  margin-bottom: 12px;
}
.m24-step-card:hover .m24-step-num { color: var(--m24-red, #c41e1e); }
.m24-step-card h3 {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 0 0 10px;
}
.m24-step-card p {
  font-size: 0.88rem;
  color: var(--m24-text-light, #717171);
  line-height: 1.6;
  margin: 0;
}

/* Quote */
.m24-quote {
  background: var(--m24-bg-dark, #0d0d0d);
  border-radius: var(--m24-radius, 16px);
  padding: 40px 48px;
  margin: 40px 0;
}
.m24-quote p {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: clamp(1.1rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.3px;
  line-height: 1.4;
  margin: 0;
}
.m24-quote .q-mark { color: var(--m24-red, #c41e1e); }

/* Diff */
.m24-diff {
  border-radius: var(--m24-radius, 16px);
  padding: 36px;
}
.m24-diff.bad  { background: var(--m24-red-light, #fef2f2); border: 1px solid rgba(196,30,30,0.15); }
.m24-diff.good { background: var(--m24-green-light, #f0fdf4); border: 1px solid rgba(22,163,74,0.15); }
.m24-diff h3 {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-weight: 700;
  font-size: 1rem;
  margin: 0 0 20px;
}
.m24-diff.bad h3  { color: var(--m24-red, #c41e1e); }
.m24-diff.good h3 { color: var(--m24-green, #16a34a); }
.m24-diff ul {
  list-style: none;
  display: flex; flex-direction: column; gap: 14px;
  padding: 0; margin: 0;
}
.m24-diff ul li {
  font-size: 0.92rem;
  color: var(--m24-text-mid, #4a4a4a);
  display: flex; align-items: flex-start; gap: 10px;
  line-height: 1.5;
}
.m24-diff.bad ul li::before  { content: '✕'; color: var(--m24-red, #c41e1e); font-weight: 700; flex-shrink: 0; }
.m24-diff.good ul li::before { content: '✓'; color: var(--m24-green, #16a34a); font-weight: 700; flex-shrink: 0; }

/* DIREKT-Methode */
.m24-direkt-steps {
  display: flex; flex-direction: column;
  border-top: 1px solid var(--m24-border, #e5e5e5);
  margin-top: 32px;
}
.m24-direkt-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  border-bottom: 1px solid var(--m24-border, #e5e5e5);
  padding: 28px 0;
  position: relative;
  overflow: hidden;
  transition: background 0.25s ease, padding 0.25s ease;
}
.m24-direkt-row::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 3px;
  background: var(--m24-red, #c41e1e);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease;
}
.m24-direkt-row:hover::before { transform: scaleY(1); }
.m24-direkt-row:hover { background: var(--m24-bg-light, #f7f7f8); padding-left: 16px; }
.m24-direkt-letter {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: 3.2rem;
  font-weight: 800;
  line-height: 1;
  color: var(--m24-border, #e5e5e5);
  transition: color 0.25s ease;
  padding-top: 4px;
}
.m24-direkt-row:hover .m24-direkt-letter { color: var(--m24-red, #c41e1e); }
.m24-direkt-body .stage-num {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--m24-text-light, #717171);
  margin-bottom: 6px;
}
.m24-direkt-body h3 {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 8px;
  line-height: 1.25;
}
.m24-direkt-body h3 em { font-style: normal; color: var(--m24-red, #c41e1e); }
.m24-direkt-body p {
  font-size: 0.92rem;
  color: var(--m24-text-mid, #4a4a4a);
  line-height: 1.65;
  max-width: 640px;
  margin: 0;
}

/* Hero */
.m24-hero {
  padding: 140px 0 80px;
  background: linear-gradient(180deg, #fff 0%, var(--m24-bg-light, #f7f7f8) 100%);
  position: relative;
  overflow: hidden;
}
.m24-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.m24-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--m24-red-light, #fef2f2);
  color: var(--m24-red, #c41e1e);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.m24-hero-badge .dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--m24-red, #c41e1e);
  display: inline-block;
}
.m24-hero-h1 {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -1px;
  margin: 0 0 20px;
}
.m24-hero-h1 em { font-style: normal; color: var(--m24-red, #c41e1e); }
.m24-hero-sub {
  font-size: 1.1rem;
  color: var(--m24-text-mid, #4a4a4a);
  line-height: 1.7;
  margin: 0 0 12px;
  max-width: 500px;
}
.m24-hero-small {
  font-size: 0.85rem;
  color: var(--m24-text-light, #717171);
  margin: 0 0 32px;
}
.m24-hero-buttons {
  display: flex; gap: 12px; flex-wrap: wrap;
}
.m24-hero-visual {
  width: 100%;
  max-width: 460px;
  aspect-ratio: 4/3;
  border-radius: 20px;
  background: var(--m24-bg-light, #f7f7f8);
  border: 1px solid var(--m24-border, #e5e5e5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: var(--m24-text-light, #717171);
  box-shadow: var(--m24-shadow-lg, 0 12px 40px rgba(0,0,0,0.1));
  margin: 0 auto;
}

/* Stats */
.m24-stats-bar {
  background: var(--m24-bg-dark, #0d0d0d);
  color: #fff;
  padding: 40px 0;
}
.m24-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.m24-stat-num {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}
.m24-stat-num .accent { color: var(--m24-red, #c41e1e); }
.m24-stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  font-weight: 500;
}

/* Service-Hero */
.m24-service-hero {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
  border-radius: 20px;
  padding: 48px 52px;
  margin-top: 48px;
  margin-bottom: 20px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.m24-service-hero::before {
  content: '';
  position: absolute; top: -80px; right: -80px;
  width: 250px; height: 250px;
  background: radial-gradient(circle, rgba(196,30,30,0.2) 0%, transparent 70%);
}
.m24-service-hero h3 {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 0 16px;
  position: relative;
}
.m24-service-hero > p {
  color: rgba(255,255,255,0.7);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 0 24px;
  max-width: 600px;
  position: relative;
}
.m24-service-hero ul {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0 0 28px;
  padding: 0;
  position: relative;
}
.m24-service-hero ul li {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  display: flex; align-items: center; gap: 10px;
}
.m24-service-hero ul li::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--m24-red, #c41e1e);
  flex-shrink: 0;
}

.m24-services-sub-title {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--m24-text-mid, #4a4a4a);
  margin: 32px 0 16px;
  letter-spacing: -0.2px;
}
.m24-sub-card {
  background: #fff;
  border: 1px solid var(--m24-border, #e5e5e5);
  border-radius: var(--m24-radius, 16px);
  padding: 28px;
  transition: all 0.3s;
}
.m24-sub-card:hover { border-color: var(--m24-red, #c41e1e); box-shadow: var(--m24-shadow-sm, 0 1px 3px rgba(0,0,0,0.06)); }
.m24-sub-card h4 {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 10px;
}
.m24-sub-card p {
  font-size: 0.85rem;
  color: var(--m24-text-light, #717171);
  line-height: 1.6;
  margin: 0 0 16px;
}
.m24-sub-card a {
  color: var(--m24-red, #c41e1e);
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
}
.m24-sub-card a:hover { text-decoration: underline; }

/* Timeline */
.m24-timeline {
  margin-top: 48px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
}
.m24-timeline::before {
  content: '';
  position: absolute;
  top: 32px; left: 32px; right: 32px;
  height: 2px;
  background: var(--m24-border, #e5e5e5);
}
.m24-tl-step {
  text-align: center;
  position: relative;
  padding: 0 12px;
}
.m24-tl-dot {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--m24-border, #e5e5e5);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  position: relative;
  z-index: 1;
  transition: all 0.3s;
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--m24-text-light, #717171);
}
.m24-tl-step:hover .m24-tl-dot {
  border-color: var(--m24-red, #c41e1e);
  color: var(--m24-red, #c41e1e);
  box-shadow: 0 0 0 6px var(--m24-red-light, #fef2f2);
}
.m24-tl-step h3 {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: 0.9rem;
  font-weight: 700;
  margin: 0 0 6px;
  line-height: 1.3;
}
.m24-tl-step p {
  font-size: 0.78rem;
  color: var(--m24-text-light, #717171);
  line-height: 1.5;
  margin: 0;
}

/* About */
.m24-about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 48px;
}
.m24-about-photo {
  width: 300px;
  height: 360px;
  border-radius: 20px;
  background: var(--m24-bg-light, #f7f7f8);
  border: 1px solid var(--m24-border, #e5e5e5);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--m24-text-light, #717171);
  font-size: 0.85rem;
  box-shadow: var(--m24-shadow-md, 0 4px 20px rgba(0,0,0,0.08));
}
.m24-about-text p {
  font-size: 1rem;
  color: var(--m24-text-mid, #4a4a4a);
  line-height: 1.7;
  margin: 0 0 24px;
}
.m24-about-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.92rem;
  line-height: 1.5;
  padding: 12px 16px;
  background: var(--m24-bg-light, #f7f7f8);
  border-radius: var(--m24-radius-sm, 10px);
  margin-bottom: 14px;
}
.m24-about-point .ap-icon { color: var(--m24-red, #c41e1e); font-weight: 700; flex-shrink: 0; }

/* Transparenz */
.m24-transp-grid { gap: 16px; margin: 32px 0 24px; }
.m24-transp-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  background: #fff;
  border: 1px solid var(--m24-border, #e5e5e5);
  border-radius: var(--m24-radius-sm, 10px);
  font-size: 0.92rem;
  transition: border-color 0.2s;
}
.m24-transp-item:hover { border-color: var(--m24-green, #16a34a); }
.m24-transp-icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: var(--m24-green-light, #f0fdf4);
  display: flex; align-items: center; justify-content: center;
  color: var(--m24-green, #16a34a);
  font-weight: 700;
  flex-shrink: 0;
}

/* Kalender-Slider */
.m24-cal-demo {
  position: relative;
  margin-top: 48px;
  border-radius: var(--m24-radius, 16px);
  overflow: hidden;
  box-shadow: var(--m24-shadow-lg, 0 12px 40px rgba(0,0,0,0.1));
  background: #fff;
  aspect-ratio: 16/10;
  user-select: none;
  border: 1px solid var(--m24-border, #e5e5e5);
}
.m24-cal-grid {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  display: grid;
  grid-template-columns: 64px repeat(5, 1fr);
  grid-template-rows: 44px repeat(8, 1fr);
  background: #fff;
}
.m24-cal-appts {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.05s linear;
  pointer-events: none;
}
.m24-cal-cell {
  border-right: 1px solid var(--m24-border-light, #f0f0f0);
  border-bottom: 1px solid var(--m24-border-light, #f0f0f0);
  padding: 4px 6px;
  font-size: 0.68rem;
  color: var(--m24-text-light, #717171);
  position: relative;
}
.m24-cal-cell.time-label {
  text-align: right;
  padding-right: 8px;
  font-size: 0.68rem;
  border-right: 1px solid var(--m24-border, #e5e5e5);
  background: var(--m24-bg-light, #f7f7f8);
  display: flex; align-items: center; justify-content: flex-end;
}
.m24-cal-cell.day-header {
  background: var(--m24-bg-light, #f7f7f8);
  border-bottom: 1px solid var(--m24-border, #e5e5e5);
  font-weight: 700;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 1px;
}
.m24-cal-cell.day-header .day-num {
  font-size: 0.95rem;
  font-weight: 800;
}
.m24-cal-cell.corner {
  background: var(--m24-bg-light, #f7f7f8);
  border-right: 1px solid var(--m24-border, #e5e5e5);
  border-bottom: 1px solid var(--m24-border, #e5e5e5);
}
.m24-cal-appt {
  position: absolute;
  border-radius: 6px;
  padding: 6px 8px;
  font-size: 0.68rem;
  line-height: 1.25;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  border-left: 3px solid;
}
.m24-cal-appt .appt-time { font-weight: 700; font-size: 0.65rem; margin-bottom: 1px; opacity: 0.9; }
.m24-cal-appt .appt-title { font-weight: 600; }
.m24-cal-appt.red   { background: #fef2f2; border-left-color: #c41e1e; color: #a51818; }
.m24-cal-appt.green { background: #f0fdf4; border-left-color: #16a34a; color: #14532d; }
.m24-cal-appt.blue  { background: #eff6ff; border-left-color: #3b82f6; color: #1e3a8a; }
.m24-cal-appt.amber { background: #fffbeb; border-left-color: #f59e0b; color: #78350f; }
.m24-cal-appt.dark  { background: #0d0d0d; border-left-color: #c41e1e; color: #fff; }
.m24-cal-slider {
  position: absolute;
  top: 0; bottom: 0; left: 0;
  width: 3px;
  background: var(--m24-red, #c41e1e);
  cursor: ew-resize;
  z-index: 10;
  transition: left 0.05s linear;
}
.m24-cal-slider::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--m24-red, #c41e1e);
  box-shadow: 0 6px 24px rgba(196,30,30,0.4);
}
.m24-cal-slider::after {
  content: '⇄';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  z-index: 2;
  pointer-events: none;
}
.m24-cal-label {
  position: absolute;
  top: 16px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  z-index: 5;
  box-shadow: var(--m24-shadow-sm, 0 1px 3px rgba(0,0,0,0.06));
  pointer-events: none;
}
.m24-cal-label.before {
  left: 16px;
  background: #fff;
  color: var(--m24-text-light, #717171);
  border: 1px solid var(--m24-border, #e5e5e5);
}
.m24-cal-label.after {
  right: 16px;
  background: var(--m24-red, #c41e1e);
  color: #fff;
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.m24-cal-demo.is-full .m24-cal-label.after {
  opacity: 1;
  transform: translateX(0);
}
.m24-cal-hint {
  text-align: center;
  margin-top: 24px;
  font-size: 0.88rem;
  color: var(--m24-text-light, #717171);
}
.m24-cal-hint strong { color: var(--m24-red, #c41e1e); font-weight: 600; }

/* Referenzen-Placeholder */
.m24-ref-placeholder {
  border: 2px dashed var(--m24-border, #e5e5e5);
  border-radius: var(--m24-radius, 16px);
  padding: 48px;
  text-align: center;
  margin-top: 48px;
  background: var(--m24-bg-light, #f7f7f8);
}
.m24-ref-placeholder p {
  color: var(--m24-text-light, #717171);
  font-size: 0.95rem;
  margin: 0;
}

/* FAQ */
.m24-faq-list { margin-top: 48px; max-width: 740px; }
.m24-faq-item { border-bottom: 1px solid var(--m24-border, #e5e5e5); }
.m24-faq-q {
  width: 100%; background: none; border: none;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; text-align: left;
}
.m24-faq-q h3 {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-size: 1rem; font-weight: 700;
  color: var(--m24-text, #1a1a1a);
  margin: 0;
}
.m24-faq-q .chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--m24-bg-light, #f7f7f8);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  color: var(--m24-text-light, #717171);
  transition: all 0.3s;
  flex-shrink: 0;
}
.m24-faq-item.open .chevron {
  background: var(--m24-red, #c41e1e);
  color: #fff;
  transform: rotate(45deg);
}
.m24-faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s;
}
.m24-faq-item.open .m24-faq-a { max-height: 400px; padding-bottom: 22px; }
.m24-faq-a p {
  font-size: 0.9rem;
  color: var(--m24-text-mid, #4a4a4a);
  line-height: 1.7;
  margin: 0;
}

/* CTA-Banner */
.m24-cta-banner {
  background: linear-gradient(135deg, #0d0d0d 0%, #1a1a2e 100%);
  border-radius: 24px;
  padding: 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.m24-cta-banner::before {
  content: '';
  position: absolute; top: -100px; left: 50%;
  transform: translateX(-50%);
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(196,30,30,0.15) 0%, transparent 70%);
}
.m24-cta-banner .m24-title { color: #fff; margin: 0 auto 32px; max-width: 720px; }
.m24-cta-buttons {
  display: flex; gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* Footer */
.m24-footer {
  background: var(--m24-bg-dark, #0d0d0d);
  color: rgba(255,255,255,0.6);
  padding: 48px 0;
}
.m24-footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 24px;
}
.m24-footer-logo {
  font-family: var(--m24-font-display, 'Outfit', sans-serif);
  font-weight: 800;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: -0.5px;
}
.m24-footer-left p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  margin: 4px 0 0;
}
.m24-footer-links {
  display: flex;
  gap: 28px;
}
.m24-footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}
.m24-footer-links a:hover { color: #fff; }
.m24-footer-contact {
  font-size: 0.85rem;
  text-align: right;
}
.m24-footer-contact a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.m24-footer-contact a:hover { color: #fff; }

/* Mobile */
@media (max-width: 900px) {
  :root { --m24-section-pad: 64px; }
  .m24-section { padding: 64px 0; }
  .m24-hero-content { grid-template-columns: 1fr; }
  .m24-hero-right { display: none; }
  .m24-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .m24-grid-2, .m24-grid-3, .m24-grid-4 { grid-template-columns: 1fr; }
  .m24-about-grid { grid-template-columns: 1fr; }
  .m24-about-photo { width: 100%; height: 250px; }
  .m24-timeline { grid-template-columns: 1fr; gap: 24px; }
  .m24-timeline::before { display: none; }
  .m24-service-hero { padding: 32px 24px; }
  .m24-service-hero ul { grid-template-columns: 1fr; }
  .m24-direkt-row { grid-template-columns: 56px 1fr; }
  .m24-direkt-letter { font-size: 2.2rem; }
  .m24-cal-demo { aspect-ratio: 4/5; }
  .m24-cal-grid {
    grid-template-columns: 44px repeat(5, 1fr);
    grid-template-rows: 36px repeat(8, 1fr);
  }
  .m24-cal-cell.time-label, .m24-cal-cell.day-header { font-size: 0.58rem; }
  .m24-cal-cell.day-header .day-num { font-size: 0.75rem; }
  .m24-cal-appt { font-size: 0.55rem; padding: 3px 4px; }
  .m24-cal-appt .appt-time { font-size: 0.52rem; }
  .m24-cal-slider::before { width: 40px; height: 40px; }
  .m24-cta-banner { padding: 40px 24px; }
  .m24-quote { padding: 28px 24px; }
}

@media (max-width: 600px) {
  .m24-grid-4 { grid-template-columns: 1fr; }
}
