/* ===================================
   CSS Reset & Base Styles
   =================================== */
:root {
  /* --- LOGO PALETTE EXTRACTED --- */
  /* Der Hintergrund des Logos (Vertrauen, Seriosität) */
  --color-brand-navy: #0B1120;
  --color-brand-navy-light: #1a2640;

  /* Die Herz-Verläufe (Wärme, Energie, Leben) */
  --color-brand-coral: #FF5E78;
  --color-brand-coral-light: #ff8a9d;
  --color-brand-teal: #2EC4B6;
  --color-brand-teal-dark: #20998d;
  --color-brand-orange: #FF9F1C; /* Das kleine Herz oben */

  /* Neutrals & Backgrounds */
  --color-bg-body: #f8fafc; /* Sehr helles Grau/Blau, wirkt sauberer als Reinweiß */
  --color-bg-card: #ffffff;
  --color-text-main: #334155; /* Dunkles Grau, besser lesbar als Schwarz */
  --color-text-muted: #64748b;

  /* Typography */
  --font-primary: "Inter", sans-serif;
  --font-display: "Outfit", sans-serif;

  /* Spacing & Radius */
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  /* Shadows (Modern & Soft for Trust) */
  --shadow-sm: 0 2px 4px rgba(11, 17, 32, 0.05);
  --shadow-md: 0 8px 20px rgba(11, 17, 32, 0.08);
  --shadow-lg: 0 20px 40px rgba(11, 17, 32, 0.12);
  --shadow-glow: 0 0 20px rgba(46, 196, 182, 0.3); /* Teal Glow */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-body);
  color: var(--color-text-main);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Typografie */
h1, h2, h3 {
  font-family: var(--font-display);
  color: var(--color-brand-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

h1 { font-weight: 800; letter-spacing: -0.02em; }
h2 { font-weight: 700; letter-spacing: -0.01em; }

.highlight {
  background: linear-gradient(120deg, var(--color-brand-coral) 0%, var(--color-brand-orange) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

/* ===================================
   Header & Nav
   =================================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0,0,0,0.05);
  padding: 1rem 0;
  transition: all 0.3s ease;
}

.nav-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--color-brand-navy);
}


.logo img {
  border-radius: 4px;
}

.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-link {
  text-decoration: none;
  color: var(--color-text-main);
  font-weight: 500;
  transition: color 0.2s;
}

.nav-link:hover { color: var(--color-brand-coral); }

/* Mobile Menu Styling (Hidden by default on desktop) */
.mobile-menu-toggle { display: none; background: none; border: none; cursor: pointer; }
.mobile-menu-toggle span { display: block; width: 25px; height: 3px; background: var(--color-brand-navy); margin: 5px 0; }

/* ===================================
   Buttons (Psychology: High Contrast)
   =================================== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  /* Gradient aus dem Logo */
  background: linear-gradient(135deg, var(--color-brand-navy) 0%, var(--color-brand-navy-light) 100%);
  color: white;
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  background: linear-gradient(135deg, var(--color-brand-coral) 0%, var(--color-brand-coral-light) 100%); /* Hover wird warm */
}

.btn-secondary {
  background: white;
  color: var(--color-brand-navy);
  border: 2px solid var(--color-brand-navy);
}

.btn-secondary:hover {
  background: var(--color-brand-navy);
  color: white;
}

/* ===================================
   Hero Section
   =================================== */
.hero {
  padding: 160px 0 100px;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%); /* Sanfter Übergang zu hellem Türkis */
  position: relative;
  overflow: hidden;
}

/* Background blobs for abstract feeling */
.parallax-bg {
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-title { font-size: 3.5rem; margin-bottom: 1.5rem; }
.hero-subtitle { font-size: 1.25rem; color: var(--color-text-muted); margin-bottom: 2.5rem; max-width: 600px; }

.trust-badges { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 3rem; }
.badge {
  display: flex; align-items: center; gap: 8px;
  background: white; padding: 8px 16px; border-radius: var(--radius-full);
  box-shadow: var(--shadow-sm); font-size: 0.9rem; font-weight: 600; color: var(--color-brand-navy);
  border: 1px solid rgba(46, 196, 182, 0.2);
}
.badge svg { width: 18px; height: 18px; color: var(--color-brand-teal); }

.image-wrapper {
  border-radius: 30px 0 30px 0; /* Modern Organic Shape */
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transform: rotate(2deg);
  transition: transform 0.5s ease;
  border: 4px solid white;
}
.hero:hover .image-wrapper { transform: rotate(0deg); }

/* ===================================
   Services (Cards)
   =================================== */
.services-section { padding: 100px 0; background: var(--color-bg-body); }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }

.service-card {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.03);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

/* Der "Herzschlag" Hover Effekt */
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0;
  background: linear-gradient(to bottom, var(--color-brand-coral), var(--color-brand-orange));
  transition: height 0.3s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }

.service-icon {
  width: 64px; height: 64px;
  background: rgba(46, 196, 182, 0.1);
  color: var(--color-brand-teal-dark);
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.5rem;
}
.service-icon svg { width: 32px; height: 32px; }

/* ===================================
   Team Section (2 Columns Layout)
   =================================== */
.team-section { padding: 100px 0; background: white; }
.team-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); /* Exakt 2 Spalten für Justin & Ruben */
  gap: 40px; max-width: 1000px; margin: 0 auto;
}

