/* =============================================
   HÖRSCHMIEDE BOO - Modern Website Styles v2
   ============================================= */

:root {
  --gold: #D8B358;
  --gold-light: #e8cc7a;
  --gold-dark: #c4a044;
  --gold-bg: rgba(216, 179, 88, 0.08);
  --gold-glow: rgba(216, 179, 88, 0.3);
  --dark: #0f172a;
  --dark-soft: #1e293b;
  --text: #334155;
  --text-light: #64748b;
  --bg: #ffffff;
  --bg-alt: #f8fafc;
  --border: #e2e8f0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 24px rgba(0,0,0,0.07);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.1);
  --shadow-gold: 0 8px 32px rgba(216,179,88,0.25);
  --shadow-card: 0 1px 3px rgba(0,0,0,0.04), 0 8px 24px rgba(0,0,0,0.06);
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --max-width: 1200px;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

h1, h2, h3, h4, h5, h6 {
  color: var(--dark);
  line-height: 1.25;
  font-weight: 700;
}

p { margin-bottom: 1rem; line-height: 1.8; }
p:last-child { margin-bottom: 0; }

.container-modern {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* --- Scroll Reveal Animations --- */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}
.reveal-scale.visible { opacity: 1; transform: scale(1); }

.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }

/* --- Top Bar --- */
.top-bar {
  background: var(--dark);
  color: rgba(255,255,255,0.8);
  font-size: 0.85rem;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.top-bar-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.top-bar-contact { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.top-bar-contact a { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.8); transition: color var(--transition); }
.top-bar-contact a:hover { color: var(--gold); }
.top-bar-contact svg { width: 16px; height: 16px; flex-shrink: 0; }

.top-bar-social { display: flex; align-items: center; gap: 10px; }
.top-bar-social a {
  display: flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: white;
  transition: all var(--transition);
}
.top-bar-social a:hover { background: var(--gold); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(216,179,88,0.4); }
.top-bar-social svg { width: 15px; height: 15px; }

/* --- Header / Navigation --- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: all var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
  background: rgba(255,255,255,0.97);
}

.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px; max-width: var(--max-width); margin: 0 auto;
}

.logo-link { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.logo-img { height: 52px; width: auto; }
.logo-text { display: flex; flex-direction: column; }
.logo-title { font-size: 1.25rem; font-weight: 800; color: var(--gold); letter-spacing: 0.5px; line-height: 1.2; }
.logo-subtitle { font-size: 0.78rem; color: var(--text-light); font-weight: 500; letter-spacing: 0.2px; }

.main-nav { display: flex; align-items: center; gap: 2px; }

.main-nav a {
  padding: 8px 18px; font-size: 0.92rem; font-weight: 500;
  color: var(--text); border-radius: var(--radius-sm);
  transition: all var(--transition); white-space: nowrap; position: relative;
}

.main-nav a::after {
  content: ''; position: absolute; bottom: 2px; left: 50%; transform: translateX(-50%);
  width: 0; height: 2.5px; background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 2px; transition: width var(--transition);
}

.main-nav a:hover::after, .main-nav a.active::after { width: 50%; }
.main-nav a:hover, .main-nav a.active { color: var(--gold); }

.menu-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; cursor: pointer; z-index: 1001; }
.menu-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all var(--transition); }
.menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* --- Hero Section --- */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%;
  object-fit: cover; -o-object-fit: cover;
  opacity: 0.7;
  -webkit-transform: translateZ(0); transform: translateZ(0);
  -webkit-backface-visibility: hidden; backface-visibility: hidden;
}

.hero.no-video {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-soft) 50%, #2a2a4a 100%);
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.4) 0%, rgba(15, 23, 42, 0.6) 100%);
  z-index: 1;
}

/* Video Pause/Play Toggle */
.video-toggle-btn {
  position: absolute;
  bottom: 24px;
  right: 24px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
  cursor: pointer;
  transition: all var(--transition);
}
.video-toggle-btn:hover {
  background: rgba(216, 179, 88, 0.25);
  border-color: var(--gold);
  color: var(--gold-light);
  transform: scale(1.08);
}
.video-toggle-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}
.video-toggle-btn svg {
  width: 20px;
  height: 20px;
}

