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

:root {
  --primary: #0a2540;
  --primary-dark: #061a2e;
  --accent: #1a6b9a;
  --accent-hover: #155a82;
  --text: #1e293b;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #f1f5f9;
  --border: #e2e8f0;
  --white: #ffffff;
  --radius: 10px;
  --shadow: 0 4px 20px rgba(10, 37, 64, 0.08);
  --transition: 0.25s ease;
}

html { scroll-behavior: smooth; }

html { overflow-x: hidden; }
body {
  overflow-x: hidden;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--text);
  line-height: 1.6;
  background: var(--bg);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ===== Top Bar ===== */
.top-bar {
  background: var(--primary-dark);
  color: var(--white);
  font-size: 0.9rem;
  padding: 0.45rem 0;
  text-align: left;
}

.top-bar .phone-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--white);
  font-weight: 500;
}
.top-bar .phone-link:hover { opacity: 0.9; }

/* ===== Header ===== */
.header {
  background: var(--primary);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.55rem 1.25rem;
  min-height: 70px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  flex-shrink: 0;
  z-index: 5;
  max-width: 220px;
}

.logo img {
  height: 48px;
  width: auto;
  border-radius: 6px;
  background: var(--white);
  padding: 3px;
  flex-shrink: 0;
}

.logo-text {
  font-size: 0.88rem;
  line-height: 1.2;
  font-weight: 400;
  white-space: nowrap;
}
.logo-text strong { font-weight: 700; font-size: 1.05rem; }

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 0.1rem;
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
}

.nav-link {
  color: rgba(255,255,255,0.9);
  padding: 0.45rem 0.55rem;
  font-weight: 500;
  font-size: 0.84rem;
  border-radius: 6px;
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover,
.nav-link.active {
  color: var(--white);
  background: rgba(255,255,255,0.12);
}

.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 220px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 50;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.1rem;
  color: var(--text);
  font-size: 0.9rem;
}
.dropdown-menu a:hover {
  background: var(--bg-alt);
  color: var(--primary);
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 480px;
  background: linear-gradient(135deg, #0a2540 0%, #1a4a6e 50%, #0d3a5c 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(26, 107, 154, 0.25) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.05) 0%, transparent 40%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 4rem 1.25rem;
  max-width: 800px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 1rem;
  text-shadow: 0 2px 8px rgba(0,0,0,0.2);
}

.hero-sub {
  color: rgba(255,255,255,0.9);
  font-size: 1.2rem;
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.7);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

.btn-block { width: 100%; }

/* ===== Sections ===== */
.section {
  padding: 4.5rem 0;
}

.section-alt {
  background: var(--bg-alt);
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--primary);
  margin-bottom: 0.75rem;
}

.divider {
  width: 60px;
  height: 4px;
  background: var(--accent);
  margin: 0 auto 1rem;
  border-radius: 2px;
}

.section-intro {
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}

