@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;500;600;700;800;900&family=Inter:wght@400;500;600;700&display=swap');

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', Helvetica, Arial, sans-serif;
  color: #111827;
  background: #fff;
}

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

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

/* ── Layout ── */
.wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header ── */
#site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.header-top {
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
}

.header-top-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 24px;
  max-width: 1080px;
  margin: 0 auto;
}

.header-contacts {
  display: flex;
  align-items: center;
  gap: 20px;
}

.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #f97316;
  font-weight: 700;
  font-size: 20px;
  transition: color 0.2s;
}
.header-phone:hover { color: #ea6c00; }

.header-wa {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #25D366;
  font-weight: 700;
  font-size: 20px;
  transition: opacity 0.2s;
}
.header-wa:hover { opacity: 0.8; }

/* Mobile header */
.header-top-mobile {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
}
.header-top-mobile .header-phone { font-size: 15px; }
.header-top-mobile .header-wa   { font-size: 15px; }
.header-top-mobile .mobile-contacts {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Nav bar */
.header-nav {
  background: #f97316;
  box-shadow: inset 0 4px 6px -2px rgba(0,0,0,0.2), 0 4px 6px -1px rgba(0,0,0,0.1);
}
.header-nav-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 54px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  transition: color 0.2s;
}
.nav-links a:hover { color: rgba(255,255,255,0.8); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: center;
  height: 48px;
  background: none;
  border: none;
  cursor: pointer;
  color: #fff;
}

.mobile-menu {
  display: none;
  background: #fff;
  border-bottom: 1px solid #f3f4f6;
  padding: 8px 24px 12px;
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  transition: color 0.2s;
  border-bottom: 1px solid #f3f4f6;
}
.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: #f97316; }

/* ── Hero ── */
.hero {
  position: relative;
  padding: 56px 0;
  background-image: url('hero-bg.webp');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.70);
}
.hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.hero-welcome {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  margin-bottom: 8px;
}
.hero-h1 {
  font-size: 43px;
  font-weight: 700;
  color: #f97316;
  margin-bottom: 16px;
  line-height: 1.15;
}
.hero-text {
  color: rgba(255,255,255,0.9);
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 480px;
}
.hero-phone {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.hero-phone:hover { color: #fdba74; }
.hero-phone svg { color: #f97316; flex-shrink: 0; }

.hero-checks {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
  margin-bottom: 32px;
}
.hero-check {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.9);
  font-size: 17px;
}
.hero-check .tick { color: #f97316; font-weight: 700; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}
.hero-badges img {
  background: #fff;
  border-radius: 6px;
  padding: 5px 15px;
  height: 48px;
  width: 160px;
  object-fit: contain;
}

/* Hero form card */
.hero-form-card {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  border: 1px solid #e5e7eb;
}
.hero-form-card h2 {
  font-size: 20px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 4px;
}
.hero-form-card .form-sub {
  color: #f97316;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 16px;
}

/* ── Contact Form ── */
.form-group { margin-bottom: 12px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 4px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 5px;
  padding: 8px 12px;
  font-size: 15px;
  color: #111827;
  font-family: inherit;
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: transparent;
  box-shadow: 0 0 0 2px #f97316;
}
.form-group textarea { resize: none; }

.form-submit {
  width: 100%;
  background: #f97316;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  padding: 10px 0;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: inherit;
}
.form-submit:hover { background: #ea6c00; }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; }

.form-note {
  text-align: center;
  font-size: 13px;
  color: #9ca3af;
  margin-top: 8px;
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 16px;
}
.form-success.visible { display: block; }
.form-success .check-icon {
  font-size: 48px;
  margin-bottom: 12px;
}
.form-success h3 {
  color: #f97316;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 8px;
}
.form-success p {
  color: #6b7280;
  font-size: 14px;
}
.form-success a { color: #f97316; font-weight: 700; }

.form-error {
  display: none;
  color: #dc2626;
  font-size: 13px;
  text-align: center;
  margin-bottom: 8px;
}
.form-error.visible { display: block; }

/* ── Vorteile bar ── */
.vorteile-bar {
  background: #636363;
  padding: 40px 0;
}
.vorteile-grid {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.vorteil {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.vorteil svg { color: #f97316; }
.vorteil-label {
  color: #f97316;
  font-weight: 700;
  font-size: 19px;
  line-height: 1.3;
}

/* ── Sections ── */
.section-bg {
  background: #e2e2e2;
  border-bottom: 2px solid #f97316;
  padding: 56px 0;
}
.section-bg-last {
  background: #e2e2e2;
  padding: 56px 0;
}

.section-header {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 8px;
}
.section-header h2 {
  font-size: 48px;
  font-weight: 800;
  color: #111827;
}
.section-tagline {
  color: #f97316;
  font-weight: 500;
  font-size: 27px;
  font-family: 'Maven Pro', Helvetica, Arial, sans-serif;
}

/* ── Service Cards ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.service-card {
  display: block;
  background: #fff;
  border-radius: 6px;
  border: 2px solid #f97316;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0,0,0,0.08);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.service-card:hover {
  border-color: #ea6c00;
  box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.service-card img {
  width: 100%;
  height: 176px;
  object-fit: cover;
  transition: transform 0.3s;
}
.service-card:hover img { transform: scale(1.05); }
.service-card-body { padding: 16px; }
.service-card h3 {
  font-weight: 700;
  color: #f97316;
  font-size: 20px;
  margin-bottom: 6px;
}
.service-card p {
  font-size: 13px;
  color: #6b7280;
  line-height: 1.6;
}

/* ── Contact strip (phone + wa row) ── */
.contact-strip {
  margin-top: 32px;
  text-align: center;
}
.contact-strip-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 24px;
  font-weight: 600;
  font-size: 26px;
  color: #374151;
}
.contact-strip-links a { transition: color 0.2s; }
.contact-strip-links a:hover { color: #f97316; }
.contact-strip-links a.wa:hover { color: #25D366; }
.contact-strip-link-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ── FAQ ── */
.faq-list { display: flex; flex-direction: column; gap: 12px; }

.faq-item {
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
}
.faq-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  color: #111827;
  text-align: left;
  gap: 12px;
  transition: color 0.2s;
}
.faq-trigger:hover { color: #f97316; }
.faq-trigger.open { color: #f97316; }
.faq-chevron {
  flex-shrink: 0;
  transition: transform 0.25s ease;
  color: #9ca3af;
}
.faq-trigger.open .faq-chevron { transform: rotate(180deg); }

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 20px;
}
.faq-content.open {
  max-height: 400px;
  padding: 0 20px 14px;
}
.faq-content p {
  font-size: 14px;
  color: #4b5563;
  line-height: 1.7;
}

/* ── Kontakt Section ── */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.kontakt-form-card {
  background: #fff;
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.07);
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(249,115,22,0.1);
  border: 2px solid #f97316;
  border-radius: 12px;
  padding: 16px 20px;
  transition: background 0.2s;
  margin-bottom: 16px;
}
.contact-card:last-child { margin-bottom: 0; }
.contact-card:hover { background: rgba(249,115,22,0.18); }
.contact-card-icon { flex-shrink: 0; color: #f97316; }
.contact-card-label {
  font-size: 13px;
  font-weight: 600;
  color: #6b7280;
  margin-bottom: 2px;
}
.contact-card-value {
  font-size: 20px;
  font-weight: 700;
  color: #f97316;
}
.contact-card-value.addr {
  color: #6b7280;
  font-weight: 400;
}
.contact-card-sub {
  font-size: 13px;
  color: #6b7280;
  margin-top: 2px;
}
.contact-card:hover .contact-card-value { text-decoration: underline; }

/* ── Bewertungen ── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: #fff;
  border-radius: 6px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}
.review-stars { color: #f97316; font-size: 20px; margin-bottom: 12px; }
.review-text {
  font-style: italic;
  font-size: 13px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 16px;
}
.review-name { font-weight: 700; font-size: 13px; color: #111827; }

/* ── Einsatzgebiete ── */
.einsatz-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0 32px;
}
.einsatz-list { list-style: none; }
.einsatz-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  color: #374151;
  padding: 4px 0;
  transition: color 0.2s;
}
.einsatz-list li:hover { color: #f97316; }
.einsatz-pin { color: #f97316; flex-shrink: 0; }

/* ── Footer ── */
.site-footer {
  background: #636363;
  padding: 24px 0;
}
.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,0.8);
}
.footer-links {
  display: flex;
  gap: 24px;
}
.footer-links a { color: rgba(255,255,255,0.8); transition: color 0.2s; }
.footer-links a:hover { color: #fff; }

/* ── Sticky Side Buttons ── */
.sticky-side {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-84px);
  z-index: 50;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 52px;
}
.sticky-side-btn {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  overflow: hidden;
  width: 52px;
  height: 52px;
  transition: width 0.25s ease;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}
.sticky-side-btn:hover { width: 200px; }
.sticky-side-btn .btn-icon {
  width: 52px;
  min-width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.sticky-side-btn .btn-text {
  padding-left: 14px;
  opacity: 0;
  transition: opacity 0.2s 0.05s;
}
.sticky-side-btn:hover .btn-text { opacity: 1; }

/* ── Section header strip call-to-action ── */
.strip-cta-lead {
  font-size: 17px;
  font-weight: 600;
  color: #374151;
  margin-bottom: 20px;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .header-top-inner { display: none; }
  .header-top-mobile { display: flex; }

  .nav-links { display: none; }
  .header-nav-inner { padding: 0 24px; }
  .mobile-toggle { display: flex; }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .hero-h1 { font-size: 31px; }
  .hero-phone { font-size: 28px; }

  .vorteile-grid { grid-template-columns: repeat(2, 1fr); }

  .section-header {
    flex-direction: column;
    align-items: flex-start;
  }
  .section-header h2 { font-size: 32px; }
  .section-tagline { font-size: 20px; }

  .services-grid { grid-template-columns: 1fr; }

  .kontakt-grid { grid-template-columns: 1fr; }

  .reviews-grid { grid-template-columns: 1fr; }

  .einsatz-grid { grid-template-columns: repeat(2, 1fr); }

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

  .contact-strip-links { font-size: 18px; }

  .sticky-side {
    display: flex !important;
    width: 44px;
    transform: translateY(-66px);
  }
  .sticky-side-btn { width: 44px !important; height: 44px; }
  .sticky-side-btn .btn-icon { width: 44px; min-width: 44px; height: 44px; }
  .sticky-side-btn:hover { width: 44px !important; }
  .sticky-side-btn .btn-text { display: none !important; }
}

@media (max-width: 480px) {
  .einsatz-grid { grid-template-columns: 1fr 1fr; }
  .hero-checks { grid-template-columns: 1fr; }
}
