/* ==========================================================================
   STYLE.CSS - Complete Frontend Stylesheet
   Industrial Dark Theme - KFZ-Werkstatt
   ========================================================================== */

/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

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

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

ul, ol {
  list-style: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
}

/* ==========================================================================
   2. DESIGN TOKENS
   ========================================================================== */

:root {
  --bg-dark: #0a0a0a;
  --bg-card: #111111;
  --bg-section: #1a1a1a;
  --accent: #c0313e;
  --accent-hover: #e63946;
  --text-primary: #f0f0f0;
  --text-secondary: #b0b0b0;
  --text-muted: #777777;
  --gold: #d4a843;
  --white: #ffffff;
  --font-heading: 'Bebas Neue', sans-serif;
  --font-body: 'Barlow', sans-serif;
  --font-condensed: 'Barlow Condensed', sans-serif;
  --radius: 10px;
  --max-width: 1200px;
  --nav-height: 70px;
}

/* ==========================================================================
   3. BODY & TYPOGRAPHY
   ========================================================================== */

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.25rem; }

p {
  margin-bottom: 1rem;
  color: var(--text-secondary);
}

/* ==========================================================================
   4. SHARED / UTILITY
   ========================================================================== */

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

.section-label {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  text-align: center;
  margin-bottom: 48px;
}

.section-title .section-label {
  display: block;
  text-align: center;
}

.section-title h2 {
  margin-bottom: 12px;
}

.section-title p {
  max-width: 600px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

section {
  padding: 80px 0;
}

section:nth-child(even) {
  background: #141414;
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: none;
  transition: background 0.25s ease, transform 0.2s ease, box-shadow 0.25s ease;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(192, 49, 62, 0.35);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  padding: 14px 32px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: border-color 0.25s ease, background 0.25s ease, transform 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
}

.btn-small {
  padding: 10px 20px;
  font-size: 0.9rem;
}

/* Scroll-reveal animation */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible,
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   5. ANNOUNCEMENT BAR
   ========================================================================== */

.announcement-bar {
  background: var(--accent);
  color: var(--white);
  text-align: center;
  padding: 8px 16px;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  position: relative;
  z-index: 1001;
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  font-weight: 600;
}

.announcement-bar a:hover {
  opacity: 0.85;
}

.announcement-bar .dismiss-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--white);
  font-size: 1.2rem;
  line-height: 1;
  opacity: 0.8;
  padding: 4px;
}

.announcement-bar .dismiss-btn:hover {
  opacity: 1;
}

/* ==========================================================================
   6. NAVIGATION
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  height: var(--nav-height);
}

.nav-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.nav-logo img,
.nav-logo svg {
  height: 42px;
  width: auto;
}

.nav-logo span {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--white);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-menu a {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-secondary);
  transition: color 0.25s ease;
  position: relative;
}

.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--white);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
  width: 100%;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: background 0.25s ease, transform 0.2s ease;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  z-index: 1002;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 280px;
    height: 100vh;
    height: 100dvh;
    background: var(--bg-card);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }

  .nav-menu.open {
    transform: translateX(0);
  }

  .nav-menu a {
    font-size: 1.2rem;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1000;
  }

  .nav-overlay.active {
    display: block;
  }
}

/* ==========================================================================
   7. HERO SECTION
   ========================================================================== */

.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 20px 80px;
  overflow: hidden;
  background: var(--bg-dark);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 10, 10, 0.5) 0%,
    rgba(10, 10, 10, 0.85) 100%
  );
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.hero-label {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero h1 {
  margin-bottom: 20px;
}

.hero h1 .accent {
  color: var(--accent);
}

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 560px;
  margin: 0 auto 32px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius);
  padding: 20px 28px;
  text-align: center;
  min-width: 140px;
}

.hero-stat .number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  color: #e8c468;
  line-height: 1.1;
}

