/* ── Hero 2-spaltig ──────────────────────────────────────── */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 3rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative; z-index: 2;
  min-height: calc(100vh - 64px);
}
.hero-left { display: flex; flex-direction: column; }
.hero-left .hero-badge { justify-content: flex-start; }
.hero-left .hero-title { text-align: left; }
.hero-left .hero-sub   { text-align: left; margin: 0 0 2rem; }
.hero-left .hero-actions { justify-content: flex-start; }
.hero-left .hero-stats { justify-content: flex-start; }

/* ── Hero Formular Card ──────────────────────────────────── */
.hero-form-card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 1.5rem;
}
.hfc-header {
  display: flex; align-items: center; gap: 0.5rem;
  font-weight: 700; font-size: 0.95rem;
  margin-bottom: 0.2rem;
}
.hfc-sub { font-size: 0.72rem; color: var(--text-3); margin-bottom: 1.25rem; }
.hfc-group { margin-bottom: 0.65rem; }
.hfc-row   { display: grid; grid-template-columns: 1fr 1fr; gap: 0.6rem; }
.hfc-label { font-size: 0.65rem; color: var(--text-3); text-transform: uppercase; letter-spacing: 0.06em; font-weight: 600; display: block; margin-bottom: 0.2rem; }
.hfc-input {
  width: 100%; padding: 0.5rem 0.75rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; color: var(--text);
  font-size: 0.83rem; font-family: inherit;
  transition: border-color 0.2s;
}
.hfc-input:focus { outline: none; border-color: rgba(99,102,241,0.5); background: rgba(99,102,241,0.05); }
.hfc-input::placeholder { color: var(--text-3); }
.hfc-textarea { resize: vertical; min-height: 65px; }
.hfc-check { display: flex; align-items: flex-start; gap: 0.4rem; font-size: 0.72rem; color: var(--text-3); line-height: 1.4; margin-bottom: 0.25rem; }
.hfc-check input { margin-top: 2px; accent-color: var(--accent); flex-shrink: 0; }
.hfc-check a { color: #a5b4fc; }
.hfc-submit {
  width: 100%; padding: 0.65rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: white; border: none; border-radius: 8px;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
  margin-top: 0.4rem; font-family: inherit;
  transition: transform 0.2s, box-shadow 0.2s;
}
.hfc-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 20px rgba(99,102,241,0.4); }
.hfc-error   { color: #fca5a5; font-size: 0.75rem; text-align: center; padding: 0.3rem; }
.hfc-success { color: #86efac; font-size: 0.78rem; text-align: center; padding: 0.3rem; }
.hfc-oeffnung { margin-top: 0.85rem; padding-top: 0.85rem; border-top: 1px solid rgba(255,255,255,0.07); }
.hfc-oz-row { display: flex; align-items: center; gap: 0.5rem; font-size: 0.75rem; color: var(--text-3); padding: 2px 0; }

/* ── Services 6er Grid ───────────────────────────────────── */
.services-grid-6 {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: 1.25rem;
}
@media (max-width: 900px) { .services-grid-6 { grid-template-columns: 1fr 1fr !important; } }
@media (max-width: 600px) { .services-grid-6 { grid-template-columns: 1fr !important; } }

/* ── Mobile Hero ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-split { grid-template-columns: 1fr; padding: 3rem 1.5rem 2rem; min-height: auto; gap: 2rem; }
}
