/* ==========================================================================
   FRANK GLASER GMBH - BRAND DESIGN SYSTEM & STYLESHEET
   Authentic Corporate Identity matching the Frank Glaser Logo Colors:
   Navy Blue (#004B87), Brand Gold (#F5B800), Accent Red (#D32F2F), Slate (#0F172A)
   ========================================================================== */

/* --------------------------------------------------------------------------
   Local Fonts (GDPR / DSGVO Compliance)
   -------------------------------------------------------------------------- */
/* latin-ext */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/plus-jakarta-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
/* latin */
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
  src: url('fonts/plus-jakarta-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* --------------------------------------------------------------------------
   1. CSS Custom Properties / Design Tokens
   -------------------------------------------------------------------------- */
:root {
  /* Brand Core Palette (from logo_frankglaser.jpg) */
  --brand-blue: #004B87;
  --brand-blue-hover: #003663;
  --brand-blue-light: rgba(0, 75, 135, 0.08);
  
  --brand-gold: #D99B00;
  --brand-gold-bright: #F5B800;
  --brand-gold-light: rgba(245, 184, 0, 0.12);
  
  --brand-red: #D32F2F;
  --brand-red-light: rgba(211, 47, 47, 0.08);
  
  /* Neutral Color Scale */
  --bg-main: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-dark: #0F172A;
  --bg-dark-surface: #1E293B;
  
  --text-main: #0F172A;
  --text-muted: #334155;
  --text-white: #FFFFFF;
  --text-light-muted: #64748B;
  
  --border-color: #E2E8F0;
  --border-dark: #334155;
  
  /* Geometry & Radius */
  --radius-sm: 0.375rem; /* 6px */
  --radius-md: 0.5rem;   /* 8px */
  --radius-lg: 0.75rem;  /* 12px */
  --radius-xl: 1rem;     /* 16px */
  --radius-full: 9999px;
  
  /* Box Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.08), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 10px 25px -5px rgba(0, 75, 135, 0.15), 0 8px 10px -6px rgba(0, 0, 0, 0.05);
  
  /* Typography & Transitions */
  --font-family: 'Plus Jakarta Sans', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --------------------------------------------------------------------------
   2. Accessibility & Global Reset
   -------------------------------------------------------------------------- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Skip link for accessibility keyboard users (Vollständig versteckt bis zum Tab-Fokus) */
.skip-link {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
  background: var(--brand-gold-bright);
  color: #000000;
  padding: 8px 16px;
  z-index: 10000;
  font-weight: 700;
  transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
  text-decoration: none !important;
}

.skip-link:focus {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 8.75rem; /* ~140px Offset für die fixierte Top-Bar & Navbar */
  font-size: 16px;
}

section[id] {
  scroll-margin-top: 8.75rem;
}

body {
  font-family: var(--font-family);
  background-color: var(--bg-main);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none !important;
  transition: all var(--transition-fast);
}

a:hover, a:focus {
  text-decoration: none !important;
}

:focus-visible {
  outline: 3px solid var(--brand-gold-bright);
  outline-offset: 2px;
}

/* --------------------------------------------------------------------------
   3. Container & Layout Utilities
   -------------------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 44rem;
  margin: 0 auto 3rem auto;
}

.section-badge {
  font-size: 0.8125rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--brand-blue);
  background: none;
  padding: 0;
  border-radius: 0;
  display: block;
  margin-bottom: 0.5rem;
  opacity: 0;
  clip-path: inset(0 50% 0 50%);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), 
              clip-path 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.visible .section-badge,
.section-header.visible .section-badge {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text-main);
  line-height: 1.25;
  letter-spacing: -0.02em;
  opacity: 0;
  clip-path: inset(0 50% 0 50%);
  transform: scale(0.92);
  transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, 
              clip-path 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s, 
              transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.15s;
}

.visible .section-title,
.section-header.visible .section-title {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

.section-title span {
  color: var(--brand-blue);
}

.brand-stripe-divider {
  height: 4px;
  width: 90px;
  margin: 1rem auto 0 auto;
  display: flex;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1) 0.3s;
}

.visible .brand-stripe-divider,
.section-header.visible .brand-stripe-divider,
.brand-stripe-divider.visible {
  transform: scaleX(1);
}

.brand-stripe-divider .s-blue { background-color: var(--brand-blue); flex: 1; }
.brand-stripe-divider .s-red { background-color: var(--brand-red); flex: 1; }
.brand-stripe-divider .s-gold { background-color: var(--brand-gold-bright); flex: 1; }

.grid {
  display: grid;
  gap: 1.5rem;
}

.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }
.grid-4 { grid-template-columns: 1fr; }

@media (min-width: 640px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 992px) {
  .grid-3 { grid-template-columns: repeat(3, 1fr); }
  .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

/* Sticky Header Wrapper (Top Bar + Navbar zusammen oben fixiert) */
.sticky-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.top-bar {
  display: none;
  background-color: var(--bg-dark);
  color: #CBD5E1;
  font-size: 0.8125rem;
  padding: 0.625rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.top-info-item svg {
  width: 16px;
  height: 16px;
  color: var(--brand-gold-bright);
  flex-shrink: 0;
  display: block;
}

.top-info-item a:hover {
  color: var(--brand-gold-bright);
  text-decoration: none !important;
}

.header-nav {
  background-color: var(--bg-surface);
  border-bottom: 1px solid var(--border-color);
}

.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 5rem;
}

.logo-wrapper {
  display: flex;
  align-items: center;
  transition: transform var(--transition-fast);
  text-decoration: none !important;
}

.logo-wrapper:hover {
  transform: scale(1.02);
}

.logo-img {
  height: 3.25rem;
  width: auto;
  object-fit: contain;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2.25rem;
  list-style: none;
}

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-muted);
  padding: 0.5rem 0;
  position: relative;
  text-decoration: none !important;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2.5px;
  background-color: var(--brand-blue);
  border-radius: 2px;
  transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link:hover {
  color: var(--brand-gold-bright);
}

.nav-link.active {
  color: var(--brand-blue);
  font-weight: 700;
}

.nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.5rem;
  cursor: pointer;
  color: var(--text-main);
}