.hero-content {
  position: relative; z-index: 2;
  text-align: center; color: white;
  padding: 40px 24px; max-width: 760px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(216, 179, 88, 0.15);
  color: var(--gold-light);
  padding: 10px 24px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(216, 179, 88, 0.25);
  backdrop-filter: blur(10px);
  animation: fadeInDown 0.8s ease-out;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  font-weight: 800; color: white;
  margin-bottom: 24px; line-height: 1.1;
  letter-spacing: -0.5px;
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero-title span {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: 1.2rem; color: rgba(255,255,255,0.75);
  margin-bottom: 40px; max-width: 560px;
  margin-left: auto; margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-cta { animation: fadeInUp 0.8s ease-out 0.6s both; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-20px); } to { opacity: 1; transform: translateY(0); } }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 34px; font-size: 0.95rem; font-weight: 600;
  border-radius: 50px; transition: all var(--transition);
  cursor: pointer; text-decoration: none; border: none; line-height: 1.4;
  position: relative; overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  box-shadow: 0 4px 16px rgba(216, 179, 88, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(216, 179, 88, 0.5);
  color: white;
}

.btn-outline { background: transparent; color: white; border: 2px solid rgba(255,255,255,0.3); }
.btn-outline:hover { background: white; color: var(--dark); border-color: white; transform: translateY(-3px); }
.btn-gold-outline { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-gold-outline:hover { background: var(--gold); color: white; transform: translateY(-3px); }
.btn svg { width: 18px; height: 18px; }

/* --- Section Styles --- */
.section { padding: 110px 0; position: relative; }
.section-alt { background: var(--bg-alt); }
.section-dark { background: var(--dark); color: white; }

.section-header { text-align: center; max-width: 700px; margin: 0 auto 72px; }

.section-badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(216,179,88,0.12) 0%, rgba(216,179,88,0.04) 100%);
  color: var(--gold);
  padding: 8px 20px; border-radius: 50px;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 16px;
  border: 1px solid rgba(216,179,88,0.15);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800; margin-bottom: 16px;
  line-height: 1.15; letter-spacing: -0.3px;
}

.section-title span {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle { font-size: 1.1rem; color: var(--text-light); line-height: 1.7; }

/* --- Stats Bar --- */
.stats-bar {
  background: var(--dark);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}

.stats-bar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(216,179,88,0.06) 0%, transparent 50%, rgba(216,179,88,0.06) 100%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  position: relative; z-index: 1;
}

.stat-item { text-align: center; }

.stat-number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  margin-bottom: 4px;
}

.stat-label {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  font-weight: 500;
}

/* --- 4 Steps Section --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  position: relative;
}

.step-card {
  text-align: center;
  padding: 44px 24px 36px;
  border-radius: var(--radius-lg);
  background: white;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.step-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.step-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); border-color: transparent; }
.step-card:hover::before { opacity: 1; }

.step-number {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; font-weight: 800; font-size: 1.1rem;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(216,179,88,0.3);
}

.step-icon { width: 60px; height: 60px; margin: 0 auto 18px; object-fit: contain; }
.step-title { font-size: 0.95rem; font-weight: 700; color: var(--dark); line-height: 1.4; }

/* --- Services/Features Grid --- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.08), 0 0 0 1px rgba(216,179,88,0.15);
  border-color: transparent;
}

.service-card:hover::before { transform: scaleX(1); }

.service-icon-wrap {
  display: inline-flex; align-items: center; justify-content: center;
  width: 68px; height: 68px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(216,179,88,0.1) 0%, rgba(216,179,88,0.04) 100%);
  margin-bottom: 20px;
  transition: all var(--transition);
}

.service-card:hover .service-icon-wrap {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  box-shadow: 0 8px 20px rgba(216,179,88,0.3);
  transform: scale(1.05);
}

.service-icon { width: 36px; height: 36px; object-fit: contain; transition: filter var(--transition); }
.service-card:hover .service-icon { filter: brightness(0) invert(1); }

.service-title { font-size: 1.15rem; font-weight: 700; margin-bottom: 10px; color: var(--dark); }

.service-text { color: var(--text-light); font-size: 0.93rem; line-height: 1.75; text-align: justify; }

/* --- Wave Divider --- */
.wave-divider {
  position: relative;
  height: 80px;
  overflow: hidden;
  margin-top: -1px;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.wave-divider-top {
  margin-bottom: -1px;
  margin-top: 0;
}

.wave-divider-top svg { top: 0; bottom: auto; }

/* --- CTA Banner --- */
.cta-banner {
  background: #0f172a;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.cta-banner::before { display: none; }
.cta-banner::after { display: none; }

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(20px, -20px); }
}

