/* ============================================================
   JeFa Webseiten Design – Globales Stylesheet
   Farben:
     Primär (Blau):    #1A56DB
     Akzent (Grün):    #10B981
     Dunkel:           #0F172A
     Dunkelgrau:       #1E293B
     Grau (Text):      #64748B
     Hellgrau (BG):    #F8FAFC
     Weiß:             #FFFFFF
   Schriften:
     Überschriften:    'Plus Jakarta Sans', sans-serif
     Fließtext:        'Inter', sans-serif
   ============================================================ */

/* ── Reset & Basis ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: 'Inter', sans-serif;
  color: #0F172A;
  background: #FFFFFF;
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  line-height: 1.2;
  font-weight: 700;
}

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

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

/* ── Container ── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Buttons ── */
.btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: #1A56DB;
  color: #FFFFFF;
  border-color: #1A56DB;
}
.btn-primary:hover {
  background: #1447c0;
  border-color: #1447c0;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,86,219,0.35);
}

.btn-green {
  background: #10B981;
  color: #FFFFFF;
  border-color: #10B981;
}
.btn-green:hover {
  background: #059669;
  border-color: #059669;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(16,185,129,0.35);
}

.btn-outline {
  background: transparent;
  color: #FFFFFF;
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #FFFFFF;
}

.btn-outline-dark {
  background: transparent;
  color: #1A56DB;
  border-color: #1A56DB;
}
.btn-outline-dark:hover {
  background: #1A56DB;
  color: #FFFFFF;
}

/* ── Badges ── */
.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.badge-blue  { background: rgba(26,86,219,0.12); color: #1A56DB; }
.badge-green { background: rgba(16,185,129,0.15); color: #059669; }
.badge-white { background: rgba(255,255,255,0.15); color: #FFFFFF; }

/* ── Section-Grundlayout ── */
.section {
  padding: 5rem 0;
}
.section-light { background: #F8FAFC; }
.section-dark  { background: #0F172A; color: #FFFFFF; }
.section-white { background: #FFFFFF; }

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}
.section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  margin-bottom: 1rem;
}
.section-header p {
  color: #64748B;
  font-size: 1.05rem;
  line-height: 1.7;
}
.section-dark .section-header p { color: rgba(255,255,255,0.7); }

/* ============================================================
   NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
  background: transparent;
}
#navbar.scrolled {
  background: #0F172A;
  padding: 0.75rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}
#navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  flex-direction: column;
}
.nav-logo .logo-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}
.nav-logo .logo-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: #FFFFFF; }
.nav-cta {
  padding: 0.55rem 1.25rem;
  font-size: 0.875rem;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav */
@media (max-width: 900px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: #0F172A;
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
    gap: 1.25rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  .nav-links.open { display: flex; }
  .hamburger { display: flex; }
}

/* ============================================================
   HERO SLIDER
   ============================================================ */
#hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}
.slider-track {
  display: flex;
  height: 100%;
  transition: transform 1.2s ease-in-out;
}
.slide {
  min-width: 100%;
  height: 100%;
  position: relative;
  background-size: cover;
  background-position: center;
}
.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,23,42,0.72) 0%, rgba(15,23,42,0.45) 100%);
}
.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
}
.slide-content .container { width: 100%; }
.slide-text {
  max-width: 680px;
}
.slide-text h1 {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.slide-text p {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.88);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
.slide-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}
.slide-bullets span {
  background: rgba(255,255,255,0.12);
  color: #FFFFFF;
  font-size: 0.85rem;
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.25);
}
.slide-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
/* Slider Controls */
.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 10;
}
.slider-dots .dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: all 0.3s;
  border: none;
}
.slider-dots .dot.active {
  background: #10B981;
  width: 28px;
  border-radius: 5px;
}
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #FFFFFF;
  width: 48px; height: 48px;
  border-radius: 50%;
  font-size: 1.25rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s;
  backdrop-filter: blur(4px);
}
.slider-arrow:hover { background: rgba(255,255,255,0.3); }
.slider-arrow.prev { left: 1.5rem; }
.slider-arrow.next { right: 1.5rem; }

/* ============================================================
   LEISTUNGEN
   ============================================================ */
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.leistung-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 260px;
  cursor: default;
}
.leistung-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.leistung-card:hover img { transform: scale(1.07); }
.leistung-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.88) 0%, rgba(15,23,42,0.2) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.leistung-overlay .icon {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}
.leistung-overlay h3 {
  color: #FFFFFF;
  font-size: 1rem;
  margin-bottom: 0.35rem;
}
.leistung-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.8rem;
  line-height: 1.5;
}
.leistungen-cta {
  text-align: center;
  margin-top: 3rem;
}