/* ===== About ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.about-text p {
  margin-bottom: 1.1rem;
  color: var(--text);
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.feature-list li {
  background: var(--bg-alt);
  padding: 0.7rem 1rem;
  border-radius: 8px;
  border-left: 4px solid var(--accent);
  font-size: 0.95rem;
}

.about-card {
  background: var(--primary);
  color: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.about-card h3 {
  margin-bottom: 1.25rem;
  font-size: 1.25rem;
}
.about-card ul {
  margin-bottom: 1.75rem;
}
.about-card li {
  padding: 0.4rem 0;
  font-size: 0.98rem;
}

/* ===== Services ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 3rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.12);
}

.service-icon {
  font-size: 2.4rem;
  margin-bottom: 1rem;
}

.service-card h3 {
  color: var(--primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 1.1rem;
  flex-grow: 1;
}

.service-card ul {
  margin-bottom: 1.25rem;
}
.service-card li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
  color: var(--text);
}
.service-card li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.service-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
}
.service-link:hover { text-decoration: underline; }

.cta-box {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 2.5rem 2rem;
  border-radius: var(--radius);
}
.cta-box h3 {
  font-size: 1.35rem;
  margin-bottom: 0.5rem;
}
.cta-box p {
  opacity: 0.9;
  margin-bottom: 1.5rem;
}

/* ===== Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
  margin-bottom: 2rem;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover {
  transform: translateY(-3px);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.team-card h4 {
  color: var(--primary);
  margin-bottom: 0.25rem;
}
.team-role {
  color: var(--text-light);
  font-size: 0.9rem;
}

.team-cta {
  text-align: center;
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
}

/* ===== Contact ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2.5rem;
}

.contact-info h3 {
  color: var(--primary);
  margin-bottom: 1rem;
  font-size: 1.3rem;
}

.address {
  margin-bottom: 1.5rem;
  color: var(--text-light);
}

.contact-item {
  margin-bottom: 1.1rem;
}
.contact-item strong {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.contact-item a {
  color: var(--accent);
  font-weight: 600;
  font-size: 1.05rem;
}
.contact-item a:hover { text-decoration: underline; }

.contact-form-wrapper {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-wrapper h3 {
  color: var(--primary);
  margin-bottom: 1.25rem;
}

.form-group {
  margin-bottom: 1.1rem;
}
.form-group label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.35rem;
  color: var(--text);
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  transition: var(--transition);
  background: var(--bg);
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 107, 154, 0.15);
}

.form-note {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--text-light);
  text-align: center;
}

/* ===== Footer ===== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 1rem;
  background: var(--white);
  border-radius: 6px;
  padding: 4px;
}

.footer-brand p {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-links h4,
.footer-contact h4 {
  color: var(--white);
  margin-bottom: 1rem;
  font-size: 1rem;
}

.footer-links a,
.footer-contact a {
  display: block;
  padding: 0.3rem 0;
  font-size: 0.95rem;
  opacity: 0.85;
  transition: var(--transition);
}
.footer-links a:hover,
.footer-contact a:hover {
  opacity: 1;
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.9rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}
.footer-legal a:hover { text-decoration: underline; }

/* ===== Floating Action Buttons ===== */
.fab-container {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  z-index: 90;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(26, 107, 154, 0.4);
  transition: var(--transition);
}
.fab:hover {
  background: var(--accent-hover);
  transform: scale(1.08);
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .about-grid,
  .services-grid,
  .team-grid,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .services-grid { gap: 1.25rem; }
  .feature-list { grid-template-columns: 1fr; }
}

@media (max-width: 1100px) {
  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 88vw);
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 5rem 1.5rem 2rem;
    transition: right 0.3s ease;
    box-shadow: -4px 0 20px rgba(0,0,0,0.2);
    z-index: 200;
    overflow-y: auto;
  }
  .nav.open { right: 0; }

  .nav-link { padding: 0.9rem 1rem; font-size: 1rem; }
  .nav-dropdown .dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    background: transparent;
    box-shadow: none;
    padding-left: 1rem;
  }
  .dropdown-menu a { color: rgba(255,255,255,0.85); }

  .burger { display: flex; }
  .logo { max-width: none; }
  .logo-text { white-space: normal; }


  .hero { min-height: 400px; }
  .hero-content { padding: 3rem 1.25rem; }

  .section { padding: 3.5rem 0; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .logo-text { display: none; }
  .hero h1 { font-size: 1.55rem; }
  .hero-buttons { flex-direction: column; }
  .btn { width: 100%; }
}

/* ===== Google Maps ===== */
.map-wrapper {
  margin-top: 3rem;
}

.map-title {
  color: var(--primary);
  font-size: 1.3rem;
  margin-bottom: 1rem;
  text-align: center;
}

.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.map-container iframe {
  display: block;
  width: 100%;
  min-height: 360px;
}

.map-link {
  text-align: center;
  margin-top: 0.85rem;
}

.map-link a {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.95rem;
}

.map-link a:hover {
  text-decoration: underline;
}