.cta-inner { position: relative; z-index: 1; text-align: center; max-width: 640px; margin: 0 auto; }
.cta-title { font-size: clamp(1.6rem, 3.5vw, 2.5rem); color: white; margin-bottom: 16px; font-weight: 800; }
.cta-text { color: rgba(255,255,255,0.6); margin-bottom: 36px; font-size: 1.1rem; }

/* --- Products Section --- */
.product-card {
  display: flex; align-items: center; gap: 48px;
  background: white;
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 32px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.product-card::after {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 4px; height: 100%;
  background: linear-gradient(180deg, var(--gold), var(--gold-light));
  opacity: 0;
  transition: opacity var(--transition);
}

.product-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: transparent;
  transform: translateX(4px);
}

.product-card:hover::after { opacity: 1; }

.product-card.reverse { flex-direction: row-reverse; }
.product-card.reverse::after { left: auto; right: 0; }

.product-img-wrap { flex-shrink: 0; width: 200px; display: flex; align-items: center; justify-content: center; }

.product-img {
  max-height: 160px; width: auto; object-fit: contain;
  transition: transform var(--transition);
  filter: drop-shadow(0 8px 16px rgba(0,0,0,0.1));
}

.product-card:hover .product-img { transform: scale(1.08) rotate(2deg); }

.product-info { flex: 1; }
.product-title { font-size: 1.5rem; font-weight: 700; color: var(--gold); margin-bottom: 12px; }
.product-text { color: var(--text-light); font-size: 0.95rem; line-height: 1.8; text-align: justify; }

/* --- Brands Section --- */
.brands-section {
  padding: 64px 0;
  background: white;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.brands-header { text-align: center; margin-bottom: 36px; }
.brands-header p { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 2px; font-weight: 600; color: var(--text-light); }

.brands-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 48px; }

.brand-logo {
  height: 48px; width: auto; object-fit: contain;
  opacity: 0.8;
  transition: all var(--transition);
}

.brand-logo:hover { opacity: 1; transform: scale(1.12); }

/* --- About Section --- */
.about-block { display: flex; align-items: center; gap: 56px; margin-bottom: 72px; }
.about-block:last-child { margin-bottom: 0; }
.about-block.reverse { flex-direction: row-reverse; }

.about-img-wrap { flex-shrink: 0; position: relative; }

.about-img-wrap::after {
  content: '';
  position: absolute; bottom: -14px; right: -14px;
  width: 100%; height: 100%;
  border-radius: var(--radius-lg);
  border: 2px solid var(--gold);
  z-index: -1; opacity: 0.25;
  transition: all var(--transition);
}

.about-block:hover .about-img-wrap::after { opacity: 0.5; bottom: -18px; right: -18px; }

.about-img {
  width: 380px; height: 440px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.about-block:hover .about-img, .about-block:hover .about-img-small { transform: scale(1.02); }

.about-img-small {
  width: 380px; height: 300px; object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  transition: transform var(--transition);
}

.about-content { flex: 1; }

.about-name {
  font-size: 2.2rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.about-role { font-size: 1rem; color: var(--text-light); margin-bottom: 20px; font-weight: 500; }

.about-subtitle {
  font-size: 1.6rem; font-weight: 800;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 16px;
}

.about-text { color: var(--text-light); font-size: 1rem; line-height: 1.8; text-align: justify; }

.about-text .highlight { color: var(--gold); font-weight: 700; }

/* --- Testimonials Section --- */
.testimonials-section {
  padding: 110px 0;
  background: var(--bg-alt);
  position: relative;
  overflow: hidden;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.testimonial-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid var(--border);
  transition: all var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-stars svg {
  width: 18px;
  height: 18px;
  fill: var(--gold);
}

.testimonial-text {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.8;
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 1.05rem;
  flex-shrink: 0;
}

.testimonial-info {
  display: flex;
  flex-direction: column;
}

.testimonial-name {
  font-weight: 700;
  color: var(--dark);
  font-size: 0.95rem;
}

.testimonial-source {
  font-size: 0.8rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 4px;
}

.testimonial-source svg {
  width: 14px;
  height: 14px;
}

.google-rating-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: white;
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 10px 24px;
  margin-top: 40px;
  box-shadow: var(--shadow-sm);
}

.google-rating-badge svg {
  width: 22px;
  height: 22px;
}

.google-rating-badge span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
}

a.google-rating-badge {
  transition: all var(--transition);
  text-decoration: none;
}

a.google-rating-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  border-color: var(--gold);
}

