/* ============================================================
   WOLFRAMM THEME — MAIN STYLESHEET
   ============================================================ */

/* --- Variables & Reset --- */
:root {
  --primary:      #1c2b3a;
  --accent:       #e8841a;
  --accent-dark:  #c06b0e;
  --bike:         #1d4ed8;
  --bike-light:   #dbeafe;
  --heim:         #15803d;
  --heim-light:   #dcfce7;
  --bg:           #f8fafc;
  --bg-dark:      #0f1923;
  --text:         #1e293b;
  --text-muted:   #64748b;
  --white:        #ffffff;
  --border:       #e2e8f0;
  --radius:       14px;
  --radius-sm:    8px;
  --shadow:       0 4px 24px rgba(0,0,0,0.07);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --shadow-hover: 0 12px 40px rgba(0,0,0,0.16);
  --transition:   0.28s cubic-bezier(0.4,0,0.2,1);
  --max-w:        1200px;
  --header-h:     72px;
  --section-py:   80px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

/* --- Typography --- */
h1,h2,h3,h4,h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--primary);
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.15rem; }
p  { max-width: 65ch; }

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

/* --- Layout --- */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: var(--section-py) 0; }
.section--dark { background: var(--primary); color: var(--white); }
.section--dark h2, .section--dark h3 { color: var(--white); }
.section--bg { background: var(--bg); }
.section--accent { background: var(--accent); color: var(--white); }
.section--accent h2, .section--accent h3 { color: var(--white); }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

.text-center { text-align: center; }
.text-center p { margin: 0 auto; }

.mt-12 { margin-top: 12px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232,132,26,0.35);
}
.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-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover {
  background: var(--primary);
  color: var(--white);
}
.btn-bike {
  background: var(--bike);
  color: var(--white);
}
.btn-bike:hover { background: #1e3fa8; transform: translateY(-2px); }
.btn-heim {
  background: var(--heim);
  color: var(--white);
}
.btn-heim:hover { background: #0f6030; transform: translateY(-2px); }
.btn-lg { padding: 17px 36px; font-size: 1.05rem; }
.btn-sm { padding: 10px 20px; font-size: 0.875rem; }

.btn-group { display: flex; gap: 12px; flex-wrap: wrap; }

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--header-h);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  transition: box-shadow var(--transition);
}
.site-header.scrolled {
  box-shadow: var(--shadow-md);
}
.site-header .container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--primary);
  letter-spacing: -0.03em;
}
.site-logo .logo-icon {
  width: 38px; height: 38px;
  background: var(--accent);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.site-logo span.tagline {
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.03em;
  display: block;
  line-height: 1;
}
.logo-text { display: flex; flex-direction: column; }

.site-nav { display: flex; align-items: center; gap: 4px; }
.site-nav a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  border-radius: var(--radius-sm);
  transition: all var(--transition);
}
.site-nav a:hover, .site-nav a.current {
  color: var(--accent);
  background: rgba(232,132,26,0.08);
}
.site-nav .nav-cta {
  margin-left: 8px;
  background: var(--accent);
  color: var(--white) !important;
  border-radius: 50px;
  padding: 9px 20px;
}
.site-nav .nav-cta:hover {
  background: var(--accent-dark);
  color: var(--white) !important;
}