/* ===== Pricing / Tarife ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

.price-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  position: relative;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(10, 37, 64, 0.12);
}

.price-badge {
  position: absolute;
  top: -10px;
  right: 1rem;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.price-card h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 0.35rem;
}

.price-desc {
  color: var(--text-light);
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.price-amount {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 1rem;
}

.price-amount span {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-light);
}

.price-features {
  margin-bottom: 1rem;
  flex-grow: 1;
}

.price-features li {
  position: relative;
  padding-left: 1.2rem;
  margin-bottom: 0.35rem;
  font-size: 0.92rem;
}

.price-features li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: bold;
}

.price-example {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
  padding: 0.6rem 0.8rem;
  background: var(--bg-alt);
  border-radius: 6px;
}

.pricing-note {
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 1.25rem 1.5rem;
  margin-bottom: 2.5rem;
  font-size: 0.9rem;
  color: var(--text-light);
  border-left: 4px solid var(--accent);
}

/* ===== Booking Form ===== */
.booking-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  box-shadow: var(--shadow);
  max-width: 800px;
  margin: 0 auto;
}

.booking-box h3 {
  color: var(--primary);
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
  text-align: center;
}

.booking-intro {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 2rem;
  font-size: 0.98rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.booking-form select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
  transition: var(--transition);
}

.booking-form select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 107, 154, 0.15);
}

.form-check {
  margin: 1.25rem 0;
}

.form-check label {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  cursor: pointer;
  color: var(--text);
}

.form-check input[type="checkbox"] {
  margin-top: 0.25rem;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.form-check a {
  color: var(--accent);
  text-decoration: underline;
}

.booking-success {
  text-align: center;
  padding: 2rem 1rem;
}

.booking-success h3 {
  color: #059669;
  margin-bottom: 1rem;
}

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

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  .booking-box {
    padding: 1.75rem 1.25rem;
  }
}

/* WhatsApp FAB */
.fab-whatsapp {
  background: #25D366 !important;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.45) !important;
}
.fab-whatsapp:hover {
  background: #1da851 !important;
  transform: scale(1.08);
}

/* Social buttons in contact */
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.1rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff !important;
  transition: var(--transition);
}

.social-wa {
  background: #25D366;
}
.social-wa:hover {
  background: #1da851;
  transform: translateY(-1px);
}

.social-fb {
  background: #1877F2;
}
.social-fb:hover {
  background: #0d65d9;
  transform: translateY(-1px);
}

/* Calendly */
.calendly-wrapper {
  margin: 1.5rem 0 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
}

.calendly-fallback {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.calendly-fallback a {
  color: var(--accent);
  font-weight: 600;
}

.calendly-fallback a:hover {
  text-decoration: underline;
}

.booking-divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 1.5rem;
  color: var(--text-light);
  font-size: 0.9rem;
}

.booking-divider::before,
.booking-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--border);
}

.booking-divider span {
  white-space: nowrap;
}

/* Google Terminplanung */
.google-booking-box {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  margin: 1.5rem 0;
  border: 1px solid var(--border);
}

.btn-google-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  padding: 1rem 1.75rem;
  background: #1a73e8;
  border-color: #1a73e8;
}

.btn-google-book:hover {
  background: #1557b0;
  border-color: #1557b0;
}

.google-booking-hint {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--text-light);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

.google-embed-wrapper {
  margin: 1rem 0 1.5rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
}

/* Cal.com Embed */
.cal-embed-wrapper {
  margin: 1.25rem 0 0.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  min-height: 500px;
}

