/* ============================================
   ONMARXDESIGN – GLOBAL STYLES v1
   ============================================ */

:root {
  --accent:       #ff6b00;
  --accent-dark:  #e05a00;
  --primary:      #0f0f1a;
  --primary-mid:  #1e1e35;
  --white:        #ffffff;
  --bg:           #f8f9fb;
  --mid:          #e8eaed;
  --text:         #2c2c3e;
  --text-light:   #6b7280;
  --radius:       12px;
  --radius-sm:    8px;
  --shadow:       0 2px 16px rgba(0,0,0,0.08);
  --shadow-md:    0 8px 32px rgba(0,0,0,0.12);
  --transition:   0.25s ease;
}

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.has-sticky { padding-bottom: 0; }

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

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

.section-pad { padding: 72px 0; }
.bg-light { background: var(--bg); }
.bg-dark  { background: var(--primary); }
.text-white { color: var(--white) !important; }

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  white-space: nowrap;
  min-height: 48px;
}
.btn-primary {
  background: var(--accent);
  color: var(--white);
  border: 2px solid var(--accent);
}
.btn-primary:hover { background: var(--accent-dark); border-color: var(--accent-dark); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(255,107,0,0.35); }
.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline-white:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
  padding: 10px 20px;
  font-size: 0.85rem;
}
.btn-ghost:hover { background: var(--accent); color: var(--white); }
.btn-lg { padding: 15px 30px; font-size: 0.95rem; }
.btn-full { width: 100%; }

/* ---- TOPBAR ---- */
.topbar {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
  font-size: 0.78rem;
  padding: 7px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.topbar-right { display: flex; gap: 16px; }
.topbar a { color: rgba(255,255,255,0.75); transition: color var(--transition); }
.topbar a:hover { color: var(--accent); }

/* ---- HEADER ---- */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--mid);
  transition: box-shadow var(--transition);
}
.header.scrolled { box-shadow: 0 4px 24px rgba(0,0,0,0.12); }

.header-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 10px;
  padding-bottom: 10px;
}

/* LOGO */
.logo { flex-shrink: 0; display: flex; align-items: center; }
.logo img {
  height: 65px;
  width: auto;
  object-fit: contain;
}

/* NAV */
.nav {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav > a, .nav-link-dropdown {
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text);
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav > a:hover, .nav-link-dropdown:hover { color: var(--accent); background: rgba(230,57,70,0.06); }
.nav > a.active, .nav-link-dropdown.active { color: var(--accent); }

/* DROPDOWN */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: 0 16px 48px rgba(0,0,0,0.16);
  border: 1px solid var(--mid);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  min-width: 680px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown.open .dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.dropdown-col {
  padding: 20px 18px;
  border-right: 1px solid var(--mid);
}
.dropdown-col:last-child { border-right: none; }
.dropdown-col strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin-bottom: 10px;
}
.dropdown-col a {
  display: block;
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 4px 0;
  transition: color var(--transition);
}
.dropdown-col a:hover { color: var(--accent); }

.header-cta { margin-left: 8px; }

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.burger span {
  width: 24px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: all 0.3s ease;
  display: block;
}
.burger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- BREADCRUMB ---- */
.breadcrumb {
  background: var(--bg);
  border-bottom: 1px solid var(--mid);
  padding: 10px 0;
}
.breadcrumb-inner {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-light);
}
.breadcrumb-inner a { color: var(--text-light); transition: color var(--transition); }
.breadcrumb-inner a:hover { color: var(--accent); }
.breadcrumb-sep { color: var(--text-light); }

/* ---- SECTION HEADERS ---- */
.section-header { text-align: center; margin-bottom: 48px; }
.section-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 10px;
}
.eyebrow-light { color: rgba(255,255,255,0.6); }
.section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 0.95rem;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: linear-gradient(135deg, rgba(15,15,26,0.75) 0%, rgba(15,15,26,0.5) 50%, rgba(255,107,0,0.25) 100%),
              url('hero.jpg') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero-content {
  padding: 100px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}
.hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
  margin-bottom: 16px;
}
.hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 900;
  line-height: 1.0;
  margin-bottom: 20px;
  color: var(--white);
  text-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.hero-accent { color: var(--accent); }
.hero-sub {
  font-size: clamp(0.9rem, 1.5vw, 1.05rem);
  color: rgba(255,255,255,0.85);
  max-width: 520px;
  line-height: 1.75;
  margin-bottom: 32px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* HERO STATS */
.hero-stats {
  background: rgba(26,26,46,0.85);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  margin-top: auto;
}
.hero-stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
.stat {
  text-align: center;
  padding: 8px 16px;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-num {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}
.stat-plus { font-size: 1.2rem; }
.stat-label {
  display: block;
  font-size: 0.72rem;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ---- PAGE HERO (Unterseiten) ---- */
.page-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, rgba(255,107,0,0.25) 100%);
  color: var(--white);
  padding: 80px 0 60px;
  text-align: center;
}
.page-hero-eyebrow {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 12px;
}
.page-hero h1 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 16px;
  color: var(--white);
}
.page-hero-accent { color: var(--accent); }
.page-hero p {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ---- WHY US ---- */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.why-card {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  border-top: 3px solid transparent;
  transition: all var(--transition);
}
.why-card:hover { border-top-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-md); }
.why-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230,57,70,0.08);
  border-radius: var(--radius-sm);
}
.why-card h3 { font-size: 0.95rem; font-weight: 700; margin-bottom: 6px; color: var(--primary); }
.why-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.65; }

/* ---- LEISTUNGEN CARDS ---- */
.leistungen-scroll-hint {
  display: none;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-light);
  margin-bottom: 12px;
}
.leistungen-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.leistung-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.leistung-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.leistung-img {
  height: 160px;
  position: relative;
  background-size: cover;
  background-position: center;
}
.leistung-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--accent);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.leistung-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
.leistung-body h3 { font-size: 0.9rem; font-weight: 700; margin-bottom: 7px; color: var(--primary); }
.leistung-body p { font-size: 0.78rem; color: var(--text-light); line-height: 1.6; margin-bottom: 12px; flex: 1; }
.leistung-list { margin-bottom: 14px; }
.leistung-list li { font-size: 0.75rem; color: var(--text-light); padding: 2px 0; display: flex; align-items: center; gap: 6px; }
.check { color: var(--accent); font-weight: 700; }

/* Scroll Dots */
.scroll-dots { display: none; justify-content: center; gap: 8px; margin-top: 16px; }
.scroll-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--mid);
  cursor: pointer;
  transition: background var(--transition);
}
.scroll-dot.active { background: var(--accent); }

/* Leistung Images */
.leistung-img-webdesign {
  background: linear-gradient(135deg, rgba(15,15,26,0.55) 0%, rgba(255,107,0,0.3) 100%),
              url('https://images.unsplash.com/photo-1547658719-da2b51169166?w=600&q=80') center/cover;
}
.leistung-img-ecommerce {
  background: linear-gradient(135deg, rgba(15,15,26,0.55) 0%, rgba(255,107,0,0.3) 100%),
              url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=600&q=80') center/cover;
}
.leistung-img-branding {
  background: linear-gradient(135deg, rgba(15,15,26,0.55) 0%, rgba(255,107,0,0.3) 100%),
              url('https://images.unsplash.com/photo-1561070791-2526d30994b5?w=600&q=80') center/cover;
}
.leistung-img-seo {
  background: linear-gradient(135deg, rgba(15,15,26,0.55) 0%, rgba(255,107,0,0.3) 100%),
              url('https://images.unsplash.com/photo-1432888622747-4eb9a8efeb07?w=600&q=80') center/cover;
}
.leistung-img-marketing {
  background: linear-gradient(135deg, rgba(15,15,26,0.55) 0%, rgba(255,107,0,0.3) 100%),
              url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=600&q=80') center/cover;
}

/* ---- LEISTUNGEN DETAIL (Tabs) ---- */
.tabs { }
.tab-nav {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--mid);
  margin-bottom: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-nav::-webkit-scrollbar { display: none; }
