/* ===== RESET & BASIS ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Segoe UI', Arial, sans-serif; color: #333; background: #fff; line-height: 1.6; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ===== FARBEN ===== */
:root {
  --blau:        #2d4a6e;
  --blau-hell:   #3d6494;
  --orange:      #e87722;
  --orange-hell: #f0902e;
  --blau-bg:     #eef2f7;
  --grau:        #f8f9fb;
  --weiss:       #ffffff;
}

/* ===== NAVBAR ===== */
header {
  position: sticky; top: 0; z-index: 100;
  background: #ffffff;
  box-shadow: none;
  border-bottom: 1px solid #eee;
}
.navbar {
  max-width: 1100px; margin: 0 auto;
  padding: .6rem 2rem;
  display: flex; align-items: center; justify-content: center;
}
.logo { display: flex; justify-content: center; }
.logo-img { height: 200px; width: auto; display: block; }
.hero-buttons {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}

.btn-call {
  display: inline-block;
  background: var(--orange); color: var(--weiss);
  padding: .9rem 2.4rem; border-radius: 50px;
  font-weight: 700; font-size: 1.05rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 6px 20px rgba(232,119,34,0.4);
}
.btn-call:hover {
  background: var(--orange-hell);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232,119,34,0.5);
}

/* ===== HERO ===== */
.hero {
  min-height: 55vh;
  background: linear-gradient(140deg, var(--blau) 0%, #1a2f47 60%, #0f1e30 100%);
  color: var(--weiss);
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* dezentes Muster im Hintergrund */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(232,119,34,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(61,100,148,0.2) 0%, transparent 50%);
  pointer-events: none;
}

.hero-content {
  max-width: 720px;
  position: relative; z-index: 1;
}

.hero-badges {
  display: flex; gap: 1rem; justify-content: center;
  margin-bottom: 2rem; flex-wrap: wrap;
}
.badge {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  padding: .45rem 1.2rem;
  border-radius: 50px;
  font-size: .95rem;
  font-weight: 500;
  backdrop-filter: blur(6px);
  letter-spacing: .02em;
}

.hero h1 {
  font-size: 3rem; font-weight: 800; line-height: 1.2;
  margin-bottom: 1.2rem;
  letter-spacing: -.02em;
}
.hero p {
  font-size: 1.2rem; opacity: .85;
  margin-bottom: 2.5rem; line-height: 1.7;
}
.btn-primary {
  display: inline-block;
  background: var(--orange); color: var(--weiss);
  padding: .9rem 2.4rem; border-radius: 50px;
  font-weight: 700; font-size: 1.05rem;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 6px 20px rgba(232,119,34,0.4);
}
.btn-primary:hover {
  background: var(--orange-hell);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(232,119,34,0.5);
}

/* ===== ANGEBOTE ===== */
.angebote {
  background: var(--grau);
  padding: 5rem 2rem;
}
.angebote-inner {
  max-width: 860px; margin: 0 auto;
  display: flex; align-items: stretch; gap: 0;
  background: var(--weiss);
  border-radius: 20px;
  box-shadow: 0 8px 40px rgba(45,74,110,0.10);
  overflow: hidden;
}
.angebot-card {
  flex: 1;
  padding: 3rem 2.5rem;
  text-align: center;
  transition: background .2s;
}
.angebot-card:hover { background: var(--blau-bg); }
.angebot-icon {
  font-size: 2.8rem; margin-bottom: 1rem;
  display: block; color: var(--orange);
}
.angebot-card h3 {
  font-size: 1.4rem; color: var(--blau);
  margin-bottom: .8rem; font-weight: 700;
}
.angebot-card p {
  color: #666; font-size: 1rem; line-height: 1.7;
}
.angebot-divider {
  width: 1px; background: #e8ecf2;
  margin: 2rem 0;
}

/* ===== KONTAKT ===== */
.kontakt {
  padding: 6rem 2rem;
  background: var(--weiss);
}
.kontakt-inner {
  max-width: 600px; margin: 0 auto;
  text-align: center;
}
.kontakt-inner h2 {
  font-size: 2rem; color: var(--blau);
  margin-bottom: .8rem; font-weight: 800;
}
.kontakt-inner > p {
  color: #666; margin-bottom: 2rem; font-size: 1.05rem;
}
.kontakt-buttons {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-top: 2rem;
}
.kontakt-info { display: flex; flex-direction: column; gap: .8rem; }
.kontakt-info li {
  font-size: 1rem; color: #444; display: flex; align-items: center; gap: .7rem;
}
.kontakt-info li i {
  color: var(--orange); font-size: 1.1rem; width: 1.2rem; text-align: center;
}
.kontakt-info a { color: var(--blau); font-weight: 500; transition: color .2s; }
.kontakt-info a:hover { color: var(--orange); }


/* ===== FOOTER ===== */
footer {
  background: var(--blau); color: var(--weiss);
  text-align: center; padding: 1.6rem;
  font-size: .9rem;
}
footer a { color: rgba(255,255,255,0.7); margin: 0 .5rem; transition: color .2s; }
footer a:hover { color: var(--orange); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .hero h1 { font-size: 2rem; }
  .hero p { font-size: 1rem; }
  .logo-img { height: 160px; }
  .angebote-inner { flex-direction: column; }
  .angebot-divider { width: 100%; height: 1px; margin: 0 2rem; width: auto; }
  .kontakt-inner { gap: 3rem; }
  .form-row { flex-direction: column; }
}