.hero-stat .label {
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #d0d0d0;
  margin-top: 4px;
}

/* ==========================================================================
   8. SERVICES SECTION
   ========================================================================== */

.services-section {
  padding: 80px 0;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 49, 62, 0.3);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

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

.service-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(192, 49, 62, 0.1);
  border-radius: 12px;
  margin-bottom: 20px;
  font-size: 1.5rem;
  color: var(--accent);
}

.service-icon img,
.service-icon svg {
  width: 28px;
  height: 28px;
}

.service-card h3 {
  margin-bottom: 10px;
  font-size: 1.4rem;
}

.service-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.service-card .service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 16px;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--accent);
  transition: gap 0.25s ease, color 0.25s ease;
}

.service-card .service-link:hover {
  color: var(--accent-hover);
  gap: 10px;
}

/* ==========================================================================
   9. ABOUT SECTION
   ========================================================================== */

.about-section {
  padding: 80px 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-badge {
  display: inline-block;
  
  margin-top: 16px;
  background: var(--accent);
  color: var(--white);
  padding: 12px 20px;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
}

.about-content .section-label {
  margin-bottom: 12px;
}

.about-content h2 {
  margin-bottom: 16px;
  text-align: left;
}

.about-content > p {
  margin-bottom: 24px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 24px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature .feature-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: rgba(192, 49, 62, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1rem;
}

.about-feature .feature-text {
  font-family: var(--font-condensed);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-secondary);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-content h2 {
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   10. REVIEWS SECTION
   ========================================================================== */

.reviews-section {
  padding: 80px 0;
}

.reviews-summary {
  text-align: center;
  margin-bottom: 40px;
}

.reviews-summary .rating-number {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  color: var(--white);
  line-height: 1;
}

.reviews-summary .stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin: 8px 0;
}

.star {
  width: 22px;
  height: 22px;
  position: relative;
  display: inline-block;
}

.star::before {
  content: '\2605';
  font-size: 22px;
  color: #444;
  line-height: 1;
}

.star.filled::before {
  color: var(--gold);
}

.star.half::before {
  color: #444;
}

.star.half::after {
  content: '\2605';
  font-size: 22px;
  color: var(--gold);
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  overflow: hidden;
  line-height: 1;
}

.reviews-summary .rating-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.3s ease;
}

.review-card:hover {
  transform: translateY(-3px);
}

.review-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.review-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #141414;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--accent);
  flex-shrink: 0;
  overflow: hidden;
}

.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-author {
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 1rem;
  color: var(--text-primary);
}

.review-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 12px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

.review-text p:last-child {
  margin-bottom: 0;
}

.review-source {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-muted);
  font-style: italic;
}

/* ==========================================================================
   11. CONTACT SECTION
   ========================================================================== */

.contact-section {
  padding: 80px 0;
}

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

.contact-info h3 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

.contact-item .icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  background: rgba(192, 49, 62, 0.1);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
}