/* Mobile Nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  color: var(--primary);
}
.nav-toggle svg { display: block; }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
    gap: 4px;
    overflow-y: auto;
    border-top: 1px solid var(--border);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 14px 16px; font-size: 1rem; border-radius: var(--radius-sm); }
  .site-nav .nav-cta { text-align: center; margin-top: 8px; margin-left: 0; }
}

/* ============================================================
   HERO SECTIONS
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  margin-top: var(--header-h);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,25,35,0.82) 0%, rgba(15,25,35,0.55) 60%, rgba(15,25,35,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 680px;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; }
.hero-content p {
  font-size: 1.15rem;
  opacity: 0.9;
  margin-bottom: 36px;
  color: rgba(255,255,255,0.85);
}
.hero-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.hero-stat .number {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.hero-stat .label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}
.hero-scroll {
  display: block;
  margin-top: 36px;
  animation: bounce 2s infinite;
  color: rgba(255,255,255,0.55);
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* Page Hero (smaller) */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  margin-top: var(--header-h);
  overflow: hidden;
}
.page-hero .hero-bg::after {
  background: linear-gradient(135deg, rgba(15,25,35,0.8) 0%, rgba(15,25,35,0.5) 100%);
}
.page-hero.bike .hero-bg::after {
  background: linear-gradient(135deg, rgba(13,40,100,0.8) 0%, rgba(15,25,35,0.5) 100%);
}
.page-hero.heim .hero-bg::after {
  background: linear-gradient(135deg, rgba(10,60,30,0.8) 0%, rgba(15,25,35,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  color: var(--white);
  max-width: 700px;
}
.page-hero-content h1 { color: var(--white); margin-bottom: 16px; }
.page-hero-content p {
  font-size: 1.1rem;
  opacity: 0.88;
}
.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.breadcrumb a { color: rgba(255,255,255,0.55); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb .sep { opacity: 0.4; }

/* ============================================================
   SERVICE OVERVIEW CARDS (Homepage)
   ============================================================ */
.services-split { margin-top: 0; position: relative; z-index: 10; padding-top: 56px; }
.service-card-big {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.service-card-big:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.service-card-big .img-wrap {
  position: relative;
  height: 260px;
  overflow: hidden;
}
.service-card-big .img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card-big:hover .img-wrap img { transform: scale(1.05); }
.service-card-big .service-badge {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}
.service-badge.bike { background: var(--bike-light); color: var(--bike); }
.service-badge.heim { background: var(--heim); }
.service-card-big .card-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.service-card-big h3 { margin-bottom: 10px; }
.service-card-big p { color: var(--text-muted); margin-bottom: 20px; flex: 1; }
.service-list-preview {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}
.service-list-preview li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--text);
}
.service-list-preview li::before {
  content: '✓';
  width: 20px; height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  flex-shrink: 0;
  color: white;
}
.service-card-big.bike-card .service-list-preview li::before { background: var(--bike); }
.service-card-big.heim-card .service-list-preview li::before { background: var(--heim); }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section .about-img {
  border-radius: 20px;
  overflow: hidden;
  height: 500px;
  position: relative;
}
.about-section .about-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-section .about-img .img-badge {
  position: absolute;
  bottom: 24px; right: 24px;
  background: var(--white);
  border-radius: 14px;
  padding: 16px 20px;
  box-shadow: var(--shadow-md);
  text-align: center;
}
.img-badge .big-num { font-size: 2.2rem; font-weight: 800; color: var(--accent); line-height: 1; }
.img-badge .small-text { font-size: 0.75rem; color: var(--text-muted); }
.about-content { display: flex; flex-direction: column; justify-content: center; gap: 24px; }
.about-content p { color: var(--text-muted); }
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 8px;
}
.trust-item {
  background: var(--bg);
  border-radius: var(--radius-sm);
  padding: 16px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.trust-icon {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: rgba(232,132,26,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.trust-item h4 { font-size: 0.9rem; margin-bottom: 2px; }
.trust-item p { font-size: 0.8rem; color: var(--text-muted); }

/* ============================================================
   SERVICES DETAIL (Fahrrad / Heim)
   ============================================================ */
.service-item-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: all var(--transition);
  display: flex;
  gap: 20px;
}
.service-item-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.service-item-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.5rem;
}
.service-item-icon.bike { background: var(--bike-light); }
.service-item-icon.heim { background: var(--heim-light); }
.service-item-text h3 { font-size: 1rem; margin-bottom: 6px; }
.service-item-text p { font-size: 0.875rem; color: var(--text-muted); max-width: none; }

/* ============================================================
   PRICE LIST
   ============================================================ */
.preisliste {
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--border);
}
.preisliste-header {
  background: var(--bike-light);
  color: var(--bike);
  padding: 20px 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.preisliste-header h3 { color: var(--bike); font-size: 1.1rem; }
.preisliste-note { font-size: 0.78rem; opacity: 0.7; color: var(--bike); }
.preisliste-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 28px;
  border-bottom: 1px solid var(--border);
  transition: background var(--transition);
}
.preisliste-item:last-child { border-bottom: none; }
.preisliste-item:hover { background: rgba(29,78,216,0.04); }
.preisliste-item .name { font-size: 0.9rem; color: var(--text); }
.preisliste-item .desc { font-size: 0.78rem; color: var(--text-muted); margin-top: 2px; }
.preisliste-item .price {
  font-weight: 700;
  font-size: 1rem;
  color: var(--bike);
  white-space: nowrap;
  margin-left: 16px;
}
.preisliste-item.featured {
  background: var(--bike-light);
}
.preisliste-item.featured .price { color: var(--bike); }
.preisliste-disclaimer {
  padding: 16px 28px;
  font-size: 0.8rem;
  color: var(--text-muted);
  background: var(--white);
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* ============================================================
   HOW IT WORKS (3 Steps)
   ============================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px; left: calc(16.66% + 32px); right: calc(16.66% + 32px);
  height: 2px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 100%);
  background-image: repeating-linear-gradient(90deg, var(--accent) 0px, var(--accent) 6px, transparent 6px, transparent 14px);
}
.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 24px;
}
.step-number {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 800;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.step h3 { font-size: 1rem; margin-bottom: 8px; }
.step p { font-size: 0.875rem; color: var(--text-muted); }

/* ============================================================
   REFERENZEN / PORTFOLIO GALLERY
   ============================================================ */
.gallery-filter {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 40px;
}
.filter-btn {
  padding: 10px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  border: 2px solid var(--border);
  background: var(--white);
  color: var(--text-muted);
  transition: all var(--transition);
  cursor: pointer;
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay .title {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
}
.gallery-item-overlay .cat {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.7);
}
.gallery-item-overlay .desc {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
  line-height: 1.4;
}
.gallery-empty {
  text-align: center;
  padding: 80px 20px;
  max-width: 520px;
  margin: 0 auto;
  color: var(--text-muted);
  grid-column: 1/-1;
}

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 9999;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.lightbox.open { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 20px; right: 24px;
  background: none;
  border: none;
  color: white;
  font-size: 2rem;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}
.lightbox-info {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: rgba(255,255,255,0.8);
}
.lightbox-info .title { font-weight: 600; font-size: 1rem; }
.lightbox-info .cat { font-size: 0.8rem; margin-top: 4px; opacity: 0.7; }
.lb-desc { font-size: 0.82rem; margin-top: 8px; opacity: 0.75; max-width: 420px; line-height: 1.5; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  position: relative;
  transition: all var(--transition);
}
.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 16px; left: 24px;
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  opacity: 0.15;
  line-height: 1;
  font-family: Georgia, serif;
}
.testimonial-stars { color: #f59e0b; letter-spacing: 2px; font-size: 1rem; margin-bottom: 12px; }
.testimonial-text {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent);
  border: 2px solid var(--border);
  flex-shrink: 0;
}
.author-name { font-weight: 600; font-size: 0.875rem; }
.author-location { font-size: 0.78rem; color: var(--text-muted); }
.testimonial-badge {
  position: absolute;
  top: 20px; right: 20px;
  font-size: 0.7rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
  color: white;
}
.testimonial-badge.bike { background: var(--bike-light); color: var(--bike); }
.testimonial-badge.heim { background: var(--heim); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  background: var(--white);
}
.faq-item summary {
  padding: 18px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  list-style: none;
  transition: background var(--transition);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary:hover { background: var(--bg); }
.faq-item[open] summary { background: var(--bg); color: var(--accent); }
.faq-chevron {
  width: 20px; height: 20px;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.faq-item[open] .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  padding: 0 20px 18px;
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */

/* Quickbar */
.contact-quickbar {
  background: var(--primary);
  padding: 0;
}
.contact-quickbar-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.contact-quick-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 24px;
  color: rgba(255,255,255,0.85);
  text-decoration: none;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s;
}
.contact-quick-item:last-child { border-right: none; }
.contact-quick-item:hover { background: rgba(255,255,255,0.06); color: white; }
.contact-quick-icon {
  width: 40px; height: 40px;
  background: rgba(232,132,26,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-quick-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.5px; opacity: 0.6; margin-bottom: 2px; white-space: nowrap; }
.contact-quick-value { font-size: 0.85rem; font-weight: 600; color: white; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-intro {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin: 12px 0 20px;
  line-height: 1.6;
}

/* Contact methods (klickbare Zeilen) */
.contact-methods { display: flex; flex-direction: column; gap: 10px; }
.contact-method {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.15s;
}
.contact-method:hover {
  border-color: var(--accent);
  box-shadow: 0 4px 16px rgba(232,132,26,0.12);
  transform: translateY(-1px);
}
.contact-method-icon {
  width: 44px; height: 44px;
  background: rgba(232,132,26,0.08);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.contact-method-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.contact-method-label { font-size: 0.78rem; color: var(--text-muted); }
.contact-method-value { font-size: 0.95rem; font-weight: 600; }
.contact-method-arrow { color: var(--text-muted); opacity: 0.4; flex-shrink: 0; }

.opening-hours {
  background: var(--bg);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.opening-hours h4 { margin-bottom: 12px; font-size: 0.9rem; display: flex; align-items: center; gap: 6px; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 7px 0;
  font-size: 0.875rem;
  border-bottom: 1px solid var(--border);
}
.hours-row:last-child { border-bottom: none; }
.hours-row .day { color: var(--text-muted); }
.hours-row .time { font-weight: 600; }

/* Form footer */
.contact-form-footer {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.contact-form-footer .form-notice {
  margin: 0;
  flex: 1;
  min-width: 200px;
}

/* Map – volle Breite */
.map-section { position: relative; }
.map-wrapper {
  overflow: hidden;
  height: 420px;
  position: relative;
  background: var(--bg);
  border-radius: 0;
  border: none;
  border-top: 1px solid var(--border);
}
.map-wrapper iframe { width: 100%; height: 100%; border: none; display: block; }
.map-consent-overlay {
  position: absolute;
  inset: 0;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 32px;
}
.map-consent__inner p { color: var(--text-muted); margin-bottom: 16px; font-size: 0.9rem; max-width: 340px; }
.map-consent__inner strong { color: var(--text); }
.map-link-bar {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 10px 0;
}
.map-link-bar a {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 6px;
}
.map-link-bar a:hover { color: var(--accent); }

/* Cookie Banner */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 10000;
  background: var(--primary);
  color: rgba(255,255,255,0.88);
  box-shadow: 0 -4px 32px rgba(0,0,0,0.25);
  padding: 20px 24px;
}
.cookie-banner__inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}
.cookie-banner__text { flex: 1; min-width: 240px; }
.cookie-banner__text strong { color: white; display: block; margin-bottom: 6px; }
.cookie-banner__text p { font-size: 0.85rem; line-height: 1.55; margin: 0; max-width: none; color: rgba(255,255,255,0.75); }
.cookie-banner__text a { color: var(--accent); text-decoration: underline; }
.cookie-banner__actions { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.btn-sm { padding: 9px 20px; font-size: 0.82rem; }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { font-size: 0.8rem; font-weight: 600; color: var(--text); }
.form-label span { color: var(--accent); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-control:focus { border-color: var(--accent); }
.form-control::placeholder { color: #aaa; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { cursor: pointer; }
.form-notice {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.5;
}
.form-notice a { color: var(--accent); }
.form-success {
  background: var(--heim-light);
  border: 1px solid #86efac;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.9rem;
  color: #166534;
  display: none;
}
.form-error {
  background: #fef2f2;
  border: 1px solid #fca5a5;
  border-radius: var(--radius-sm);
  padding: 16px;
  font-size: 0.9rem;
  color: #991b1b;
  display: none;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--accent);
  border-radius: 20px;
  padding: 48px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 400px; height: 400px;
  background: rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p { color: rgba(255,255,255,0.85); margin: 0 auto 28px; }
.cta-banner h2, .cta-banner p, .cta-banner .btn, .cta-banner a, .cta-banner svg { position: relative; z-index: 1; }

.cta-section-dark {
  background: var(--primary);
  padding: 80px 0;
  text-align: center;
  color: var(--white);
}
.cta-section-dark h2 { color: var(--white); margin-bottom: 12px; }
.cta-section-dark p { color: rgba(255,255,255,0.7); margin: 0 auto 32px; font-size: 1.05rem; }

/* ============================================================
   TRUST STRIP
   ============================================================ */
.trust-strip {
  background: var(--primary);
  padding: 40px 0;
}
.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.trust-strip-item {
  padding: 16px 24px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-strip-item:last-child { border-right: none; }
.trust-strip-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.03em;
}
.trust-strip-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   DIRK + ABLAUF GRID
   ============================================================ */
.dirk-ablauf-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.about-usps {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-usp {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text);
}
.about-usp svg { color: var(--heim); flex-shrink: 0; }
.process-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.process-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.process-num {
  min-width: 42px; height: 42px;
  background: var(--accent);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.process-item h4 { margin-bottom: 4px; font-size: 1rem; }
.process-item p { color: var(--text-muted); font-size: 0.88rem; max-width: none; margin: 0; }

@media (max-width: 768px) {
  .trust-strip-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-strip-item { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-strip-item:nth-child(2n) { border-right: none; }
  .dirk-ablauf-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 0;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand { flex: 1; max-width: 340px; }
.footer-brand .site-logo { margin-bottom: 16px; color: white; }
.footer-brand p { font-size: 0.875rem; max-width: 280px; line-height: 1.7; }
.footer-col h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: white;
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 8px; }
.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-list { display: flex; flex-direction: column; gap: 10px; }
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 0.85rem;
}
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.35); max-width: none; }
.footer-legal-links { display: flex; gap: 16px; }
.footer-legal-links a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  transition: color var(--transition);
}
.footer-legal-links a:hover { color: rgba(255,255,255,0.7); }

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.float-buttons {
  position: fixed;
  bottom: 28px; right: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.float-btn {
  width: 54px; height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.25);
  transition: all var(--transition);
  color: white;
  font-size: 1.4rem;
}
.float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(0,0,0,0.3);
}
.float-btn.whatsapp { background: #25D366; }
.float-btn.phone { background: var(--accent); }
.float-btn-label {
  position: absolute;
  right: 64px;
  background: var(--primary);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateX(6px);
  transition: all var(--transition);
}
.float-btn:hover .float-btn-label { opacity: 1; transform: translateX(0); }

/* ============================================================
   MISC / UTILITIES
   ============================================================ */
.divider { height: 1px; background: var(--border); margin: 0; }
.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.badge-bike { background: var(--bike-light); color: var(--bike); }
.badge-heim { background: var(--heim-light); color: var(--heim); }
.badge-orange { background: rgba(232,132,26,0.12); color: var(--accent); }

.section-head { margin-bottom: 48px; }
.section-head.text-center p { max-width: 560px; color: var(--text-muted); }
.section-head p { color: var(--text-muted); margin-top: 12px; font-size: 1.05rem; }

/* Impressum/Datenschutz pages */
.legal-content { max-width: 780px; }
.legal-content h2 { font-size: 1.4rem; margin: 32px 0 12px; }
.legal-content h3 { font-size: 1.1rem; margin: 24px 0 8px; }
.legal-content p { color: var(--text-muted); margin-bottom: 12px; max-width: none; }
.legal-content ul { margin: 8px 0 16px 20px; list-style: disc; }
.legal-content ul li { color: var(--text-muted); margin-bottom: 4px; font-size: 0.9rem; }
.legal-content a { color: var(--accent); }
.legal-content a:hover { text-decoration: underline; }

/* Skip link for accessibility */
.skip-link {
  position: absolute;
  top: -100px;
  left: 20px;
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  z-index: 10000;
  font-weight: 600;
  transition: top 0.2s;
}
.skip-link:focus { top: 20px; }

/* Animations */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  :root { --section-py: 64px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-quickbar-grid { grid-template-columns: 1fr 1fr; }
  .contact-quick-item { padding: 14px 16px; }
  .contact-form-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .map-wrapper { height: 300px; }
  .steps-grid::before { display: none; }
}

@media (max-width: 768px) {
  :root { --section-py: 48px; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 85vh; }
  .hero-content { padding-top: 24px; }
  .hero-stats { gap: 24px; }
  .services-split { margin-top: 0; }
  .about-section .about-img { height: 320px; }
  .trust-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; gap: 24px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-banner { padding: 36px 24px; }
  .footer-grid { flex-direction: column; gap: 32px; }
  .footer-brand { max-width: 100%; }
  .footer-brand .site-logo img { width: 40px; height: 40px; }
  .footer-brand .site-logo { font-size: 1rem; }
  .footer-brand .site-logo span:not(.tagline) { white-space: nowrap; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-legal-links { justify-content: center; flex-wrap: wrap; }
  .preisliste-item { padding: 14px 16px; gap: 8px; }
  .preisliste-header { padding: 16px 16px; flex-direction: column; align-items: flex-start; gap: 4px; }
  .preisliste-disclaimer { padding: 14px 16px; }
}

@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-stat .number { font-size: 1.5rem; }
  .cta-banner::before { display: none; }
  .testimonials-grid { gap: 16px; }
  .btn-group { flex-direction: column; }
  .btn-group .btn { justify-content: center; width: 100%; }
  .contact-quickbar-grid { grid-template-columns: 1fr; }
  .contact-quick-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
}