.cal-fallback {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.cal-fallback a {
  color: var(--accent);
  font-weight: 600;
}

.cal-fallback a:hover {
  text-decoration: underline;
}

.pricing-grid-5 {
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}

.price-hour {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 1.25rem;
}

.price-badge-basis { background: #64748b; }
.price-badge-premium { background: #7c3aed; }
.price-badge-spezial { background: #b45309; }

@media (max-width: 1100px) {
  .pricing-grid-5 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .pricing-grid-5 {
    grid-template-columns: 1fr;
  }
}

/* ===== Auftragskalkulator ===== */
.calculator-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow);
  margin-bottom: 2.5rem;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.calculator-box h3 {
  color: var(--primary);
  text-align: center;
  margin-bottom: 0.5rem;
  font-size: 1.35rem;
}

.calc-intro {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 1.5rem;
  font-size: 0.98rem;
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}

.calculator-box select,
.calculator-box input[type="number"] {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--bg);
}

.calculator-box select:focus,
.calculator-box input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(26, 107, 154, 0.15);
}

.calc-result {
  margin-top: 1.25rem;
}

.calc-result-inner {
  background: linear-gradient(135deg, var(--primary) 0%, #1a4a6e 100%);
  color: #fff;
  border-radius: var(--radius);
  padding: 1.75rem 1.5rem;
  text-align: center;
}

.calc-label {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 0.35rem;
}

.calc-price {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.calc-detail {
  font-size: 0.95rem;
  opacity: 0.95;
  margin-bottom: 0.5rem;
}

.calc-disclaimer {
  font-size: 0.8rem;
  opacity: 0.75;
  margin-bottom: 1.25rem;
}

.calc-result-inner .btn-primary {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
}

.calc-result-inner .btn-primary:hover {
  background: #f1f5f9;
  transform: translateY(-1px);
}

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

/* Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem 1.25rem;
  text-align: center;
  box-shadow: var(--shadow);
}
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.step-card h4 { color: var(--primary); margin-bottom: 0.5rem; }
.step-card p { font-size: 0.92rem; color: var(--text-light); }
.text-center { text-align: center; }

/* Testimonials */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  margin: 0;
}
.stars { color: #f59e0b; letter-spacing: 2px; margin-bottom: 0.75rem; }
.testimonial-card p { font-size: 0.98rem; margin-bottom: 1rem; color: var(--text); }
.testimonial-card footer { font-size: 0.85rem; color: var(--text-light); }
.testimonial-note { text-align: center; margin-top: 1.5rem; font-size: 0.85rem; color: var(--text-light); }

/* FAQ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  padding: 0 1.25rem;
}
.faq-item summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--primary);
  padding: 1rem 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.25rem; color: var(--accent); }
.faq-item[open] summary::after { content: "−"; }
.faq-item p {
  padding-bottom: 1rem;
  color: var(--text-light);
  font-size: 0.95rem;
  margin: 0;
}

/* Gebiet */
.gebiet-box {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
  background: var(--bg-alt);
  padding: 2rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.gebiet-list {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
  font-weight: 600;
  color: var(--primary);
}
.gebiet-list li { padding: 0.35rem 0; }
.gebiet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 1.25rem;
}
.gebiet-wa {
  background: #25D366 !important;
  border-color: #25D366 !important;
  color: #fff !important;
}

/* Scroll top */
.scroll-top {
  position: fixed;
  right: 1rem;
  bottom: 1.25rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: var(--primary);
  color: #fff;
  font-size: 1.25rem;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 85;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
.scroll-top:hover { background: var(--accent); }

@media (max-width: 900px) {
  .steps-grid,
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* Rabattcodes */
.promo-box {
  margin-top: 1.25rem;
  padding: 1.25rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px dashed var(--border);
}
.promo-box label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--primary);
  font-size: 0.95rem;
}
.promo-row {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.promo-row input {
  flex: 1;
  min-width: 140px;
  padding: 0.7rem 1rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 1rem;
  font-family: inherit;
  text-transform: uppercase;
}
.promo-hint {
  margin-top: 0.65rem;
  font-size: 0.85rem;
  color: var(--text-light);
}
.promo-status {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.promo-ok { color: #059669; }
.promo-error { color: #dc2626; }
.calc-discount {
  font-size: 1rem;
  font-weight: 600;
  color: #86efac;
  margin-bottom: 0.5rem;
}

.promo-input-ok {
  border-color: #059669 !important;
  background: #ecfdf5 !important;
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.15);
}
.promo-input-error {
  border-color: #dc2626 !important;
  background: #fef2f2 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.12);
}

/* Karriere / Bewerbung */
.jobs-intro {
  max-width: 900px;
  margin: 0 auto 2rem;
}
.job-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.job-point {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  text-align: center;
}
.job-point strong {
  display: block;
  color: var(--accent);
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.job-point span {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.98rem;
}
.apply-box {
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 700px) {
  .job-points { grid-template-columns: 1fr; }
}

.tarif-cat {
  color: var(--primary);
  font-size: 1.15rem;
  margin: 2.25rem 0 1rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent);
}
.tarif-note-inline {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-light);
}
.pricing-grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.pricing-grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
@media (max-width: 1000px) {
  .pricing-grid-3,
  .pricing-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .pricing-grid-3,
  .pricing-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* Pflichtfeld-Hinweis bei Browser-Validierung */
.booking-form input:invalid:not(:placeholder-shown):not(:focus),
.booking-form select:invalid:not(:focus),
.contact-form input:invalid:not(:placeholder-shown):not(:focus),
.contact-form select:invalid:not(:focus) {
  border-color: #dc2626;
}
.booking-form input:required:focus:invalid,
.contact-form input:required:focus:invalid {
  border-color: #f59e0b;
}

/* Trust bar */
.trust-bar {
  background: var(--primary);
  color: #fff;
  padding: 0.85rem 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.75rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.trust-item { display: flex; align-items: center; gap: 0.35rem; }
.trust-icon { color: #86efac; font-weight: 700; }

/* Express banner */
.express-banner {
  background: linear-gradient(90deg, #0f3d5c, #1a6b9a);
  color: #fff;
  padding: 1rem 0;
  border-bottom: 3px solid var(--accent);
}
.express-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.express-text strong { display: block; font-size: 1.05rem; margin-bottom: 0.2rem; }
.express-text span { font-size: 0.92rem; opacity: 0.95; }
.express-actions { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.9rem; }
.express-wa { background: #25D366 !important; border-color: #25D366 !important; color: #fff !important; }

/* Free visit */
.free-visit-box {
  max-width: 900px;
  margin: 0 auto 2rem;
  padding: 1.5rem;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  border-radius: var(--radius);
  text-align: center;
}
.free-visit-box strong { color: #047857; font-size: 1.1rem; display: block; margin-bottom: 0.4rem; }
.free-visit-box p { color: var(--text); margin-bottom: 1rem; font-size: 0.95rem; }
.free-visit-box .btn { margin: 0.25rem; }

/* Cookie banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 200;
  background: rgba(15, 40, 60, 0.97);
  color: #fff;
  padding: 1rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
}
.cookie-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.cookie-inner p { margin: 0; font-size: 0.9rem; flex: 1; min-width: 220px; }
.cookie-inner a { color: #93c5fd; }
.cookie-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }

/* Open status */
.open-status {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  margin-left: 0.35rem;
}
.open-status.is-open { background: #d1fae5; color: #047857; }
.open-status.is-closed { background: #fee2e2; color: #b91c1c; }

@media (max-width: 600px) {
  .express-inner { flex-direction: column; align-items: flex-start; }
  .trust-bar-inner { font-size: 0.82rem; gap: 0.5rem 1rem; }
}

/* ===== Chatbot ===== */
.chat-widget {
  position: fixed;
  right: 1rem;
  bottom: 15.5rem;
  z-index: 120;
  font-family: inherit;
}
.chat-toggle {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--accent, #1a6b9a);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 0.7rem 1.1rem;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
}
.chat-toggle:hover { filter: brightness(1.08); }
.chat-panel {
  position: absolute;
  right: 0;
  bottom: 3.4rem;
  width: min(360px, calc(100vw - 2rem));
  height: 420px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--border, #e2e8f0);
}
.chat-panel[hidden] { display: none !important; }
.chat-header {
  background: var(--primary, #0f3d5c);
  color: #fff;
  padding: 0.85rem 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.chat-header strong { display: block; font-size: 0.95rem; }
.chat-status { font-size: 0.75rem; opacity: 0.85; }
.chat-close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0 0.25rem;
}
.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0.85rem;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.chat-bubble {
  max-width: 88%;
  padding: 0.65rem 0.85rem;
  border-radius: 12px;
  font-size: 0.9rem;
  line-height: 1.4;
}
.chat-bubble.bot {
  align-self: flex-start;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #1e293b;
}
.chat-bubble.user {
  align-self: flex-end;
  background: var(--accent, #1a6b9a);
  color: #fff;
}
.chat-bubble a { color: inherit; font-weight: 600; text-decoration: underline; }
.chat-quick {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-top: 1px solid #e2e8f0;
  background: #fff;
}
.chat-quick button {
  border: 1px solid #cbd5e1;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 0.3rem 0.65rem;
  font-size: 0.78rem;
  cursor: pointer;
  color: var(--primary, #0f3d5c);
}
.chat-quick button:hover { background: #e2e8f0; }
.chat-form {
  display: flex;
  gap: 0.35rem;
  padding: 0.6rem 0.75rem;
  border-top: 1px solid #e2e8f0;
  background: #fff;
}
.chat-form input {
  flex: 1;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 0.55rem 0.7rem;
  font-size: 0.9rem;
  font-family: inherit;
}
.chat-form button {
  background: var(--accent, #1a6b9a);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 0 0.85rem;
  cursor: pointer;
  font-size: 1rem;
}
@media (max-width: 480px) {
  .chat-widget { right: 0.65rem; bottom: 13.5rem; }
  .fab-container { bottom: 1rem; right: 0.65rem; }
  .scroll-top { bottom: 11rem; right: 0.65rem; }
  .fab { width: 48px; height: 48px; }
  .chat-toggle { padding: 0.55rem 0.85rem; font-size: 0.85rem; }
  .chat-panel { width: min(100vw - 1.2rem, 360px); height: min(70vh, 420px); }
  .pricing-grid-5, .pricing-grid-4, .pricing-grid-3, .pricing-grid {
    grid-template-columns: 1fr !important;
  }
  .calc-grid { grid-template-columns: 1fr !important; }
  .form-row { grid-template-columns: 1fr !important; }
  .header-inner { padding-right: 0.5rem; }
  .container { padding-left: 1rem; padding-right: 1rem; }
  .price-card, .booking-box, .calculator-box { overflow-wrap: anywhere; }
  .hero h1 { font-size: 1.45rem; line-height: 1.3; }
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; text-align: center; }
  .express-actions { width: 100%; }
  .express-actions .btn { flex: 1; text-align: center; }
  body { padding-bottom: 5.5rem; }
  .cookie-banner { padding-bottom: max(1rem, env(safe-area-inset-bottom)); }

  .chat-toggle-label { display: none; }
}


/* Top bar contact row */
.top-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
}
.top-bar-tagline {
  font-size: 0.8rem;
  opacity: 0.85;
}
.top-bar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.85rem;
  justify-content: flex-end;
}
.top-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  padding: 0.25rem 0.45rem;
  border-radius: 6px;
  transition: background 0.15s ease;
}
.top-action:hover { background: rgba(255,255,255,0.12); color: #fff; }
.top-wa { background: rgba(37, 211, 102, 0.2); }
.top-wa:hover { background: rgba(37, 211, 102, 0.35); }

/* Header icon buttons */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  flex-shrink: 0;
  margin-left: auto;
  margin-right: 0.6rem;
}
.header-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  background: rgba(255,255,255,0.1);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s ease, transform 0.15s ease;
  font-size: 1rem;
  padding: 0;
  text-decoration: none;
}
.header-btn:hover {
  background: rgba(255,255,255,0.22);
  transform: scale(1.05);
  color: #fff;
}
.header-btn-wa {
  background: #25D366;
  border-color: #25D366;
}
.header-btn-wa:hover { background: #1ebe57; border-color: #1ebe57; }

/* Chat opens from top-right under header */
.chat-widget-header {
  top: 6.5rem !important;
  bottom: auto !important;
  right: 1rem;
}
.chat-widget-header .chat-panel {
  top: 0 !important;
  bottom: auto !important;
}

.fab-container { display: none !important; }

@media (max-width: 768px) {
  .top-bar-tagline { display: none; }
  .top-action span { display: none; }
  .top-action { padding: 0.4rem; }
  .header-actions { margin-right: 0.35rem; gap: 0.3rem; }
  .header-btn { width: 36px; height: 36px; }
  .chat-widget-header { top: 5.5rem !important; }
  body { padding-bottom: 1rem; }
}