.contact-item .details {
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.contact-item .details strong {
  display: block;
  color: var(--text-primary);
  font-family: var(--font-condensed);
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.contact-item .details a {
  color: var(--text-secondary);
  transition: color 0.25s ease;
}

.contact-item .details a:hover {
  color: var(--accent);
}

/* Hours table */
.hours-table {
  width: 100%;
  margin-top: 20px;
  border-collapse: collapse;
}

.hours-table tr {
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.hours-table td {
  padding: 10px 0;
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.hours-table td:first-child {
  font-family: var(--font-condensed);
  font-weight: 500;
  color: var(--text-primary);
  width: 50%;
}

.hours-table td:last-child {
  text-align: right;
}

.hours-table tr.today td {
  color: var(--accent);
  font-weight: 600;
}

/* Quick action buttons */
.contact-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.contact-actions .btn-primary,
.contact-actions .btn-secondary {
  font-size: 0.9rem;
  padding: 12px 20px;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ==========================================================================
   12. CONTACT FORM
   ========================================================================== */

.contact-form-section {
  padding: 80px 0;
}

.contact-form-section .contact-form {
  max-width: 640px;
  margin: 0 auto;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 36px;
}

.contact-form h3 {
  margin-bottom: 24px;
  font-size: 1.4rem;
}

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

.form-group label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  background: var(--bg-dark);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-muted);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(192, 49, 62, 0.15);
}

.form-group textarea {
  min-height: 120px;
  resize: vertical;
}

.form-group select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23777' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 480px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-submit {
  width: 100%;
  margin-top: 8px;
  justify-content: center;
}

.form-group .error-message {
  font-size: 0.8rem;
  color: var(--accent);
  margin-top: 6px;
  display: none;
}

.form-group.has-error input,
.form-group.has-error textarea,
.form-group.has-error select {
  border-color: var(--accent);
}

.form-group.has-error .error-message {
  display: block;
}

.form-success {
  background: rgba(76, 175, 80, 0.1);
  border: 1px solid rgba(76, 175, 80, 0.3);
  border-radius: 8px;
  padding: 16px 20px;
  color: #81c784;
  font-size: 0.95rem;
  text-align: center;
  display: none;
}

.form-success.visible {
  display: block;
}

.form-error-banner {
  background: rgba(192, 49, 62, 0.1);
  border: 1px solid rgba(192, 49, 62, 0.3);
  border-radius: 8px;
  padding: 16px 20px;
  color: var(--accent-hover);
  font-size: 0.95rem;
  text-align: center;
  display: none;
  margin-bottom: 16px;
}

.form-error-banner.visible {
  display: block;
}

/* ==========================================================================
   13. FAQ SECTION
   ========================================================================== */

.faq-section {
  padding: 80px 0;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  font-family: var(--font-condensed);
  font-size: 1.1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--text-primary);
  text-align: left;
  cursor: pointer;
  transition: color 0.25s ease;
}

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

.faq-toggle {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: transform 0.35s ease, background 0.25s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
  background: rgba(192, 49, 62, 0.15);
  color: var(--accent);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              padding 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-item.active .faq-answer {
  max-height: 500px;
}

.faq-answer-inner {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-secondary);
  line-height: 1.7;
}

.faq-answer-inner p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   14. GALLERY SECTION
   ========================================================================== */

.gallery-section {
  padding: 80px 0;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10, 10, 10, 0.7) 100%);
  opacity: 0;
  transition: opacity 0.35s ease;
}

.gallery-item:hover img {
  transform: scale(1.06);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-caption {
  position: absolute;
  bottom: 14px;
  left: 14px;
  right: 14px;
  z-index: 1;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--white);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.gallery-item:hover .gallery-caption {
  opacity: 1;
  transform: translateY(0);
}

/* Masonry-style variable heights */
.gallery-grid .gallery-item:nth-child(4n+1) {
  aspect-ratio: 3 / 4;
}

.gallery-grid .gallery-item:nth-child(4n+3) {
  aspect-ratio: 16 / 10;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 240px;
    grid-auto-flow: dense;
  }

  .gallery-item {
    aspect-ratio: unset;
  }

  .gallery-grid .gallery-item:nth-child(4n+1) {
    aspect-ratio: unset;
    grid-row: span 2;
  }

  .gallery-grid .gallery-item:nth-child(4n+3) {
    aspect-ratio: unset;
    grid-column: span 2;
  }
}

/* ==========================================================================
   15. DOWNLOADS SECTION
   ========================================================================== */

.downloads-section {
  padding: 80px 0;
}

.downloads-list {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.download-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--radius);
  padding: 18px 24px;
  transition: border-color 0.25s ease, transform 0.2s ease;
}

.download-item:hover {
  border-color: rgba(192, 49, 62, 0.3);
  transform: translateY(-2px);
}