.team-member {
  background: var(--color-bg-body);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease;
}
.team-member:hover { transform: translateY(-5px); }

.member-image { height: 350px; overflow: hidden; }
.member-image img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.member-info { padding: 30px; }
.member-role { color: var(--color-brand-coral); font-weight: 700; text-transform: uppercase; font-size: 0.85rem; letter-spacing: 1px; }

/* ===================================
   Testimonials & Footer
   =================================== */
.testimonials-section { padding: 100px 0; overflow: hidden; background: linear-gradient(to bottom, #f8fafc, #fff); }
.testimonials-marquee { display: flex; gap: 2rem; padding: 1rem; overflow-x: auto; scrollbar-width: none; }
.testimonial-card {
  min-width: 350px; background: white; padding: 30px;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
}

.footer {
  background: var(--color-brand-navy); /* Dunkles Blau vom Logo Hintergrund */
  color: white;
  padding: 80px 0 30px;
}
.footer h3 { color: white; margin-bottom: 1.5rem; }
.footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer a:hover { color: var(--color-brand-coral); }
.footer-logo-text { font-weight: 800; font-size: 1.5rem; font-family: var(--font-display); }

/* ===================================
   Responsive
   =================================== */
@media (max-width: 968px) {
  .hero-content { grid-template-columns: 1fr; text-align: center; }
  .hero-title { font-size: 2.5rem; }
  .hero-buttons, .trust-badges { justify-content: center; }
  .image-wrapper { margin-top: 3rem; transform: rotate(0); }
  .team-grid { grid-template-columns: 1fr; } /* Mobile untereinander */
  .nav-menu { display: none; } /* Hier müsste JS Toggle Logik greifen */
  .mobile-menu-toggle { display: block; }
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===================================
   Team Section (Ohne Fotos, mit Initialen)
   =================================== */
.team-avatar-placeholder {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-brand-navy-light), var(--color-brand-navy));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-display);
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 20px rgba(11, 17, 32, 0.15);
  border: 3px solid white;
}

/* Zentrierte Team-Karten ohne Foto */
.team-member-no-img {
  background: white;
  padding: 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: transform 0.3s ease;
}

.team-member-no-img:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-brand-teal);
}

/* ===================================
   Footer Styling (Restored Flare)
   =================================== */
.footer {
  background: linear-gradient(160deg, var(--color-brand-navy) 0%, #020617 100%);
  color: #e2e8f0;
  padding: 80px 0 0;
  font-size: 0.95rem;
  position: relative;
  overflow: hidden;
}

/* Dekorativer "Glow" im Footer Hintergrund */
.footer::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(46, 196, 182, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 1.5rem;
}

.footer-logo img {
  border-radius: 4px;
}

.footer-logo-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.5rem;
  color: white;
  letter-spacing: -0.02em;
}

.footer-tagline {
  color: var(--color-brand-coral);
  font-weight: 600;
  margin-bottom: 1rem;
  line-height: 1.4;
}

.footer-description {
  color: #94a3b8; /* Muted Slate */
  line-height: 1.7;
  max-width: 300px;
}

.footer-title {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.5px;
}

.footer-links, .footer-contact, .footer-hours {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--color-brand-coral);
  transform: translateX(5px);
}

.footer-contact li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: #cbd5e1;
}