/* Slider Dots (hidden on desktop) */
.slider-dots {
  display: none;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}
.slider-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

@media (max-width: 768px) {
  /* Testimonials Slider */
  .testimonials-slider {
    position: relative;
  }
  .testimonials-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 20px;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .testimonials-grid::-webkit-scrollbar { display: none; }
  .testimonial-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    padding: 28px;
  }
  .testimonials-section {
    padding: 80px 0;
  }
  .slider-dots { display: flex; }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 60px 0;
  }
  .testimonial-card {
    flex: 0 0 92%;
  }
}

/* --- Sticky CTA (Mobile Only) --- */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  padding: 12px 16px;
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(216, 179, 88, 0.2);
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: all var(--transition);
  box-shadow: 0 4px 16px rgba(216, 179, 88, 0.35);
}
.sticky-cta-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}
.sticky-cta-btn:active {
  transform: scale(0.97);
}

@media (max-width: 768px) {
  .sticky-cta { display: block; }
  /* Platz am Footer-Ende für Sticky CTA */
  .site-footer { padding-bottom: 80px; }
}

/* --- Contact Section --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.contact-form-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.contact-form-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.contact-form-title { font-size: 1.5rem; font-weight: 700; margin-bottom: 28px; color: var(--dark); }

.form-group { margin-bottom: 16px; }

.form-input {
  width: 100%; padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.95rem; font-family: var(--font-body);
  transition: all var(--transition);
  background: var(--bg-alt); color: var(--text);
}

.form-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(216, 179, 88, 0.12);
  background: white;
}

.form-input::placeholder { color: #94a3b8; }
textarea.form-input { resize: vertical; min-height: 130px; }
.form-submit { width: 100%; margin-top: 8px; }

/* Form Labels */
.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

/* Form Validation Errors */
.form-error {
  display: none;
  font-size: 0.82rem;
  color: #ef4444;
  margin-top: 6px;
  padding-left: 2px;
}
.form-error.visible { display: block; }
.form-input.invalid {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
}
.form-input.invalid:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 4px rgba(239, 68, 68, 0.15);
}

/* Form Submit Button States */
.form-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

/* Form Status Messages */
.form-status {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 24px;
  border-radius: var(--radius-md);
  margin-top: 20px;
  animation: fadeInUp 0.4s ease-out;
}
.form-status svg { width: 28px; height: 28px; flex-shrink: 0; margin-top: 2px; }
.form-status strong { display: block; font-size: 1rem; margin-bottom: 4px; }
.form-status p { font-size: 0.9rem; line-height: 1.5; margin: 0; }
.form-success {
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  color: #166534;
}
.form-success svg { color: #22c55e; }
.form-fail {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.25);
  color: #991b1b;
}
.form-fail svg { color: #ef4444; }

/* Google Maps Consent Placeholder */
.map-consent {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: inherit;
  background: linear-gradient(135deg, var(--bg-alt) 0%, #e2e8f0 100%);
  text-align: center;
  padding: 24px;
}
.map-consent-inner { max-width: 320px; }
.map-consent-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin: 0 auto 16px;
  display: block;
}
.map-consent-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 8px;
}
.map-consent-text {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 20px;
}
.btn-sm { padding: 10px 22px; font-size: 0.88rem; }

.contact-right { display: flex; flex-direction: column; gap: 24px; }

.map-container {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  height: 280px;
}
.map-container iframe { width: 100%; height: 100%; border: 0; }

.contact-info-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}

.contact-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }

.contact-info-item h4 {
  font-size: 0.8rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: var(--gold);
  margin-bottom: 8px; font-weight: 700;
}

.contact-info-item p { color: var(--text); font-size: 0.95rem; line-height: 1.6; margin-bottom: 4px; }

/* --- Footer --- */
.site-footer { background: var(--dark); color: rgba(255,255,255,0.7); padding: 52px 0 28px; }

.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 20px;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
}

.footer-logo { display: flex; align-items: center; gap: 12px; }
.footer-logo img { height: 40px; width: auto; }
.footer-logo-text { font-size: 1.1rem; font-weight: 700; color: var(--gold); }

.footer-links { display: flex; align-items: center; gap: 28px; }
.footer-links a { color: rgba(255,255,255,0.5); font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }

