
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #111827;
  background-color: #f9fafb;
  line-height: 1.5;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, 100% - 32px);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(249, 250, 251, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid #e5e7eb;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  font-weight: 700;
  font-size: 18px;
}

.nav {
  display: flex;
  gap: 16px;
  font-size: 14px;
}

.nav a {
  padding: 6px 10px;
  border-radius: 999px;
  color: #374151;
}

.nav a:hover {
  background-color: #e5e7eb;
}

.nav-cta {
  background-color: #22c55e;
  color: #fff !important;
  font-weight: 500;
}

.hero {
  padding: 48px 0 40px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 3fr) minmax(0, 2.3fr);
  gap: 32px;
  align-items: center;
}

.hero-text h1 {
  font-size: clamp(28px, 3vw, 34px);
  line-height: 1.1;
  margin-bottom: 12px;
}

.hero-subtitle {
  font-size: 15px;
  color: #4b5563;
  max-width: 560px;
}

.hero-cta-group {
  margin-top: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn-primary {
  background: #22c55e;
  color: #fff;
  border-color: #16a34a;
}

.btn-primary:hover {
  background: #16a34a;
}

.btn-outline {
  background: #fff;
  color: #111827;
  border-color: #e5e7eb;
}

.btn-outline:hover {
  border-color: #9ca3af;
}

.btn-large {
  padding: 12px 22px;
  font-size: 15px;
}

.hero-note {
  font-size: 13px;
  color: #6b7280;
}

.hero-badges {
  margin-top: 14px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.hero-badges span {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background-color: #eef2ff;
  color: #4338ca;
}

.hero-card {
  background-color: #ffffff;
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.09);
}

.hero-image-placeholder {
  border-radius: 18px;
  background: linear-gradient(135deg, #e5e7eb, #f3f4f6);
  height: 180px;
  position: relative;
  overflow: hidden;
}

.hero-image-tag {
  position: absolute;
  bottom: 10px;
  left: 12px;
  font-size: 12px;
  padding: 4px 8px;
  border-radius: 999px;
  background-color: rgba(15, 23, 42, 0.85);
  color: #f9fafb;
}

.hero-card-body {
  margin-top: 16px;
}

.hero-card-body h2 {
  font-size: 16px;
  margin-bottom: 6px;
}

.hero-card-body ul {
  padding-left: 18px;
  margin: 6px 0 12px;
  font-size: 13px;
  color: #4b5563;
}

.section {
  padding: 40px 0;
}

.section.alt {
  background-color: #f3f4f6;
}

.section h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.section-intro {
  font-size: 14px;
  color: #4b5563;
  max-width: 640px;
  margin-bottom: 24px;
}

.section-intro.small {
  font-size: 13px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.04);
}

.card h3 {
  font-size: 16px;
  margin-bottom: 6px;
}

.card p {
  font-size: 13px;
  color: #4b5563;
}

.bullet-list {
  font-size: 13px;
  color: #4b5563;
  margin-top: 8px;
  padding-left: 18px;
}

.location-card {
  min-height: 130px;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.pricing-card .price {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
}

.center {
  text-align: center;
  margin-top: 16px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.step {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.05);
}

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background-color: #e0f2fe;
  color: #0369a1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.faq-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.faq-item h3 {
  font-size: 15px;
  margin-bottom: 4px;
}

.faq-item p {
  font-size: 13px;
  color: #4b5563;
}

.contact-section {
  background-color: #0f172a;
  color: #e5e7eb;
}

.contact-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
}

.contact-inner h2 {
  font-size: 22px;
  margin-bottom: 8px;
}

.contact-inner p {
  font-size: 14px;
  color: #e5e7eb;
}

.contact-cta {
  text-align: right;
}

.contact-note {
  font-size: 12px;
  color: #cbd5f5;
  margin-top: 6px;
}

.site-footer {
  padding: 18px 0 28px;
  background-color: #020617;
  color: #9ca3af;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
}

.footer-meta {
  color: #6b7280;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .pricing-grid,
  .grid-3,
  .grid-4,
  .steps-grid,
  .faq-list {
    grid-template-columns: minmax(0, 1fr);
  }
  .contact-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .contact-cta {
    text-align: left;
  }
  .nav {
    display: none;
  }
}
.hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
}
.logo-img {
  height: 60px;   /* perfekte Größe für Header */
  width: auto;
  display: block;
}
/* Desktop default */
.logo-img {
  height: 60px;
  width: auto;
  display: block;
}

/* Mobile Anpassung */
@media (max-width: 768px) {
  .logo-img {
    height: 45px;   /* etwas kleiner für Smartphones */
  }
}
@media (max-width: 480px) {
  .logo-img {
    height: 38px;   /* sehr kleine Geräte */
  }
}

/* Footer */
.site-footer {
  background: #050819;
  padding: 40px 0;
  width: 100%;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* Abstand links & rechts */
  text-align: center;
}

.footer-links {
  margin-bottom: 15px;
  display: flex;
  justify-content: center;   /* Zentriert die Links */
  align-items: center;
  gap: 15px;
  flex-wrap: wrap;
  width: 100%;
}

.footer-links a {
  font-size: 0.9rem;
  color: #b7b7b7;
  text-decoration: none;
}

.footer-links a:hover {
  color: #ffffff;
}