.download-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(192, 49, 62, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-family: var(--font-condensed);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.download-info {
  flex: 1;
  min-width: 0;
}

.download-name {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-primary);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.download-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 2px;
}

.download-action {
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1.2rem;
  transition: transform 0.2s ease;
}

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

/* ==========================================================================
   16. EINZUGSGEBIET SECTION
   ========================================================================== */

.einzugsgebiet-section {
  padding: 80px 0;
}

.einzugsgebiet-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.einzugsgebiet-content p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.einzugsgebiet-content strong {
  color: var(--text-primary);
}

.einzugsgebiet-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.einzugsgebiet-tag {
  background: var(--bg-card);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 6px;
  padding: 8px 16px;
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: border-color 0.25s ease, color 0.25s ease;
}

.einzugsgebiet-tag:hover {
  border-color: var(--accent);
  color: var(--text-primary);
}

/* ==========================================================================
   17. FOOTER
   ========================================================================== */

.site-footer {
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 48px 0 24px;
}

.footer-container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-logo img,
.footer-logo svg {
  height: 36px;
  width: auto;
}

.footer-logo span {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--white);
}

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-copyright {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-muted);
  font-size: 1rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.footer-social a:hover {
  background: var(--accent);
  color: var(--white);
}

/* ==========================================================================
   18. OVERLAYS / MODALS
   ========================================================================== */

.overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.overlay-backdrop.active {
  opacity: 1;
  visibility: visible;
}

.overlay-content {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.95);
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  padding: 24px 16px;
  max-width: 520px;
  width: calc(100% - 16px);
  max-height: 85vh;
  overflow-y: auto;
  z-index: 2001;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
  box-sizing: border-box;
  word-wrap: break-word;
  overflow-wrap: break-word;
  hyphens: auto;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

.overlay-backdrop.active .overlay-content,
.overlay-content.active {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.overlay-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 1.2rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.overlay-close:hover {
  background: var(--accent);
  color: var(--white);
}

/* Scrollbar in overlay */
.overlay-content::-webkit-scrollbar {
  width: 6px;
}

.overlay-content::-webkit-scrollbar-track {
  background: transparent;
}

.overlay-content::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
}

/* ==========================================================================
   19. POPUP
   ========================================================================== */

.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.65);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.popup-overlay.active {
  opacity: 1;
  visibility: visible;
}

.popup-modal {
  /* background-color can be overridden by inline styles */
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 500px;
  width: 90%;
  text-align: center;
  position: relative;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.4s ease;
}

.popup-overlay.active .popup-modal {
  transform: translateY(0);
  opacity: 1;
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-muted);
  font-size: 1.1rem;
  transition: background 0.25s ease, color 0.25s ease;
}

.popup-close:hover {
  background: var(--accent);
  color: var(--white);
}

.popup-modal h3 {
  margin-bottom: 12px;
}

.popup-modal p {
  margin-bottom: 20px;
}

