/* ==========================================
   Startseite
========================================== */

.hero {
  position: relative;
  overflow: hidden;
  width: 100%;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 110px 0 170px;
  background:
    linear-gradient(
      90deg,
      rgba(255,255,255,0.96) 0%,
      rgba(255,255,255,0.90) 34%,
      rgba(255,255,255,0.55) 52%,
      rgba(255,255,255,0.08) 75%,
      rgba(255,255,255,0) 100%
    ),
    url("../startseite-hero.png");
  background-size: cover;
    min-height: 700px;
  padding: 90px 0 145px;
  background-position: 90% center;
}

.hero-grid {
  display: block;
}

.hero-grid > div:first-child {
  max-width: 650px;
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 660px;
  font-size: clamp(3.4rem, 5.5vw, 5.6rem);
  line-height: 0.95;
}

.hero-text {
  max-width: 520px;
  color: #23314d;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(238, 247, 245, 0.95);
  color: var(--teal);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 900;
  margin-bottom: 20px;
  box-shadow: 0 10px 24px rgba(15,23,42,0.06);
}

.hero-card {
  display: none;
}

.wave {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 130px;
  opacity: 0.95;
}

/* Quickbar */

.quick-section {
  position: relative;
  z-index: 3;
  margin-top: -62px;
}

.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 28px;
  background: rgba(158, 178, 223, 0.92);
  color: white;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

.quick-item {
  text-align: center;
  padding: 28px 18px;
  border-right: 1px solid rgba(255,255,255,0.25);
  transition: background 0.25s ease, transform 0.25s ease;
}

.quick-item:last-child {
  border-right: 0;
}

.quick-item:hover {
  background: rgba(255,255,255,0.10);
  transform: translateY(-3px);
}

.quick-icon {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  font-size: 24px;
}

.quick-item strong {
  font-size: 1.2rem;
  line-height: 1.2;
}

/* Angebot Startseite */

.support-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 36px;
  align-items: start;
}

.blue-box {
  margin-top: 32px;
  border-radius: 28px;
  background: var(--blue);
  color: white;
  padding: 36px 42px;
  box-shadow: var(--shadow);
}

.blue-box h3 {
  color: white;
  font-size: 2rem;
  margin-bottom: 18px;
}

.blue-box p {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  line-height: 1.7;
}

.support-list {
  display: grid;
  gap: 12px;
}

.support-item {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  background: var(--teal-light);
  padding: 13px 16px;
  color: var(--blue-dark);
  font-weight: 900;
  box-shadow: var(--shadow-soft);
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.support-item:hover {
  transform: translateX(5px);
  background: #c9e4e6;
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.10);
}

.support-icon {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: var(--teal);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* Download */

.download-box {
  overflow: hidden;
  border-radius: 32px;
  background: white;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  box-shadow: var(--shadow);
}

.download-content,
.download-preview {
  padding: 42px;
}

.download-preview {
  background: var(--mint);
}

.preview-card {
  background: white;
  border-radius: 24px;
  padding: 22px;
  box-shadow: var(--shadow-soft);
}

.preview-logo-img {
  width: 260px;
  max-width: 100%;
}

.preview-title {
  margin-top: 34px;
  border-radius: 24px;
  background: var(--blue);
  color: white;
  padding: 20px;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.2;
}

.download-btn {
  display: inline-block;
  margin-top: 18px;
  background: var(--blue-dark);
  color: white;
  padding: 14px 24px;
  border-radius: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.download-btn:hover {
  transform: translateY(-2px);
  background: #1d4184;
}

/* Kontakt */

.contact-box {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 36px;
  border-radius: 32px;
  background: var(--blue);
  color: white;
  padding: 42px;
  box-shadow: var(--shadow);
}

.contact-box h2 {
  color: white;
}

.contact-text {
  margin-top: 20px;
  color: rgba(255,255,255,0.86);
  font-size: 1.1rem;
}

.contact-data {
  margin-top: 30px;
  display: grid;
  gap: 14px;
  font-weight: 800;
  color: rgba(255,255,255,0.92);
}

form {
  background: white;
  border-radius: 26px;
  padding: 24px;
  display: grid;
  gap: 14px;
  color: var(--text);
  box-shadow: 0 16px 34px rgba(15,23,42,0.12);
}

input,
textarea {
  width: 100%;
  border: 1px solid #dbe2ea;
  background: var(--sand);
  border-radius: 18px;
  padding: 14px 16px;
  font: inherit;
  outline: none;
}

input:focus,
textarea:focus {
  border-color: var(--teal);
}

textarea {
  min-height: 145px;
  resize: vertical;
}

.submit {
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: var(--teal);
  color: white;
  font-weight: 900;
  cursor: pointer;
  font-size: 1rem;
}

.form-note {
  font-size: 0.78rem;
  color: #64748b;
  line-height: 1.5;
}

/* ==========================================
   Aktuelles Vorschau
========================================== */

.news-preview-section {
  background: rgba(255, 255, 255, 0.35);
}

.news-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 34px;
}

.news-preview-card {
  background: white;
  border-radius: 28px;
  padding: 30px;
  box-shadow: var(--shadow-soft);
}

.news-preview-card h3 {
  color: var(--blue-dark);
  margin-bottom: 12px;
}

.news-preview-card p {
  color: #475569;
  line-height: 1.65;
}

.news-preview-card .news-date {
  color: var(--teal);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.78rem;
  margin-bottom: 12px;
}