/* --------------------------------------------------------------------------
   5. Premium Buttons & Micro-Interactions
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: 1px solid transparent;
  white-space: nowrap;
  text-decoration: none !important;
}

.btn-primary {
  background-color: var(--brand-blue);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--brand-blue-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 75, 135, 0.25);
}

.btn-gold {
  display: none;
  background-color: var(--brand-gold-bright);
  color: #000000;
  box-shadow: none;
  transition: all var(--transition-fast);
}

.btn-gold:hover {
  background-color: #FFC107;
  color: #000000;
  transform: translateY(-2px);
  box-shadow: none !important;
}

.btn-red {
  background-color: var(--brand-red);
  color: var(--text-white);
  box-shadow: var(--shadow-sm);
}

.btn-red:hover {
  background-color: #B71C1C;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(211, 47, 47, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--brand-blue);
  border-color: var(--brand-blue);
}

.btn-outline:hover {
  background-color: var(--brand-blue-light);
  transform: translateY(-2px);
}

.btn-ebay {
  background-color: #E53238;
  color: #FFFFFF;
}

.btn-ebay:hover {
  background-color: #C62828;
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(229, 50, 56, 0.3);
}

/* --------------------------------------------------------------------------
   6. Hero Section
   -------------------------------------------------------------------------- */
.hero-section {
  padding: 2.5rem 0 3.5rem 0;
}