@media (max-width: 1024px) {
  .leistungen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .leistungen-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   ZIELGRUPPEN
   ============================================================ */
.zielgruppen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.zielgruppe-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 300px;
}
.zielgruppe-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.zielgruppe-card:hover img { transform: scale(1.06); }
.zielgruppe-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,0.9) 0%, rgba(15,23,42,0.25) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.zielgruppe-overlay h3 {
  color: #FFFFFF;
  font-size: 1.1rem;
  margin-bottom: 0.4rem;
}
.zielgruppe-overlay p {
  color: rgba(255,255,255,0.75);
  font-size: 0.82rem;
  line-height: 1.5;
}
.zielgruppe-overlay .examples {
  margin-top: 0.5rem;
  font-size: 0.75rem;
  color: #10B981;
  font-weight: 500;
}
.zielgruppen-banner {
  margin-top: 3rem;
  background: linear-gradient(135deg, #0F172A 0%, #1A56DB 100%);
  border-radius: 16px;
  padding: 3rem 2rem;
  text-align: center;
  color: #FFFFFF;
}
.zielgruppen-banner h3 {
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}
.zielgruppen-banner p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 1.75rem;
  font-size: 1.05rem;
}

@media (max-width: 900px) {
  .zielgruppen-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .zielgruppen-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PROZESS
   ============================================================ */
.prozess-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  position: relative;
}
.prozess-grid::before {
  content: '';
  position: absolute;
  top: 2.5rem;
  left: calc(12.5% + 1rem);
  right: calc(12.5% + 1rem);
  height: 2px;
  background: rgba(255,255,255,0.15);
  z-index: 0;
}
.prozess-step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.prozess-number {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #1A56DB;
  color: #FFFFFF;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  border: 3px solid rgba(255,255,255,0.15);
}
.prozess-step h3 {
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 0.6rem;
}
.prozess-step p {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.prozess-cta {
  text-align: center;
  margin-top: 3.5rem;
}

@media (max-width: 900px) {
  .prozess-grid { grid-template-columns: repeat(2, 1fr); }
  .prozess-grid::before { display: none; }
}
@media (max-width: 500px) {
  .prozess-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   PREISPAKETE
   ============================================================ */
.preise-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}
.preis-card {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.preis-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.1);
}
.preis-card.featured {
  border-color: #10B981;
  position: relative;
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(16,185,129,0.18);
}
.preis-card.featured:hover { transform: scale(1.03) translateY(-6px); }
.featured-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: #10B981;
  color: #FFFFFF;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 1rem;
  border-radius: 50px;
  white-space: nowrap;
}
.preis-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.3rem;
}
.preis-tagline {
  font-size: 0.875rem;
  color: #64748B;
  margin-bottom: 1.25rem;
}
.preis-amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #0F172A;
  margin-bottom: 0.25rem;
}
.preis-amount span {
  font-size: 1rem;
  font-weight: 500;
  color: #64748B;
}
.preis-note {
  font-size: 0.8rem;
  color: #94A3B8;
  margin-bottom: 1.5rem;
}
.preis-divider {
  height: 1px;
  background: #E2E8F0;
  margin-bottom: 1.5rem;
}
.preis-features {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin-bottom: 2rem;
}
.preis-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #334155;
}
.preis-features li::before {
  content: '✓';
  color: #10B981;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}
.preis-card .btn { width: 100%; text-align: center; }
.preise-note {
  text-align: center;
  margin-top: 2.5rem;
  font-size: 0.875rem;
  color: #94A3B8;
}

@media (max-width: 900px) {
  .preise-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .preis-card.featured { transform: none; }
  .preis-card.featured:hover { transform: translateY(-6px); }
}

/* ============================================================
   PFLEGE & WARTUNG
   ============================================================ */
.pflege-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.pflege-card {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
}
.pflege-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.pflege-card.featured {
  border-color: #1A56DB;
  box-shadow: 0 8px 32px rgba(26,86,219,0.12);
}
.pflege-card h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.pflege-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #1A56DB;
  margin: 0.75rem 0 0.25rem;
}
.pflege-price span { font-size: 0.9rem; font-weight: 500; color: #64748B; }
.pflege-note { font-size: 0.8rem; color: #94A3B8; margin-bottom: 1.25rem; }
.pflege-divider { height: 1px; background: #E2E8F0; margin-bottom: 1.25rem; }
.pflege-features {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.pflege-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #334155;
}
.pflege-features li::before {
  content: '✓';
  color: #1A56DB;
  font-weight: 700;
  flex-shrink: 0;
}
.pflege-kuendigung {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: #94A3B8;
}

@media (max-width: 900px) {
  .pflege-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
}

/* ============================================================
   BUNDLES
   ============================================================ */
.bundles-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.bundle-card {
  background: #FFFFFF;
  border: 2px solid #E2E8F0;
  border-radius: 16px;
  padding: 2rem;
  position: relative;
  transition: transform 0.3s, box-shadow 0.3s;
}
.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.08);
}
.bundle-card.featured {
  border-color: #10B981;
  box-shadow: 0 8px 32px rgba(16,185,129,0.15);
}
.bundle-savings {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: #FEF3C7;
  color: #92400E;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}
.bundle-card h3 { font-size: 1.2rem; margin-bottom: 0.3rem; }
.bundle-subtitle { font-size: 0.875rem; color: #64748B; margin-bottom: 1rem; }
.bundle-price {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.25rem;
}
.bundle-price .amount {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.25rem;
  font-weight: 800;
  color: #0F172A;
}
.bundle-price .old-price {
  font-size: 1rem;
  color: #94A3B8;
  text-decoration: line-through;
}
.bundle-warranty {
  display: inline-block;
  background: rgba(16,185,129,0.1);
  color: #059669;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-bottom: 1.25rem;
}
.bundle-divider { height: 1px; background: #E2E8F0; margin-bottom: 1.25rem; }
.bundle-features {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1.5rem;
}
.bundle-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  color: #334155;
}
.bundle-features li::before {
  content: '✓';
  color: #10B981;
  font-weight: 700;
  flex-shrink: 0;
}
.bundle-card .btn { width: 100%; }

@media (max-width: 700px) {
  .bundles-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   VERTRAUEN & STATISTIKEN
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}
.stat-item {
  text-align: center;
  padding: 1.5rem;
  border-radius: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
}
.stat-number {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.75rem;
  font-weight: 800;
  color: #10B981;
  display: block;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.trust-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: rgba(255,255,255,0.05);
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.08);
}
.trust-icon {
  width: 44px; height: 44px;
  background: rgba(16,185,129,0.15);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.trust-text h4 {
  color: #FFFFFF;
  font-size: 0.95rem;
  margin-bottom: 0.3rem;
}
.trust-text p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.5;
}

@media (max-width: 900px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 500px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1A56DB 0%, #0F172A 100%);
  padding: 4rem 2rem;
  text-align: center;
  color: #FFFFFF;
}
.cta-banner h2 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 1rem;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-banner .btn { margin: 0 0.5rem; }

/* ============================================================
   KONTAKT
   ============================================================ */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.kontakt-info h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}
.kontakt-info p {
  color: #64748B;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.kontakt-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.kontakt-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}
.kontakt-detail-item .icon {
  width: 40px; height: 40px;
  background: rgba(26,86,219,0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.kontakt-detail-item strong { display: block; font-size: 0.8rem; color: #94A3B8; }
.kontakt-detail-item span { color: #0F172A; }

.whatsapp-button {
  display: inline-block;
  background: #25D366;
  color: white;
  padding: 14px 24px;
  margin-top: 20px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
}
/* Formular */
.kontakt-form {
  background: #F8FAFC;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #E2E8F0;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1rem;
}
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #334155;
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid #CBD5E1;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  color: #0F172A;
  background: #FFFFFF;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: #1A56DB;
  box-shadow: 0 0 0 3px rgba(26,86,219,0.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
.form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  accent-color: #1A56DB;
  flex-shrink: 0;
  cursor: pointer;
}
.form-checkbox label {
  font-size: 0.82rem;
  color: #64748B;
  line-height: 1.5;
  cursor: pointer;
}
.form-checkbox a { color: #1A56DB; }
.form-submit { width: 100%; padding: 0.9rem; font-size: 1rem; }
.form-success {
  display: none;
  text-align: center;
  padding: 2rem;
  color: #059669;
}
.form-success .success-icon { font-size: 3rem; margin-bottom: 1rem; }
.form-success h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
.form-success p { color: #64748B; font-size: 0.9rem; }

@media (max-width: 900px) {
  .kontakt-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #0F172A;
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .logo-main {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #FFFFFF;
}
.footer-brand .logo-sub {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.social-links {
  display: flex;
  gap: 0.75rem;
}
.social-links a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  transition: background 0.2s;
  color: rgba(255,255,255,0.75);
}
.social-links a:hover { background: #1A56DB; color: #FFFFFF; }
.footer-col h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #FFFFFF; }
.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}
.footer-contact-item .icon { color: #10B981; flex-shrink: 0; margin-top: 2px; }
.footer-bottom {
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; }
.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}
.footer-bottom-links a {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: #FFFFFF; }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   UNTERSEITEN (pages/)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 8rem 0 4rem;
  color: #FFFFFF;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; }
.page-content {
  max-width: 860px;
  margin: 0 auto;
  padding: 4rem 1.5rem;
}
.page-content h2 { font-size: 1.5rem; margin: 2rem 0 0.75rem; color: #0F172A; }
.page-content h3 { font-size: 1.15rem; margin: 1.5rem 0 0.5rem; color: #1E293B; }
.page-content p { color: #334155; line-height: 1.8; margin-bottom: 1rem; }
.page-content a { color: #1A56DB; }
.page-content a:hover { text-decoration: underline; }

/* ============================================================
   SCROLL-ANIMATION (Fade-in)
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }
  .section-header { margin-bottom: 2.5rem; }
}
.nav-logo img {
  height: 50px;
}
@media (max-width: 768px) {
  .slider-arrow {
    display: none;
  }
}