.tab-btn {
  padding: 12px 20px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-light);
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
  transition: all var(--transition);
  border-radius: var(--radius-sm) var(--radius-sm) 0 0;
}
.tab-btn:hover { color: var(--accent); background: rgba(230,57,70,0.05); }
.tab-btn.active { color: var(--accent); border-bottom-color: var(--accent); background: rgba(230,57,70,0.05); }
.tab-content { border: 1px solid var(--mid); border-top: none; border-radius: 0 0 var(--radius) var(--radius); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.tab-panel-header { display: none; }
.tab-panel-body { padding: 32px; }
.tab-panel-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
.tab-text h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.tab-text p { font-size: 0.875rem; color: var(--text-light); line-height: 1.75; margin-bottom: 20px; }
.tab-sublist { display: flex; flex-direction: column; gap: 12px; margin-bottom: 8px; }
.tab-sub-item h4 { font-size: 0.85rem; font-weight: 700; color: var(--primary); margin-bottom: 3px; }
.tab-sub-item p { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; margin: 0; }
.tab-img {
  height: 280px;
  border-radius: var(--radius);
  background-size: cover;
  background-position: center;
}
.tab-img-webdesign { background: linear-gradient(135deg,rgba(15,15,26,0.3) 0%,rgba(255,107,0,0.2) 100%), url('https://images.unsplash.com/photo-1547658719-da2b51169166?w=800&q=80') center/cover; }
.tab-img-ecommerce { background: linear-gradient(135deg,rgba(15,15,26,0.3) 0%,rgba(255,107,0,0.2) 100%), url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=800&q=80') center/cover; }
.tab-img-branding { background: linear-gradient(135deg,rgba(15,15,26,0.3) 0%,rgba(255,107,0,0.2) 100%), url('https://images.unsplash.com/photo-1561070791-2526d30994b5?w=800&q=80') center/cover; }
.tab-img-seo { background: linear-gradient(135deg,rgba(15,15,26,0.3) 0%,rgba(255,107,0,0.2) 100%), url('https://images.unsplash.com/photo-1432888622747-4eb9a8efeb07?w=800&q=80') center/cover; }
.tab-img-marketing { background: linear-gradient(135deg,rgba(15,15,26,0.3) 0%,rgba(255,107,0,0.2) 100%), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=800&q=80') center/cover; }

/* ---- LEISTUNGEN DETAIL GRID (Leistungsseite) ---- */
.leistung-detail-grid {
  display: flex;
  flex-direction: column;
  gap: 48px;
}
.leistung-detail-item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 32px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.leistung-detail-item:nth-child(even) { grid-template-columns: 1fr 340px; }
.leistung-detail-item:nth-child(even) .leistung-detail-img { order: 2; }
.leistung-detail-item:nth-child(even) .leistung-detail-body { order: 1; }
.leistung-detail-img {
  height: 100%;
  min-height: 280px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.leistung-detail-body { padding: 32px; }
.leistung-detail-body h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.7rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.leistung-detail-body p { font-size: 0.875rem; color: var(--text-light); line-height: 1.75; margin-bottom: 18px; }
.leistung-sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-bottom: 20px;
}
.leistung-sub-tag {
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ---- SERVICE SECTIONS (Innen-Seite) ---- */
.service-section {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
}
.service-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 24px;
  background: var(--primary);
  color: var(--white);
}
.service-section-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-section-header h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 2px;
}
.service-section-header p { font-size: 0.8rem; color: rgba(255,255,255,0.65); }
.service-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.service-text { padding: 28px 24px; }
.service-text p { font-size: 0.875rem; color: var(--text-light); line-height: 1.75; margin-bottom: 14px; }
.service-list { display: flex; flex-direction: column; gap: 8px; }
.service-list li { font-size: 0.85rem; color: var(--text); display: flex; align-items: center; gap: 8px; }
.service-img {
  height: 100%;
  min-height: 240px;
  background-size: cover;
  background-position: center;
}

/* ---- REFERENZEN ---- */
.referenzen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.ref-card {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
  cursor: pointer;
}
.ref-card:hover .ref-overlay { opacity: 1; }
.ref-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,26,46,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 16px;
  opacity: 0;
  transition: opacity var(--transition);
}
.ref-tag {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  background: rgba(230,57,70,0.15);
  padding: 3px 8px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 6px;
}
.ref-overlay p { font-size: 0.82rem; color: var(--white); font-weight: 600; }
.ref-card-1 { background: linear-gradient(135deg,rgba(15,15,26,0.45) 0%,rgba(255,107,0,0.2) 100%), url('https://images.unsplash.com/photo-1547658719-da2b51169166?w=600&q=80') center/cover; }
.ref-card-2 { background: linear-gradient(135deg,rgba(15,15,26,0.45) 0%,rgba(255,107,0,0.2) 100%), url('https://images.unsplash.com/photo-1556742049-0cfed4f6a45d?w=600&q=80') center/cover; }
.ref-card-3 { background: linear-gradient(135deg,rgba(15,15,26,0.45) 0%,rgba(255,107,0,0.2) 100%), url('https://images.unsplash.com/photo-1561070791-2526d30994b5?w=600&q=80') center/cover; }
.ref-card-4 { background: linear-gradient(135deg,rgba(15,15,26,0.45) 0%,rgba(255,107,0,0.2) 100%), url('https://images.unsplash.com/photo-1432888622747-4eb9a8efeb07?w=600&q=80') center/cover; }
.ref-card-5 { background: linear-gradient(135deg,rgba(15,15,26,0.45) 0%,rgba(255,107,0,0.2) 100%), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=600&q=80') center/cover; }
.ref-card-6 { background: linear-gradient(135deg,rgba(15,15,26,0.45) 0%,rgba(255,107,0,0.2) 100%), url('https://images.unsplash.com/photo-1467232004584-a241de8bcf5d?w=600&q=80') center/cover; }

/* ---- BEWERTUNGEN ---- */
.bewertungen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bewertung-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius);
  padding: 24px;
}
.stars { color: #f59e0b; font-size: 0.9rem; margin-bottom: 12px; }
.bewertung-card p { font-size: 0.85rem; color: rgba(255,255,255,0.8); line-height: 1.75; margin-bottom: 16px; font-style: italic; }
.bewertung-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.bewertung-author strong { display: block; font-size: 0.85rem; color: var(--white); }
.bewertung-author span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

/* ---- REGION ---- */
.region-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.region-group {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}
.region-priority {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.priority-high { background: rgba(230,57,70,0.12); color: var(--accent); }
.priority-med { background: rgba(245,158,11,0.12); color: #b45309; }
.priority-normal { background: rgba(59,130,246,0.12); color: #1d4ed8; }
.priority-local { background: rgba(107,114,128,0.12); color: #4b5563; }
.region-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.region-tag {
  font-size: 0.75rem;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--mid);
  padding: 3px 10px;
  border-radius: 20px;
}

/* ---- KONTAKT ---- */
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.kontakt-info h2 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 12px;
}
.kontakt-info > p { font-size: 0.9rem; color: var(--text-light); line-height: 1.75; margin-bottom: 24px; }
.kontakt-details { display: flex; flex-direction: column; gap: 14px; margin-bottom: 24px; }
.kontakt-item { display: flex; align-items: flex-start; gap: 12px; }
.kontakt-icon {
  width: 38px; height: 38px;
  background: rgba(230,57,70,0.1);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.kontakt-item strong { display: block; font-size: 0.8rem; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.kontakt-item a, .kontakt-item span { font-size: 0.85rem; color: var(--text-light); }
.kontakt-item a:hover { color: var(--accent); }
.kontakt-quick-btns { display: flex; gap: 12px; flex-wrap: wrap; }

.kontakt-form-wrap {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border-top: 4px solid var(--accent);
}
.kontakt-form-wrap h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 20px;
}
.kontakt-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 11px 14px;
  border: 1.5px solid var(--mid);
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-family: inherit;
  color: var(--text);
  background: var(--bg);
  transition: border-color var(--transition);
  min-height: 44px;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  background: var(--white);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-hint { font-size: 0.72rem; color: var(--text-light); line-height: 1.5; }
.form-success {
  display: none;
  font-size: 0.85rem;
  color: #16a34a;
  background: #dcfce7;
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  margin-top: 8px;
}
.form-success.show { display: block; }

/* ---- INFO CARDS ---- */
.info-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
}
.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border-top: 3px solid var(--accent);
}
.info-card-icon {
  font-size: 1.5rem;
  width: 44px;
  height: 44px;
  background: rgba(230,57,70,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-card h3 { font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.info-card p { font-size: 0.8rem; color: var(--text-light); line-height: 1.6; }

/* MAP */
.map-wrap { margin-top: 0; }
.map-placeholder {
  background: var(--bg);
  border: 2px dashed var(--mid);
  border-radius: var(--radius);
  padding: 40px 20px;
  text-align: center;
  color: var(--text-light);
}
.map-placeholder p { font-size: 0.875rem; line-height: 1.6; margin-top: 10px; }

/* ---- SERVICE CTA BOX ---- */
.service-cta-box {
  background: var(--primary);
  padding: 60px 0;
  text-align: center;
}
.service-cta-box h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 10px;
}
.service-cta-box p { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-bottom: 24px; }

/* ---- FOOTER ---- */
.footer {
  background: var(--primary);
  color: rgba(255,255,255,0.75);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 56px 20px 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-brand { }
.footer-logo { height: 50px; width: auto; margin-bottom: 14px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 0.82rem; line-height: 1.7; color: rgba(255,255,255,0.6); margin-bottom: 16px; }
.social-links { display: flex; gap: 8px; }
.social-link {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  transition: all var(--transition);
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--white); }

.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 14px;
}
.footer-col-header { display: flex; align-items: center; justify-content: space-between; cursor: pointer; }
.footer-col-arrow { display: none; font-size: 0.8rem; transition: transform 0.3s; }
.footer-col.open .footer-col-arrow { transform: rotate(180deg); }
.footer-col-body { display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 0.82rem; color: rgba(255,255,255,0.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 16px 0;
}
.footer-bottom .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.footer-bottom-links { display: flex; gap: 16px; }
.footer-bottom-links a { font-size: 0.75rem; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--accent); }

/* ---- FLOATING CTA ---- */
.floating-cta {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  box-shadow: 0 6px 24px rgba(230,57,70,0.45);
  z-index: 900;
  transition: all var(--transition);
  display: none;
}
.floating-cta:hover { background: var(--accent-dark); transform: scale(1.05); }

/* ---- MOBILE STICKY BAR ---- */
.mobile-sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  display: none;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--mid);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}
.sticky-call, .sticky-quote {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 14px 8px;
  font-size: 0.82rem;
  font-weight: 700;
  min-height: 56px;
  padding-bottom: calc(14px + env(safe-area-inset-bottom, 0px));
}
.sticky-call { background: var(--primary); color: var(--white); }
.sticky-quote { background: var(--accent); color: var(--white); }

/* ---- CHEVRON ---- */
.chevron { font-size: 0.65rem; transition: transform 0.2s; }
.nav-dropdown:hover .chevron { transform: rotate(180deg); }

/* ============================================
   RESPONSIVE – TABLET (max 1023px)
   ============================================ */
@media (max-width: 1023px) {
  .header-cta { display: none; }
  .burger { display: flex; }

  .nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(340px, 85vw);
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 80px 0 40px;
    overflow-y: auto;
    box-shadow: -8px 0 32px rgba(0,0,0,0.15);
    transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
    z-index: 999;
    margin-left: 0;
  }
  .nav.open { right: 0; }
  .nav > a, .nav-link-dropdown {
    width: 100%;
    padding: 14px 24px;
    border-bottom: 1px solid var(--mid);
    border-radius: 0;
    font-size: 0.95rem;
  }

  /* Mobile Dropdown */
  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    border-radius: 0;
    grid-template-columns: 1fr;
    min-width: unset;
    opacity: 1;
    visibility: hidden;
    pointer-events: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, visibility 0.3s;
    background: var(--bg);
  }
  .nav-dropdown.open .dropdown-menu {
    visibility: visible;
    pointer-events: auto;
    max-height: 600px;
  }
  .dropdown-col {
    border-right: none;
    border-bottom: 1px solid var(--mid);
    padding: 14px 24px;
  }

  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .leistungen-grid { grid-template-columns: repeat(3, 1fr); }
  .referenzen-grid { grid-template-columns: repeat(2, 1fr); }
  .bewertungen-grid { grid-template-columns: repeat(2, 1fr); }
  .region-grid { grid-template-columns: repeat(2, 1fr); }
  .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 28px; }
  .leistung-detail-item { grid-template-columns: 1fr; }
  .leistung-detail-item:nth-child(even) { grid-template-columns: 1fr; }
  .leistung-detail-item:nth-child(even) .leistung-detail-img { order: 0; }
  .leistung-detail-item:nth-child(even) .leistung-detail-body { order: 0; }
  .leistung-detail-img { min-height: 220px; }
  .service-content { grid-template-columns: 1fr; }
  .service-img { min-height: 200px; }
}