.hero-banner {
  background: linear-gradient(135deg, #0F172A 0%, #004B87 100%);
  border-radius: var(--radius-xl);
  padding: 3.5rem 2.5rem;
  color: var(--text-white);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.hero-banner-content {
  max-width: 48rem;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-title span {
  color: var(--brand-gold-bright);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: #E2E8F0;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Metric Numbers (Clean Layout ohne Kacheln/Kästen) */
.hero-metrics-bar {
  margin-top: 2.5rem;
  padding-top: 2.25rem;
  border-top: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .hero-metrics-bar {
    grid-template-columns: repeat(3, 1fr);
  }
}

.metric-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  transition: transform var(--transition-fast);
}

.metric-item:hover {
  transform: translateY(-2px);
}

.metric-num {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 800;
  color: var(--brand-blue);
  line-height: 1.05;
  letter-spacing: -0.03em;
  font-variant-numeric: tabular-nums;
}

.metric-text {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
  font-weight: 500;
  line-height: 1.4;
  max-width: 100%;
  white-space: nowrap;
}

@media (max-width: 991px) {
  .metric-text {
    white-space: normal;
  }
}

/* --------------------------------------------------------------------------
   7. Online Shops Showcase Section
   -------------------------------------------------------------------------- */
.shops-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.shop-card {
  background-color: var(--bg-main);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 2.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition-normal);
}

.shop-card:hover {
  transform: translateY(-5px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-lg);
}

.shop-badge {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--brand-blue);
  background-color: var(--brand-blue-light);
  padding: 0.25rem 0.625rem;
  border-radius: var(--radius-sm);
  display: inline-block;
  margin-bottom: 1.25rem;
}

.shop-badge-ebay {
  color: #E53238;
  background-color: rgba(229, 50, 56, 0.08);
}

.shop-logo-box {
  background-color: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: auto;
  min-height: 0;
  margin-bottom: 1.5rem;
  overflow: hidden;
  box-shadow: none;
  transition: transform var(--transition-fast);
}

.shop-logo-box.ebay-box {
  background-color: #FFFFFF;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 0.75rem 1rem;
  min-height: 58px;
  box-shadow: var(--shadow-sm);
}

.shop-card:hover .shop-logo-box {
  transform: scale(1.02);
}

.shop-logo-img {
  width: 100%;
  height: auto;
  max-height: none;
  object-fit: contain;
  border-radius: var(--radius-md);
  display: block;
}

.ebay-brand-text {
  font-size: 1.75rem;
  font-weight: 800;
  letter-spacing: -0.03em;
}
.ebay-brand-text .e1 { color: #E53238; }
.ebay-brand-text .e2 { color: #0064D2; }
.ebay-brand-text .e3 { color: #F5AF02; }
.ebay-brand-text .e4 { color: #86B817; }

.shop-title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.shop-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.shop-card .btn-gold {
  display: inline-flex;
}

/* --------------------------------------------------------------------------
   8. B2B Feature Grid (USPs with Watermark Background Icons)
   -------------------------------------------------------------------------- */
.feature-card {
  position: relative;
  overflow: hidden;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem 2rem 1.75rem;
  transition: all var(--transition-fast);
  z-index: 1;
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}

/* Large Diagonal Watermark Icon for Feature Cards (Brand Gold shaded background) */
.feature-bg-icon {
  position: absolute;
  right: 15px;
  bottom: -25px;
  width: 140px;
  height: 140px;
  color: var(--brand-gold-bright);
  opacity: 0.10;
  transform: rotate(-15deg);
  pointer-events: none;
  transition: all 0.35s ease-in-out;
  z-index: 0;
}

.feature-bg-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.feature-card:hover .feature-bg-icon {
  opacity: 0.28;
  transform: rotate(-5deg) scale(1.12);
  color: var(--brand-gold-bright);
}

.feature-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.feature-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.5;
  position: relative;
  z-index: 2;
}

/* --------------------------------------------------------------------------
   8b. Google Reviews Infinite Loop Marquee (15 Karten)
   -------------------------------------------------------------------------- */
.reviews-section {
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-color);
  overflow: hidden;
  padding: 4.5rem 0;
}

.reviews-marquee-wrapper {
  overflow: hidden;
  width: 100%;
  position: relative;
  padding: 1rem 0;
  /* Sanfter Ausblendeffekt links und rechts */
  mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.reviews-track {
  display: flex;
  gap: 1.5rem;
  width: max-content;
  animation: scrollInfinite 45s linear infinite;
  will-change: transform;
}



@keyframes scrollInfinite {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

.review-card-item {
  width: 350px;
  flex-shrink: 0;
  background-color: var(--bg-surface);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-fast);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-card-item:hover {
  transform: translateY(-5px);
  border-color: var(--brand-blue);
  box-shadow: var(--shadow-md);
}

.review-stars {
  color: var(--brand-gold-bright);
  font-size: 1.25rem;
  letter-spacing: 0.2rem;
  margin-bottom: 0.75rem;
}

.review-quote {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.review-author {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--brand-blue);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.google-icon-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  background-color: rgba(66, 133, 244, 0.08);
  color: #4285F4;
  padding: 0.2rem 0.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
}

/* --------------------------------------------------------------------------
   9. FAQ Section
   -------------------------------------------------------------------------- */
.faq-section {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
}

.faq-item {
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  background-color: var(--bg-main);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: border-color var(--transition-fast);
}

.faq-item:hover {
  border-color: var(--brand-blue);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  text-align: left;
  background: none;
  border: none;
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  color: var(--brand-blue);
}

.faq-answer {
  padding: 0 1.5rem 1.25rem 1.5rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  display: none;
}

.faq-item.open .faq-answer {
  display: block;
}

.faq-item.open .faq-question svg {
  transform: rotate(180deg);
}

/* --------------------------------------------------------------------------
   10. Contact & Location Section
   -------------------------------------------------------------------------- */
.contact-section {
  background-color: var(--bg-main);
  border-top: 1px solid var(--border-color);
}

.contact-card-dark {
  background: linear-gradient(135deg, #0F172A 0%, #004B87 100%);
  color: var(--text-white);
  border-radius: var(--radius-xl);
  padding: 3.5rem 3rem;
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .contact-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.contact-box-item {
  position: relative;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  padding: 2.25rem 1.75rem 2rem 1.75rem;
  transition: all var(--transition-fast);
  z-index: 1;
}

.contact-box-item:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
  border-color: var(--brand-gold-bright);
}

/* Huge Diagonal Shadow Background Icon */
.contact-box-bg-icon {
  position: absolute;
  right: 15px;
  bottom: -25px;
  width: 160px;
  height: 160px;
  color: var(--brand-gold-bright);
  opacity: 0.12;
  transform: rotate(-15deg);
  pointer-events: none;
  transition: all 0.35s ease-in-out;
  z-index: 0;
}

.contact-box-bg-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-box-item:hover .contact-box-bg-icon {
  opacity: 0.28;
  transform: rotate(-5deg) scale(1.12);
  color: var(--brand-gold-bright);
}

.contact-box-title {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--brand-gold-bright);
  font-weight: 800;
  margin-bottom: 0.625rem;
  position: relative;
  z-index: 2;
}

.contact-box-content {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--text-white);
  line-height: 1.5;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .contact-box-content {
    white-space: normal;
  }
}

.contact-box-content a {
  color: var(--text-white);
  font-weight: 700;
  text-decoration: none !important;
  border-bottom: none !important;
}

.contact-box-content a:hover {
  color: var(--brand-gold-bright);
  text-decoration: none !important;
  border-bottom: none !important;
}

/* --------------------------------------------------------------------------
   11. Footer
   -------------------------------------------------------------------------- */
.site-footer {
  background-color: #FFFFFF;
  color: var(--text-main);
  padding: 4rem 0 2rem 0;
  border-top: 1px solid var(--border-color);
}

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

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: 2fr 1.2fr 1.5fr;
  }
}

.footer-logo {
  height: 3.5rem;
  width: auto;
  object-fit: contain;
  margin-bottom: 1.25rem;
}

.footer-desc {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 24rem;
}

.footer-title {
  font-size: 1.0625rem;
  font-weight: 800;
  color: var(--brand-blue);
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.625rem;
}

.footer-links a {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--text-main);
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  text-decoration: none !important;
}

.footer-links a:hover {
  color: var(--brand-blue);
  text-decoration: none !important;
}

.footer-contact-info {
  font-size: 0.9375rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.footer-contact-info strong {
  color: var(--text-main);
  font-size: 1rem;
}

.footer-contact-info a {
  color: var(--brand-blue);
  font-weight: 700;
  text-decoration: none !important;
}

.footer-contact-info a:hover {
  color: var(--brand-gold);
  text-decoration: none !important;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

.footer-bottom-links {
  display: flex;
  gap: 1.75rem;
}

.footer-bottom-links a {
  color: var(--text-main);
  font-weight: 600;
  text-decoration: none !important;
}

.footer-bottom-links a:hover {
  color: var(--brand-blue);
  text-decoration: none !important;
}

/* --------------------------------------------------------------------------
   12. Responsive Mobile Menu
   -------------------------------------------------------------------------- */
@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 5rem;
    left: 0;
    width: 100%;
    background-color: var(--bg-surface);
    flex-direction: column;
    padding: 1.75rem 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
    border-bottom: 1px solid var(--border-color);
    display: none;
  }

  .nav-menu.open {
    display: flex;
  }

  .mobile-toggle {
    display: block;
  }
}

/* --------------------------------------------------------------------------
   13. Scroll-to-Top Floating Button (Unten Rechts Sticky)
   -------------------------------------------------------------------------- */
.scroll-top-btn {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 3.125rem; /* 50px */
  height: 3.125rem;
  border-radius: var(--radius-full);
  background-color: var(--brand-blue);
  color: var(--text-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 25px rgba(0, 75, 135, 0.3);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.8) translateY(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-top-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1) translateY(0);
}

.scroll-top-btn:hover {
  background-color: var(--brand-gold-bright);
  color: #000000;
  transform: scale(1.08) translateY(-4px);
  box-shadow: 0 12px 30px rgba(245, 184, 0, 0.4);
}

/* --------------------------------------------------------------------------
   14. Vorteile Slider Wrapper (Desktop = Grid, Mobile = Horizontal Slider)
   -------------------------------------------------------------------------- */
.vorteile-slider-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 991px) and (min-width: 769px) {
  .vorteile-slider-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Slider Navigation (Arrows + Dots) — hidden on desktop, shown on mobile */
.slider-nav {
  display: none;
}

@media (max-width: 768px) {
  .slider-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
    padding: 0 1rem;
    max-width: 100%;
  }

  .slider-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: var(--radius-full);
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-surface);
    color: var(--text-muted);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
    box-shadow: var(--shadow-sm);
  }

  .slider-arrow:hover,
  .slider-arrow:active {
    background-color: var(--brand-blue);
    border-color: var(--brand-blue);
    color: var(--text-white);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(0, 75, 135, 0.25);
  }

  .slider-dots {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    flex-shrink: 1;
    min-width: 0;
  }

  .slider-dot {
    width: 8px;
    height: 8px;
    border-radius: var(--radius-full);
    background-color: var(--border-color);
    cursor: pointer;
    transition: all var(--transition-fast);
    flex-shrink: 0;
  }

  .slider-dot.active {
    width: 20px;
    background-color: var(--brand-blue);
    border-radius: 4px;
  }

  .slider-dot:hover:not(.active) {
    background-color: var(--text-light-muted);
    transform: scale(1.2);
  }
}