.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer-copyright { font-size: 0.85rem; color: rgba(255,255,255,0.35); }

/* Scroll Top */
.scroll-top-btn {
  display: flex; align-items: center; justify-content: center;
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white; cursor: pointer;
  transition: all var(--transition); border: none;
  position: fixed; bottom: 32px; left: 32px; z-index: 999;
  opacity: 0; transform: translateY(20px);
  box-shadow: 0 4px 20px rgba(216,179,88,0.35);
}

.scroll-top-btn.visible { opacity: 1; transform: translateY(0); }
.scroll-top-btn:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(216,179,88,0.5); }
.scroll-top-btn svg { width: 20px; height: 20px; }

/* --- Gold Line --- */
.gold-line {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  border-radius: 3px; margin: 0 auto 20px;
}

/* --- Pulse --- */
@keyframes pulse {
  0%, 100% { box-shadow: 0 4px 16px rgba(216, 179, 88, 0.35); }
  50% { box-shadow: 0 4px 36px rgba(216, 179, 88, 0.6); }
}
.btn-pulse { animation: pulse 2.5s infinite; }

/* --- Utility --- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }

/* =============================================
   RESPONSIVE
   ============================================= */

@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }
  .about-img { width: 300px; height: 380px; }
  .about-img-small { width: 300px; height: 250px; }
  .contact-grid { grid-template-columns: 1fr; }
  .product-card { padding: 36px; gap: 28px; }
  .product-img-wrap { width: 150px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}

@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .section-header { margin-bottom: 52px; }
  .top-bar-inner { justify-content: center; text-align: center; }
  .top-bar-contact { justify-content: center; }
  .header-inner { padding: 10px 16px; }
  .logo-img { height: 44px; }
  .logo-title { font-size: 1.1rem; }
  .logo-subtitle { font-size: 0.7rem; }

  .menu-toggle { display: flex; }

  .main-nav {
    position: fixed; top: 0; right: -100%;
    width: 280px; height: 100vh;
    background: white; flex-direction: column;
    padding: 80px 24px 40px; gap: 4px;
    box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    transition: right var(--transition); z-index: 1000;
    overflow-y: auto;
  }
  .main-nav.open { right: 0; }
  .main-nav a { padding: 12px 16px; font-size: 1.05rem; width: 100%; border-radius: var(--radius-sm); }
  .main-nav a:hover { background: var(--gold-bg); }
  .main-nav a::after { display: none; }

  .nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 999; }
  .nav-overlay.active { display: block; }

  .hero { min-height: 75vh; }
  .hero-title { font-size: clamp(1.8rem, 7vw, 2.8rem); }
  .hero-text { font-size: 1rem; }

  .steps-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .step-card { padding: 28px 16px; }
  .step-title { font-size: 0.88rem; }

  .product-card, .product-card.reverse { flex-direction: column; text-align: center; padding: 28px; }
  .product-card::after, .product-card.reverse::after { display: none; }
  .product-img-wrap { width: 100%; }
  .product-text { text-align: justify; }

  .about-block, .about-block.reverse { flex-direction: column; text-align: center; }
  .about-img-wrap::after { display: none; }
  .about-img { width: 100%; max-width: 350px; height: 350px; margin: 0 auto; }
  .about-img-small { width: 100%; max-width: 350px; height: 250px; margin: 0 auto; }
  .about-text { text-align: left; }

  .contact-info-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }

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

  .scroll-top-btn { bottom: 20px; left: 20px; width: 42px; height: 42px; }
  .wave-divider { height: 50px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .container-modern { padding: 0 16px; }
  .hero { min-height: 65vh; }
  .hero-content { padding: 24px 16px; }
  .btn { padding: 13px 26px; font-size: 0.9rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .step-card { padding: 20px 12px; }
  .step-icon { width: 48px; height: 48px; }
  .step-title { font-size: 0.82rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { padding: 28px 24px; }
  .product-card { padding: 24px; margin-bottom: 20px; }
  .product-img { max-height: 100px; }
  .about-block { gap: 28px; margin-bottom: 48px; }
  .about-img { height: 280px; }
  .about-img-small { height: 200px; }
  .map-container { height: 220px; }
  .cta-banner { padding: 64px 0; }
  .wave-divider { height: 36px; }
  .stats-grid { gap: 16px; }
  .stat-number { font-size: 1.8rem; }
  .brands-grid { gap: 28px; }
  .brand-logo { height: 36px; }
}