/* ============================================
   RESPONSIVE – MOBILE (max 767px)
   ============================================ */
@media (max-width: 767px) {
  .topbar { display: none; }
  .section-pad { padding: 48px 0; }

  .logo img { height: 48px; }

  .hero-stats-inner { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat:nth-child(3), .stat:nth-child(4) { border-bottom: none; }

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

  .leistungen-scroll-hint { display: block; }
  .leistungen-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding-bottom: 8px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .leistungen-grid::-webkit-scrollbar { display: none; }
  .leistung-card {
    flex-shrink: 0;
    width: calc(85vw - 20px);
    scroll-snap-align: start;
  }
  .scroll-dots { display: flex; }

  /* Tab Accordion on mobile */
  .tab-nav { display: none; }
  .tab-content { border: none; border-radius: 0; }
  .tab-panel { display: block; }
  .tab-panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    background: var(--bg);
    border: 1px solid var(--mid);
    border-radius: var(--radius-sm);
    margin-bottom: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
  }
  .tab-panel.open .tab-panel-header { background: var(--primary); color: var(--white); }
  .tab-panel.open .tab-arrow { transform: rotate(180deg); }
  .tab-arrow { transition: transform 0.3s; font-size: 0.7rem; }
  .tab-panel-body { display: none; padding: 0; }
  .tab-panel.open .tab-panel-body { display: block; }
  .tab-panel-inner { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .tab-img { height: 180px; }

  .referenzen-grid { grid-template-columns: 1fr 1fr; }
  .bewertungen-grid { grid-template-columns: 1fr; }
  .region-grid { grid-template-columns: 1fr; }
  .info-cards-grid { grid-template-columns: 1fr; }

  .kontakt-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-row { grid-template-columns: 1fr; }
  .kontakt-form-wrap { padding: 20px; }

  .footer-inner { grid-template-columns: 1fr; gap: 0; padding: 32px 20px 20px; }
  .footer-col { border-bottom: 1px solid rgba(255,255,255,0.08); padding: 14px 0; }
  .footer-col-arrow { display: block; }
  .footer-col-body { display: none; padding-top: 8px; }
  .footer-col.open .footer-col-body { display: flex; }
  .footer-col h4 { margin-bottom: 0; }

  .mobile-sticky-bar { display: flex; }
  .floating-cta { display: none; }

  body.has-sticky { padding-bottom: calc(56px + env(safe-area-inset-bottom, 0px)); }

  .leistung-detail-item { grid-template-columns: 1fr; }
  .leistung-detail-item:nth-child(even) { grid-template-columns: 1fr; }
  .leistung-detail-img { min-height: 200px; }
  .leistung-detail-body { padding: 20px; }
  .leistung-sub-grid { grid-template-columns: 1fr; }

  .page-hero { padding: 60px 0 40px; }

  .service-content { grid-template-columns: 1fr; }
  .service-img { min-height: 180px; }
  .service-section-header { padding: 16px; }
  .service-text { padding: 18px; }
}

/* ============================================
   RESPONSIVE – SMALL MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { width: 100%; }
  .referenzen-grid { grid-template-columns: 1fr; }
  .footer-bottom .container { flex-direction: column; text-align: center; }
}