/* --------------------------------------------------------------------------
   15. COMPREHENSIVE MOBILE RESPONSIVE STYLES
   -------------------------------------------------------------------------- */
@media (max-width: 768px) {

  /* --- Global Mobile Adjustments --- */
  html {
    scroll-padding-top: 5.5rem;
  }

  section[id] {
    scroll-margin-top: 5.5rem;
  }

  .section {
    padding: 3rem 0;
  }

  .container {
    padding: 0 1rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-title {
    font-size: 1.75rem;
  }

  /* --- 1. Header: Hide Top-Bar & Kontakt CTA --- */
  .top-bar {
    display: none !important;
  }

  .nav-actions .btn-gold {
    display: none !important;
  }

  .navbar-container {
    height: 4rem;
    justify-content: center;
  }

  .logo-wrapper {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .nav-actions {
    position: absolute;
    right: 1rem;
  }

  .logo-img {
    height: 2.5rem;
  }

  /* Fix mobile menu position when top-bar is hidden */
  .nav-menu {
    top: 4rem !important;
  }

  /* --- 2. Hero CTA Buttons: Equal Width --- */
  .hero-section .container {
    padding: 0;
  }

  .hero-banner {
    padding: 2.5rem 1.5rem;
    border-radius: 0;
    text-align: center;
  }

  .hero-title {
    font-size: 1.75rem;
  }

  .hero-subtitle {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
    padding: 0.875rem 1.5rem;
    font-size: 1rem;
  }

  /* --- Hero Metrics Bar --- */
  .hero-metrics-bar {
    margin-top: 1.75rem;
    padding-top: 1.5rem;
    gap: 1.25rem;
  }

  .metric-num {
    font-size: 2rem;
  }

  .metric-text {
    font-size: 0.8125rem;
  }

  /* --- 3. Vorteile Cards: Horizontal Slider --- */
  #vorteile {
    overflow: hidden;
  }

  #vorteile > .container {
    overflow: hidden;
  }

  .vorteile-slider-wrapper {
    display: flex !important;
    grid-template-columns: unset !important;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 1rem;
    padding-bottom: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .vorteile-slider-wrapper::-webkit-scrollbar {
    display: none;
  }

  .vorteile-slider-wrapper .feature-card {
    min-width: 80vw;
    max-width: 80vw;
    flex-shrink: 0;
    scroll-snap-align: start;
  }

  /* Dot indicators hint (subtle bottom shadow) */
  .vorteile-slider-wrapper::after {
    content: '';
    min-width: 1rem;
    flex-shrink: 0;
  }

  /* --- 4. Kundenstimmen: Taller Cards & Slower Marquee --- */
  .reviews-section {
    padding: 3rem 0;
  }

  .review-card-item {
    width: 280px;
    min-height: 220px;
    padding: 1.5rem;
  }

  .review-quote {
    font-size: 0.875rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    /* Allow full text visibility */
    display: block;
    overflow: visible;
  }

  .review-stars {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
  }

  .review-author {
    font-size: 0.8125rem;
  }

  .reviews-track {
    animation-duration: 80s !important;
    gap: 1rem;
  }

  .reviews-marquee-wrapper {
    mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 5%, #000 95%, transparent 100%);
  }

  /* --- 5. Shops Section --- */
  .shops-section .grid-3 {
    grid-template-columns: 1fr !important;
  }

  .shop-card {
    padding: 1.75rem;
  }

  .shop-title {
    font-size: 1.25rem;
  }

  .shop-desc {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
  }

  /* --- FAQ Section --- */
  .faq-section .container {
    max-width: 100% !important;
  }

  .faq-question {
    padding: 1rem 1.25rem;
    font-size: 0.9375rem;
  }

  .faq-answer {
    padding: 0 1.25rem 1rem 1.25rem;
    font-size: 0.875rem;
  }

  /* --- Contact Section --- */
  .contact-card-dark {
    padding: 2rem 1.25rem;
    border-radius: var(--radius-lg);
  }

  .contact-card-dark h3 {
    font-size: 1.5rem !important;
  }

  .contact-card-dark p {
    font-size: 0.9375rem !important;
  }

  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }

  .contact-box-item {
    padding: 1.5rem 1.25rem;
  }

  .contact-box-content {
    font-size: 0.9375rem;
    white-space: normal !important;
  }

  /* --- Footer --- */
  .site-footer {
    padding: 2.5rem 0 1.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 2rem;
  }

  .footer-logo {
    display: block;
    margin: 0 auto 1.25rem auto;
    height: 2.75rem;
  }

  .footer-desc {
    font-size: 0.875rem;
    text-align: center;
    margin: 0 auto;
  }

  .footer-title {
    font-size: 1rem;
    margin-bottom: 0.75rem;
    text-align: center;
  }

  .footer-links {
    align-items: center;
  }

  .footer-links a {
    font-size: 0.875rem;
  }

  .footer-contact-info {
    font-size: 0.875rem;
    text-align: center;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
  }

  .footer-bottom-links {
    gap: 1.25rem;
  }

  .footer-bottom-links a {
    font-size: 0.8125rem;
  }

  /* --- Scroll to Top Button --- */
  .scroll-top-btn {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 2.75rem;
    height: 2.75rem;
  }

  /* --- Hero Section Spacing --- */
  .hero-section {
    padding: 0 0 2rem 0;
  }
}

/* --------------------------------------------------------------------------
   16. Small Mobile (< 400px) fine-tuning
   -------------------------------------------------------------------------- */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.5rem;
  }

  .hero-subtitle {
    font-size: 0.9375rem;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .vorteile-slider-wrapper .feature-card {
    min-width: 85vw;
    max-width: 85vw;
  }

  .review-card-item {
    width: 260px;
  }

  .metric-num {
    font-size: 1.75rem;
  }

  .contact-card-dark {
    padding: 1.5rem 1rem;
  }
}