@keyframes popup-slide-in {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.popup-overlay.active .popup-modal {
  animation: popup-slide-in 0.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ==========================================================================
   20. COOKIE BANNER
   ========================================================================== */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 5000;
  background: var(--bg-card);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 20px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.cookie-banner.active,
.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.cookie-text {
  flex: 1;
  min-width: 200px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

.cookie-text a {
  color: var(--accent);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--accent-hover);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-accept {
  background: var(--accent);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.25s ease;
}

.cookie-accept:hover {
  background: var(--accent-hover);
}

.cookie-decline {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-secondary);
  padding: 10px 24px;
  border-radius: 8px;
  font-family: var(--font-condensed);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: background 0.25s ease, color 0.25s ease;
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
}

/* Cookie modal variant */
.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-box {
  background: #141414;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 36px;
  max-width: 480px;
  width: 90%;
  text-align: center;
}

/* ==========================================================================
   21. FOCUS & ACCESSIBILITY
   ========================================================================== */

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================================================
   22. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* 480px - Small mobile */
@media (max-width: 480px) {
  section {
    padding: 50px 0;
  }

  .container {
    padding: 0 16px;
  }

  .hero {
    min-height: 90vh;
    padding: 80px 16px 60px;
  }

  .hero-stats {
    gap: 12px;
  }

  .hero-stat {
    padding: 14px 18px;
    min-width: 110px;
  }

  .hero-stat .number {
    font-size: 1.5rem;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    justify-content: center;
  }

  .section-title {
    margin-bottom: 32px;
  }

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

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

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

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

  .footer-links {
    justify-content: center;
  }

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

  .contact-form {
    padding: 24px;
  }

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

  .cookie-actions {
    width: 100%;
    justify-content: center;
  }
}

/* 768px - Tablet */
@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-content h2 {
    text-align: center;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

/* 1024px - Small desktop */
@media (min-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* 1200px - Large desktop */
@media (min-width: 1200px) {
  .container {
    padding: 0;
  }

  .services-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ==========================================================================
   23. PRINT STYLES
   ========================================================================== */

@media print {
  *,
  *::before,
  *::after {
    background: transparent !important;
    color: #000 !important;
    box-shadow: none !important;
    text-shadow: none !important;
  }

  body {
    font-size: 12pt;
    line-height: 1.5;
  }

  .site-header,
  .hamburger,
  .nav-overlay,
  .cookie-banner,
  .cookie-modal,
  .popup-overlay,
  .overlay-backdrop,
  .announcement-bar,
  .hero-buttons,
  .contact-actions,
  .footer-social {
    display: none !important;
  }

  a[href]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #555;
  }

  .hero {
    min-height: auto;
    padding: 20px 0;
  }

  section {
    padding: 20px 0;
    page-break-inside: avoid;
  }

  .services-grid,
  .reviews-grid,
  .gallery-grid {
    display: block;
  }

  .service-card,
  .review-card {
    border: 1px solid #ccc;
    margin-bottom: 10px;
    page-break-inside: avoid;
  }

  img {
    max-width: 100% !important;
    page-break-inside: avoid;
  }
}

/* Fix: text-transform uppercase causes &amp; to show as &AMP; */
.services-section h3,
.about-section h2,
.reviews-section h3,
.faq-section h3,
.contact-section h2 {
  text-transform: none;
}

/* ==========================================================================
   SOCIAL ICONS - Footer
   ========================================================================== */

.footer-social {
    padding: 16px 0;
    display: flex;
    justify-content: center;
}

.social-icons {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    justify-content: center;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-secondary, #b0b0b0);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
    background: rgba(255,255,255,0.03);
}

.social-icon svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

.social-icon:hover {
    color: var(--white, #ffffff);
    transform: translateY(-2px);
    border-color: rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.08);
}

/* Platform-specific hover colors */
.social-icon-facebook:hover { color: #1877F2; border-color: #1877F2; }
.social-icon-instagram:hover { color: #E4405F; border-color: #E4405F; }
.social-icon-tiktok:hover { color: #ffffff; border-color: #00f2ea; background: linear-gradient(135deg, rgba(0,242,234,0.15), rgba(255,0,80,0.15)); }
.social-icon-youtube:hover { color: #FF0000; border-color: #FF0000; }
.social-icon-linkedin:hover { color: #0A66C2; border-color: #0A66C2; }
.social-icon-x:hover { color: #ffffff; border-color: #ffffff; }
.social-icon-google:hover { color: #4285F4; border-color: #4285F4; }
.social-icon-whatsapp:hover { color: #25D366; border-color: #25D366; }
.social-icon-telegram:hover { color: #26A5E4; border-color: #26A5E4; }
.social-icon-pinterest:hover { color: #BD081C; border-color: #BD081C; }
.social-icon-yelp:hover { color: #D32323; border-color: #D32323; }
.social-icon-tripadvisor:hover { color: #34E0A1; border-color: #34E0A1; }

@media (max-width: 600px) {
    .social-icon {
        width: 32px;
        height: 32px;
    }
    .social-icon svg {
        width: 16px;
        height: 16px;
    }
    .social-icons {
        gap: 10px;
    }
}


/* ============================================================
   COMBINED FIXES - Responsive + Overlay + Typography
   ============================================================ */

/* Headings: keine text-transform damit &amp; korrekt angezeigt wird */
h1, h2, h3, h4, h5, h6 {
    text-transform: none !important;
}

/* Hero: flex-direction column */
.hero {
    flex-direction: column;
}
.hero-stats {
    width: 100%;
    margin-top: 40px;
}

/* Overlay: sauber positioniert */
.overlay-content {
    box-sizing: border-box !important;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.overlay-content * {
    max-width: 100%;
    box-sizing: border-box;
    word-wrap: break-word;
    overflow-wrap: break-word;
}
.overlay-content h3,
.overlay-content h4 {
    text-transform: none !important;
}

/* Overlay Design */
.overlay-content {
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}
.overlay-content h2 {
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-right: 40px;
}
.overlay-close {
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.overlay-close:hover {
    background: var(--accent);
}

/* ---- TABLET 768px ---- */
@media (max-width: 768px) {
    .hero {
        min-height: auto;
        padding: 80px 20px 40px;
    }
    .hero-stats {
        gap: 10px;
    }
    .hero-stat {
        padding: 12px 14px;
        min-width: 90px;
        flex: 1;
        max-width: 140px;
    }
    .hero-stat .number { font-size: 1.3rem; }
    .hero-stat .label { font-size: 0.65rem; }
    .services-grid { grid-template-columns: 1fr 1fr !important; }
    .about-grid { grid-template-columns: 1fr !important; gap: 24px; }
    .contact-grid { grid-template-columns: 1fr !important; }
    .faq-grid { grid-template-columns: 1fr !important; }
    .reviews-grid { grid-template-columns: 1fr !important; }

    /* Overlay: zentriert, scrollbar, nicht zu breit */
    .overlay-content {
        position: fixed !important;
        top: 50% !important;
        left: 50% !important;
        right: auto !important;
        bottom: auto !important;
        width: calc(100% - 16px) !important;
        max-width: 480px !important;
        max-height: 80vh !important;
        transform: translate(-50%, -50%) !important;
        padding: 20px 12px !important;
        overflow-y: auto !important;
    }
    .overlay-backdrop.active .overlay-content,
    .overlay-content.active {
        transform: translate(-50%, -50%) !important;
    }
}

/* ---- MOBILE 480px ---- */
@media (max-width: 480px) {
    .hero { padding: 60px 16px 30px; }
    .hero h1 { font-size: 1.8rem !important; }
    .hero-subtext { font-size: 0.9rem; }
    .hero-buttons { flex-direction: column; gap: 10px; }
    .hero-buttons a { text-align: center; }
    .hero-stats { flex-direction: column; align-items: center; gap: 8px; }
    .hero-stat { width: 100%; max-width: 250px; padding: 10px 16px; }
    .services-grid { grid-template-columns: 1fr !important; }
    .contact-form { padding: 20px 16px; }
    .footer-grid { grid-template-columns: 1fr !important; text-align: center; }

    .overlay-content {
        width: calc(100% - 32px) !important;
        max-width: none !important;
        max-height: 85vh !important;
        padding: 36px 12px 16px !important;
        border-radius: 12px;
    }
    .overlay-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }
}

/* Keyfacts Schrift heller */
.hero-stat .number {
    color: #e8c468 !important;
}
.hero-stat .label {
    color: var(--text-primary) !important;
}
.hero-stat {
    background: rgba(255, 255, 255, 0.18) !important;
    border-color: rgba(255, 255, 255, 0.35) !important;
}