.footer-icon {
  width: 20px; height: 20px;
  color: var(--color-brand-teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding-bottom: 8px;
}
.footer-hours strong { color: white; }

.footer-bottom {
  padding: 30px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 0.85rem;
  color: #64748b;
}

.footer-legal-links a {
  color: #94a3b8;
  text-decoration: none;
  margin: 0 10px;
  transition: color 0.2s;
}
.footer-legal-links a:hover { color: white; }

@media (max-width: 1024px) {
  .footer-content { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-content { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ===================================
   GLOBAL FIXES (Scrollbar & Responsive)
   =================================== */
html, body {
  overflow-x: hidden; /* Verhindert seitliches Scrollen */
  width: 100%;
  margin: 0;
  padding: 0;
}

/* ===================================
   HEADER & MOBILE MENU FIX
   =================================== */
/* Desktop Menu Styles */
.nav-menu {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.mobile-menu-toggle {
  display: none; /* Hidden on Desktop */
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1001;
}
.mobile-menu-toggle span {
  width: 25px; height: 3px; background: var(--color-brand-navy);
  transition: 0.3s;
}

/* Mobile Styles */
@media (max-width: 968px) {
  .mobile-menu-toggle { display: flex; }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%; /* Startet außerhalb des Bildschirms */
    width: 80%;
    height: 100vh;
    background: white;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    transition: right 0.3s ease-in-out;
    z-index: 1000;
  }

  .nav-menu.active {
    right: 0; /* Slide In */
  }

  .nav-link { font-size: 1.2rem; margin: 10px 0; display: block; }
}

/* ===================================
   HERO BUTTONS FIX
   =================================== */
.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap; /* Umbruch auf Mobile erlauben */
  margin-bottom: 2rem;
}

@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { width: 100%; text-align: center; }
}

/* ===================================
   SERVICES GRID (Das Layout Update)
   =================================== */
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* Basis: 2 Spalten */
  gap: 30px;
}

/* Alltagshilfe nimmt volle Breite ein */
.full-width-card {
  grid-column: 1 / -1; /* Von Spalte 1 bis Ende */
}

/* Details innerhalb der Alltagshilfe */
.service-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2 Spalten für die Listen */
  gap: 30px;
  margin-top: 20px;
}

.detail-group h4 {
  color: var(--color-brand-navy);
  font-size: 1.1rem;
  margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.icon-small { width: 20px; height: 20px; color: var(--color-brand-teal); }

.detail-group ul {
  list-style: none; padding: 0; margin: 0;
  color: var(--color-text-muted); font-size: 0.95rem; line-height: 1.6;
}
.detail-group li { margin-bottom: 5px; padding-left: 10px; border-left: 2px solid #eee; }

.note { font-size: 0.8rem; color: var(--color-brand-teal-dark); margin-top: 10px; font-style: italic; }

/* Mini-Listen für Web & Coaching */
.mini-list { list-style: disc; padding-left: 20px; margin-bottom: 20px; color: var(--color-text-muted); }

/* Farben für Icons/Text */
.icon-navy { color: var(--color-brand-navy); background: #f1f5f9; }
.icon-orange { color: var(--color-brand-orange); background: #fff7ed; }
.navy-text { color: var(--color-brand-navy); font-weight: 600; }
.orange-text { color: var(--color-brand-orange); font-weight: 600; }
.link-navy { color: var(--color-brand-navy); font-weight: 600; text-decoration: none; }
.link-orange { color: var(--color-brand-orange); font-weight: 600; text-decoration: none; }

/* Mobile Anpassungen für Services */
@media (max-width: 768px) {
  .services-grid { grid-template-columns: 1fr; } /* Alles untereinander */
  .service-details-grid { grid-template-columns: 1fr; } /* Details auch untereinander */
}

/* ===================================
   PRICING SECTION STYLES
   =================================== */
.pricing-section {
  padding: 100px 0;
  background: linear-gradient(to bottom, #ffffff 0%, var(--color-bg-body) 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 0 auto;
}

.pricing-category-title {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  border-bottom: 2px solid rgba(0,0,0,0.05);
  padding-bottom: 10px;
}

.pricing-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.05);
  margin-bottom: 25px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.pricing-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

/* Design Varianten */
.pricing-card { border-top: 4px solid var(--color-brand-coral); }
.pricing-card.theme-navy { border-top: 4px solid var(--color-brand-navy); }

.pricing-header { margin-bottom: 20px; border-bottom: 1px solid #f1f5f9; padding-bottom: 15px; }
.pricing-header h4 { font-size: 1.2rem; margin-bottom: 5px; color: var(--color-brand-navy); }
.pricing-sub { font-size: 0.9rem; color: var(--color-text-muted); margin: 0; }

.pricing-list { list-style: none; padding: 0; margin: 0; }
.pricing-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 0.95rem;
  color: var(--color-text-main);
}
.pricing-list li:last-child { border-bottom: none; }

.pricing-list .price {
  font-weight: 700;
  color: var(--color-brand-navy);
  font-size: 1.1rem;
  font-family: var(--font-display);
}

.pricing-list .price small {
  font-size: 0.75rem;
  font-weight: 400;
  color: var(--color-text-muted);
}

.highlight-item {
  background: #f8fafc;
  margin: 0 -10px;
  padding: 12px 10px !important;
  border-radius: 8px;
  border-bottom: none !important;
}

.pricing-note {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-top: 15px;
  font-style: italic;
}

.pricing-badge {
  display: inline-block;
  background: #dbeafe;
  color: #1e40af;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  text-transform: uppercase;
  margin-top: 10px;
}

.pricing-disclaimer {
  text-align: center;
  margin-top: 40px;
  padding: 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  border-left: 4px solid var(--color-brand-teal);
}

/* Responsive */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  .pricing-category-title {
    margin-top: 30px;
  }
}