/* =========================================
   FORTIGO Theme - Main Stylesheet
   ========================================= */

/* Font: EntSans (Original fortigo.at) */
@font-face {
  font-family: 'EntSans';
  src: url('../fonts/entsans/entsans.eot');
  src: url('../fonts/entsans/entsans.eot?#iefix') format('embedded-opentype'),
       url('../fonts/entsans/entsans.woff') format('woff'),
       url('../fonts/entsans/entsans.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* Pantone 214C - sparsam als Akzent */
  --accent: #DA1884;
  --accent-dark: #B01269;
  --accent-light: #E84DA5;
  /* Neutrales Hauptschema */
  --primary: #2D2D2D;
  --primary-dark: #1a1a1a;
  --primary-light: #444444;
  --secondary: #DA1884;
  --text-dark: #2D2D2D;
  --text-medium: #555555;
  --text-light: #888888;
  --bg-white: #ffffff;
  --bg-light: #f6f6f7;
  --bg-dark: #2c2c2c;
  --bg-footer: #4a4a4a;
  --border-light: #e5e5e5;
  --border-medium: #cccccc;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 4px 20px rgba(0, 0, 0, 0.12);
  --radius: 4px;
  --radius-lg: 8px;
  --transition: all 0.3s ease;
  --max-width: 1200px;
  --font-body: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  --font-heading: 'EntSans', 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  line-height: 1.6;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
}

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

h2 {
  color: #777777 !important;
}

h3 {
  color: #777777 !important;
}

h4 {
  color: #777777 !important;
}

.hero-banner h1,
.hero-banner h2,
.hero-banner h3,
.hero-banner h4,
.slide-content h2 {
  color: white !important;
}

a {
  color: var(--text-dark);
  text-decoration: none;
  transition: var(--transition);
}

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

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

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

/* =========================================
   Header / Top Navigation
   ========================================= */
.site-header {
  background: var(--bg-white);
  border-bottom: 3px solid var(--accent);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: var(--shadow);
}

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

.site-logo img {
  height: 60px;
  width: auto;
}

.site-logo a {
  display: block;
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.main-nav ul {
  list-style: none;
  display: flex;
  gap: 0;
  justify-content: flex-end;
}

.main-nav > ul > li {
  position: relative;
}

.main-nav > ul > li > a {
  display: block;
  padding: 16px 14px;
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: color 0.3s ease;
  position: relative;
  z-index: 1;
}

/* Skewed parallelogram background */
.main-nav > ul > li > a::before {
  content: '';
  position: absolute;
  top: 6px;
  left: -2px;
  right: -2px;
  bottom: 6px;
  background: var(--accent);
  transform: skewX(40deg);
  border-radius: 3px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > a {
  color: white;
}

.main-nav > ul > li > a:hover::before,
.main-nav > ul > li.active > a::before {
  opacity: 1;
}

/* Dropdown */
.main-nav ul ul {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--bg-white);
  min-width: 280px;
  box-shadow: var(--shadow-lg);
  border-top: 3px solid var(--accent);
  display: none;
  z-index: 100;
  list-style: none;
  flex-direction: column;
}

.main-nav ul li:hover > ul {
  display: flex;
}

.main-nav ul ul li a {
  display: block;
  padding: 10px 20px;
  color: var(--text-dark);
  font-size: 0.9rem;
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.main-nav ul ul li a:hover {
  background: var(--bg-light);
  color: var(--accent);
  padding-left: 25px;
}

/* Sub-Dropdown */
.main-nav ul ul ul {
  position: absolute;
  top: 0;
  left: 100%;
}

/* Mobile Nav Toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.nav-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition);
  border-radius: 2px;
}

/* =========================================
   Reference Logo Slider (Top Bar)
   ========================================= */
.reference-slider {
  background: var(--bg-light);
  border-bottom: 1px solid var(--border-light);
  overflow: hidden;
  padding: 8px 0;
}

.slider-track {
  display: flex;
  animation: slideLogos 30s linear infinite;
  gap: 20px;
  align-items: center;
}

.slider-track a {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 4px 12px;
  min-width: 120px;
  height: 42px;
}

.slider-track img {
  max-height: 28px;
  max-width: 100px;
  width: auto;
  height: auto;
  object-fit: contain;
  opacity: 0.8;
  filter: grayscale(20%);
  transition: var(--transition);
}

.slider-track a:hover img {
  opacity: 1;
  filter: grayscale(0%);
}

.slider-track a:hover {
  border-color: var(--accent);
}

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

/* =========================================
   Hero Image Slider
   ========================================= */
.hero-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 3;
  overflow: hidden;
  background: var(--primary-dark);
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: 100% auto;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  z-index: 1;
}

.hero-slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.slide-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding-bottom: 0;
  color: white;
}

.slide-content h2 {
  font-size: 2.4rem;
  font-weight: 800;
  margin-bottom: 8px;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-shadow: 0 2px 15px rgba(0, 0, 0, 0.7), 0 1px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
  font-size: 1.15rem;
  margin-bottom: 18px;
  max-width: 700px;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.6), 0 1px 3px rgba(0, 0, 0, 0.4);
  opacity: 0.92;
}

.slide-content .btn {
  align-self: center;
  padding: 13px 32px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.slide-content .btn-primary {
  background: var(--accent);
  border: 2px solid var(--accent);
}

.slide-content .btn-primary:hover {
  background: white;
  color: var(--accent);
  border-color: white;
}

/* Slider Arrows */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.15);
  color: white;
  border: 2px solid rgba(255, 255, 255, 0.4);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.slider-arrow:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: white;
}

.slider-prev {
  left: 20px;
}

.slider-next {
  right: 20px;
}

/* Slider Dots */
.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.slider-dots .dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  border: 2px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dots .dot.active,
.slider-dots .dot:hover {
  background: white;
  border-color: white;
}

/* =========================================
   Hero / Home Section (kept as fallback)
   ========================================= */
.hero-section {
  background: linear-gradient(135deg, #1a1a1a 0%, #2D2D2D 50%, #444444 100%);
  color: white;
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-section h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.2;
}

.hero-section p {
  font-size: 1.1rem;
  line-height: 1.8;
  max-width: 800px;
  opacity: 0.95;
}

/* =========================================
/* =========================================
   Intro / Marketing Text
   ========================================= */
.intro-section {
  padding: 30px 0 25px;
  background: var(--bg-light);
  border-bottom: 1px solid #e8e8e8;
}

.intro-headline {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--accent) !important;
  text-align: center;
  margin-bottom: 16px;
  line-height: 1.3;
}

.intro-headline::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--accent);
  margin: 10px auto 0;
}

.intro-text {
  max-width: 820px;
  margin: 0 auto;
  text-align: center;
}

.intro-text p {
  font-size: 0.92rem;
  line-height: 1.65;
  color: #555;
  margin-bottom: 10px;
}

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

/* =========================================
   Product Cards / Main Content
   ========================================= */
.products-section {
  padding: 40px 0;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  margin-top: 30px;
}

.product-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 35px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

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

.product-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.product-card h2 {
  font-size: 1.6rem;
  color: var(--text-medium);
  margin-bottom: 8px;
}

.product-card h3 {
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
  margin-bottom: 15px;
}

.product-card p {
  color: var(--text-medium);
  line-height: 1.7;
  margin-bottom: 20px;
}

/* Product Cards - Variante 3 (Compact & Centered) */
.product-grid-v3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.v3-card {
  background: white;
  border-radius: 10px;
  padding: 32px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  text-align: center;
  transition: all 0.3s ease;
  border-bottom: 4px solid transparent;
}

.v3-card:hover {
  border-bottom-color: var(--accent);
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.v3-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #f8f0f4;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.v3-card:hover .v3-icon {
  background: var(--accent);
}

.v3-icon svg {
  width: 34px;
  height: 34px;
  fill: var(--accent);
  transition: fill 0.3s ease;
}

.v3-card:hover .v3-icon svg {
  fill: white;
}

.v3-card h2 {
  font-size: 1.2rem;
  margin-bottom: 10px;
  color: #777777 !important;
  font-family: var(--font-heading);
}

.v3-card p {
  font-size: 0.88rem;
  color: #888;
  line-height: 1.6;
  margin-bottom: 20px;
}

.v3-btn {
  display: inline-block;
  padding: 9px 22px;
  border: 2px solid var(--accent);
  color: var(--accent);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.3px;
  transition: all 0.3s ease;
}

.v3-card:hover .v3-btn {
  background: var(--accent);
  color: white;
}

.btn {
  display: inline-block;
  padding: 10px 25px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: white;
}

.btn-primary:hover {
  background: var(--accent);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(218, 24, 132, 0.25);
}

.btn-secondary {
  background: var(--accent);
  color: white;
}

.btn-secondary:hover {
  background: var(--accent-dark);
  color: white;
}

.btn-outline {
  border: 2px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* =========================================
   2-Column Layout (Basics/Detail Pages)
   ========================================= */
.page-two-col {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 30px 0 50px;
}

.page-two-col .page-content {
  max-width: 100%;
}

@media (max-width: 768px) {
  .page-two-col {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   3-Column Layout (Software Pages)
   ========================================= */
.page-three-col {
  display: grid;
  grid-template-columns: 220px 1fr 240px;
  gap: 30px;
  padding: 30px 0 50px;
}

/* Left Sidebar */
.sidebar-left {
  position: sticky;
  top: 80px;
  align-self: start;
}

.sidebar-left .sidebar-nav h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 0;
}

.sidebar-left .sidebar-nav > ul {
  list-style: none;
  padding: 0;
}

.sidebar-left .sidebar-nav > ul > li > a {
  display: block;
  padding: 10px 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-dark);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.sidebar-left .sidebar-nav > ul > li > a:hover,
.sidebar-left .sidebar-nav > ul > li.active > a {
  color: var(--accent);
}

.sidebar-left .sidebar-nav ul ul {
  list-style: none;
  padding: 0;
}

.sidebar-left .sidebar-nav ul ul li a {
  display: block;
  padding: 7px 12px 7px 24px;
  font-size: 0.85rem;
  color: var(--text-medium);
  border-bottom: 1px solid var(--border-light);
  transition: var(--transition);
}

.sidebar-left .sidebar-nav ul ul li a:hover {
  color: var(--accent);
  padding-left: 28px;
}

.sidebar-left .sidebar-nav ul ul li.active a {
  color: var(--accent);
  font-weight: 600;
  border-left: 3px solid var(--accent);
  padding-left: 21px;
}

/* Right Sidebar */
.sidebar-right {
  position: sticky;
  top: 80px;
  align-self: start;
}

.sidebar-right .sidebar-screenshots,
.sidebar-left .sidebar-screenshots {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}

.sidebar-right .screenshot-thumb,
.sidebar-left .screenshot-thumb {
  display: block;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
}

.sidebar-right .screenshot-thumb:hover,
.sidebar-left .screenshot-thumb:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.sidebar-right .screenshot-thumb img,
.sidebar-left .screenshot-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

.sidebar-argumente {
  text-align: center;
  padding: 15px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  margin-bottom: 20px;
  margin-top: 20px;
}

.sidebar-argumente h4 {
  font-size: 0.9rem;
  color: var(--text-dark);
  margin-bottom: 10px;
}

.sidebar-argumente img {
  max-width: 100%;
  height: auto;
}

.sidebar-right .sidebar-references {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
  padding: 15px;
}

.sidebar-right .sidebar-references h4 {
  font-size: 0.85rem;
  color: var(--text-dark);
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  margin-bottom: 12px;
}

.sidebar-right .ref-logos {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sidebar-right .ref-logos a {
  display: block;
  padding: 8px;
  background: white;
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  text-align: center;
  transition: var(--transition);
}

.sidebar-right .ref-logos a:hover {
  border-color: var(--accent);
}

.sidebar-right .ref-logos img {
  max-height: 40px;
  max-width: 100%;
  height: auto;
  width: auto;
  object-fit: contain;
}

/* Inline Screenshots in Content */
.screenshot-inline {
  display: block;
  margin: 20px 0;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  max-width: 100%;
}

.screenshot-inline:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--accent);
}

.screenshot-inline img {
  width: 100%;
  height: auto;
  display: block;
}

/* Text + Screenshot side by side (like original fortigo.at) */
.content-with-screenshot {
  display: flex;
  gap: 25px;
  align-items: flex-start;
  margin: 20px 0 30px;
}

.content-with-screenshot .content-text {
  flex: 1;
  min-width: 0;
}

.content-with-screenshot .content-text p {
  margin-bottom: 12px;
}

.content-with-screenshot .content-screenshot {
  flex: 0 0 340px;
  max-width: 340px;
}

.content-with-screenshot .content-screenshot .screenshot-inline {
  margin: 0;
}

@media (max-width: 900px) {
  .content-with-screenshot {
    flex-direction: column;
  }
  .content-with-screenshot .content-screenshot {
    flex: none;
    max-width: 100%;
    width: 100%;
  }
}

/* Module pages - 3 column grid like original */
.module-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin: 25px 0 30px;
  align-items: start;
}

.module-card {
  text-align: center;
}

.module-card h4 {
  font-size: 1rem;
  font-style: italic;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.module-card img {
  display: block;
  width: 160px;
  height: auto;
  margin: 0 auto 15px;
}

.module-card p {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.6;
  text-align: left;
}

.module-card-highlight {
  background: linear-gradient(135deg, #fdf2f7 0%, #fff 100%);
  border: 2px solid var(--accent);
  border-radius: var(--radius-lg);
  padding: 20px 18px;
  position: relative;
}

.module-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 3px 12px;
  border-radius: 3px;
  margin-bottom: 10px;
}

@media (max-width: 900px) {
  .module-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 560px) {
  .module-grid {
    grid-template-columns: 1fr;
  }
}

/* Legacy module styles (kept for compatibility) */
.module-title {
  clear: both;
  padding-top: 15px;
}

img.module-icon {
  float: left;
  margin: 3px 15px 10px 0;
  width: 36px;
  height: auto;
}

/* Quick Nav for Basics pages */
.page-content .quick-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 15px 0 25px;
}

@media (max-width: 1024px) {
  .page-three-col {
    grid-template-columns: 200px 1fr;
    gap: 20px;
  }
  .sidebar-right {
    display: none;
  }
}

@media (max-width: 768px) {
  .page-three-col {
    grid-template-columns: 1fr;
  }
  .sidebar-left {
    position: static;
  }
  .sidebar-right {
    display: block;
    position: static;
  }
}

/* =========================================
   Legacy 2-Column Layout (kept for other pages)
   ========================================= */
.page-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 40px;
  padding: 40px 0;
}

.sidebar {
  position: sticky;
  top: 100px;
  align-self: start;
}

/* Legacy sidebar-nav base (used by old sidebar.html.twig) */
.sidebar-nav {
  margin-bottom: 20px;
}

.sidebar-box {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 20px;
  text-align: center;
  margin-bottom: 20px;
}

.sidebar-box img {
  max-width: 120px;
  margin-bottom: 10px;
}

.sidebar-box h4 {
  font-size: 0.95rem;
  color: var(--text-dark);
}

/* Sidebar References */
.sidebar-references {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 20px;
}

.sidebar-references h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--text-light);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.sidebar-references .ref-logos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}

.sidebar-references .ref-logos img {
  width: 100%;
  padding: 5px;
  background: white;
  border-radius: var(--radius);
  border: 1px solid var(--border-light);
}

/* =========================================
   Content Pages
   ========================================= */
.page-content {
  padding: 40px 0;
}

.page-content h1 {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 10px;
  padding-bottom: 15px;
  border-bottom: 3px solid var(--accent);
}

.page-content h2 {
  font-size: 1.5rem;
  color: var(--text-medium);
  margin-top: 35px;
  margin-bottom: 15px;
}

.page-content h3 {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-top: 25px;
  margin-bottom: 10px;
}

.page-content p {
  margin-bottom: 15px;
  line-height: 1.8;
  color: var(--text-medium);
}

.page-content ul, .page-content ol {
  margin-bottom: 15px;
  padding-left: 25px;
}

.page-content li {
  margin-bottom: 8px;
  line-height: 1.6;
}

.page-content img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 15px 0;
}

/* Screenshots Gallery */
.screenshot-gallery {
  display: flex;
  gap: 15px;
  margin: 20px 0;
  overflow-x: auto;
}

.screenshot-gallery img {
  height: 200px;
  width: auto;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}

.screenshot-gallery img:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-lg);
}

/* Quick Nav Tabs */
.quick-nav {
  display: flex;
  gap: 10px;
  margin: 25px 0;
  flex-wrap: wrap;
}

.quick-nav a {
  display: inline-block;
  padding: 10px 22px;
  background: var(--primary);
  border: 1px solid var(--primary);
  border-radius: 4px;
  color: white;
  font-size: 0.85rem;
  font-weight: 600;
  transition: var(--transition);
}

.quick-nav a:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

/* CTA Banner */
.cta-banner {
  background: var(--primary);
  color: white;
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  margin: 40px 0;
}

.cta-banner p {
  color: white;
  font-size: 1.1rem;
  margin-bottom: 5px;
}

.cta-banner .phone {
  font-size: 1.5rem;
  font-weight: 700;
  display: block;
  margin-top: 5px;
}

/* =========================================
   Referenzen
   ========================================= */
.referenzen-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 40px 0;
}

.referenz-card {
  background: var(--bg-white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.referenz-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

.referenz-card .ref-logo {
  padding: 25px;
  text-align: center;
  background: var(--bg-light);
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.referenz-card .ref-logo img {
  max-height: 60px;
  max-width: 180px;
  object-fit: contain;
}

.referenz-card .ref-info {
  padding: 20px;
}

.referenz-card .ref-info h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 5px;
  font-family: var(--font-body);
}

.referenz-card .ref-info .location {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-bottom: 12px;
}

.referenz-card .ref-info blockquote {
  font-style: italic;
  color: var(--text-medium);
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 12px;
  background: var(--bg-light);
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  margin-bottom: 8px;
}

.referenz-card .ref-info .quote-author {
  font-size: 0.8rem;
  color: var(--text-light);
  text-align: right;
}

/* =========================================
   News
   ========================================= */
/* =========================================
   News Page - Header
   ========================================= */
.news-header {
  padding: 40px 0 0;
  max-width: 1100px;
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
}

.news-header h1 {
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  padding-bottom: 15px;
  border-bottom: 4px solid var(--accent);
  display: inline-block;
}

.news-intro {
  text-align: center;
  padding: 45px 20px 40px;
  max-width: 750px;
  margin: 0 auto;
}

.news-intro h2 {
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 700;
  color: var(--text-medium);
  margin-bottom: 12px;
}

.news-intro p {
  font-size: 1.02rem;
  color: var(--text-medium);
  line-height: 1.7;
}

/* =========================================
   News Card Grid
   ========================================= */
.news-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-bottom: 50px;
}

.news-card {
  background: white;
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border: 1px solid var(--border-light);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.news-card:hover {
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.news-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.news-card-date {
  font-size: 0.85rem;
  color: var(--text-medium);
}

.news-card-badge {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.news-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.news-card-title a {
  color: inherit;
  text-decoration: none;
}

.news-card-title a:hover {
  color: var(--accent);
}

.news-card-subtitle {
  font-size: 0.92rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 10px;
  line-height: 1.4;
}

.news-card-excerpt {
  font-size: 0.88rem;
  color: var(--text-medium);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 16px;
}

.news-card-link {
  font-size: 0.9rem;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: var(--transition);
  margin-top: auto;
}

.news-card-link:hover {
  color: var(--primary-dark);
}

/* =========================================
   News CTA
   ========================================= */
.news-cta {
  margin: 30px 0 50px;
}

.news-cta-inner {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: var(--radius-lg);
  padding: 40px 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.news-cta-text h3 {
  color: white;
  margin-bottom: 6px;
  font-size: 1.2rem;
}

.news-cta-text p {
  color: rgba(255,255,255,0.8);
  margin: 0;
  font-size: 0.95rem;
}

.news-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 12px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.news-cta-btn:hover {
  background: white;
  color: var(--accent);
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* =========================================
   News - Empty State
   ========================================= */
.news-empty {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-light);
}

/* =========================================
   10 Argumente Page
   ========================================= */
.argumente-title {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-style: italic;
  color: var(--accent);
  margin-bottom: 4px;
}

.argumente-subtitle {
  font-style: italic;
  font-weight: 700;
  color: var(--text-dark);
  font-size: 1.1rem;
  margin-bottom: 30px;
}

.argumente-list {
  border-top: 1px solid var(--border-light);
}

.argumente-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border-light);
}

.argumente-icon {
  flex-shrink: 0;
  width: 38px;
  min-width: 38px;
}

.argumente-icon img {
  width: 38px;
  height: 38px;
  display: block;
}

.argumente-text {
  font-size: 0.9rem;
  line-height: 1.65;
  color: var(--text-medium);
}

.argumente-text strong {
  color: var(--text-dark);
}

@media (max-width: 768px) {
  .argumente-title {
    font-size: 1.4rem;
  }
  .argumente-icon {
    width: 32px;
    min-width: 32px;
  }
  .argumente-icon img {
    width: 32px;
    height: 32px;
  }
  .argumente-text {
    font-size: 0.85rem;
  }
}

/* =========================================
   News Detail
   ========================================= */
.news-detail {
  padding: 30px 0 50px;
}

.news-detail-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--border-light);
}

.news-detail-date {
  background: var(--primary);
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
}

.news-category {
  display: inline-block;
  background: var(--accent);
  color: white;
  padding: 3px 12px;
  border-radius: 3px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

.news-back {
  font-size: 0.9rem;
  color: var(--text-dark);
  font-weight: 600;
}

.news-back:hover {
  color: var(--accent);
}

.news-detail-footer {
  margin-top: 40px;
  padding-top: 25px;
  border-top: 1px solid var(--border-light);
}

/* =========================================
   News - Responsive
   ========================================= */
@media (max-width: 900px) {
  .news-timeline-line {
    left: 20px;
  }

  .news-tl-card {
    width: 100%;
    padding-left: 50px !important;
    padding-right: 0 !important;
  }

  .news-tl-dot {
    left: 12px !important;
    right: auto !important;
  }

  .news-tl-content::after {
    left: -7px !important;
    right: auto !important;
    border-right: none !important;
    border-top: none !important;
    border-left: 1px solid var(--border-light) !important;
    border-bottom: 1px solid var(--border-light) !important;
  }

  .news-section-title::before,
  .news-section-title::after {
    display: none;
  }
}

@media (max-width: 768px) {
  .news-hero {
    padding: 35px 0 30px;
  }

  .news-hero h1 {
    font-size: 1.6rem;
  }

  .news-featured-grid {
    grid-template-columns: 1fr;
  }

  .news-featured-inner {
    flex-direction: column;
  }

  .news-featured-date,
  .news-featured:not(.news-featured-primary) .news-featured-date {
    width: 100%;
    flex-direction: row;
    gap: 8px;
    padding: 16px 20px;
  }

  .nf-day,
  .news-featured:not(.news-featured-primary) .nf-day {
    font-size: 1.5rem;
  }

  .news-featured-body,
  .news-featured:not(.news-featured-primary) .news-featured-body {
    padding: 20px 22px;
  }

  .news-featured-badge {
    right: 15px;
  }

  .news-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 25px;
  }

  .news-detail-meta {
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
  }
}


/* =========================================
   Kontakt Page
   ========================================= */
.kontakt-page h1 {
  margin-bottom: 30px;
}

.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 30px;
  margin-bottom: 30px;
}

.kontakt-main {
  min-width: 0;
}

.kontakt-info-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 25px;
}

.kontakt-card {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 22px;
}

.kontakt-card h3 {
  font-size: 1rem;
  color: var(--text-dark);
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.kontakt-card p {
  font-size: 0.93rem;
  color: var(--text-medium);
  line-height: 1.8;
  margin: 0;
}

.kontakt-card a {
  color: var(--accent);
}

.kontakt-card a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

/* Contact Form */
.kontakt-form-wrap {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 25px;
}

.kontakt-form-wrap .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 15px;
}

.kontakt-form-wrap .form-group {
  margin-bottom: 0;
}

.kontakt-form-wrap > .form-group {
  margin-bottom: 0;
}

.kontakt-form-wrap .form-group:only-child {
  grid-column: 1 / -1;
}

.kontakt-form-wrap label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.kontakt-form-wrap .required {
  color: var(--accent);
  font-weight: 700;
}

.kontakt-form-wrap input,
.kontakt-form-wrap select,
.kontakt-form-wrap textarea {
  width: 100%;
  padding: 9px 12px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius);
  font-size: 0.93rem;
  font-family: var(--font-body);
  background: white;
  transition: var(--transition);
  box-sizing: border-box;
}

.kontakt-form-wrap input:focus,
.kontakt-form-wrap select:focus,
.kontakt-form-wrap textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(218, 24, 132, 0.1);
}

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

.kontakt-form-wrap select {
  cursor: pointer;
  appearance: auto;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 10px 0 15px;
}

.form-status {
  padding: 12px 16px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  margin-bottom: 15px;
}

.form-success {
  background: #f0fdf0;
  color: #1a7a1a;
  border: 1px solid #b8e6b8;
}

.form-error {
  background: #fff0f0;
  color: #c33;
  border: 1px solid #fcc;
}

/* Right sidebar: Map + Info */
.kontakt-sidebar {
  position: sticky;
  top: 80px;
  align-self: start;
}

.kontakt-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.kontakt-map iframe {
  display: block;
  width: 100%;
  height: 350px;
}

@media (max-width: 1024px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
  }

  .kontakt-sidebar {
    position: static;
  }
}

@media (max-width: 600px) {
  .kontakt-info-row {
    grid-template-columns: 1fr;
  }

  .kontakt-form-wrap .form-row {
    grid-template-columns: 1fr;
  }
}

/* =========================================
   Download Area
   ========================================= */
.download-login {
  display: flex;
  justify-content: center;
  padding: 60px 0;
}

.login-box {
  background: var(--bg-light);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 420px;
  width: 100%;
  text-align: center;
}

.login-box h1 {
  font-size: 1.8rem;
  color: var(--accent);
  margin-bottom: 10px;
}

.login-box p {
  color: var(--text-medium);
  margin-bottom: 25px;
  font-size: 0.95rem;
}

.login-form {
  text-align: left;
}

.login-form .form-group {
  margin-bottom: 15px;
}

.login-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 5px;
}

.login-form input {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: var(--transition);
}

.login-form input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(218, 24, 132, 0.1);
}

.login-error {
  background: #fff0f0;
  color: #c33;
  padding: 10px 14px;
  border-radius: var(--radius);
  font-size: 0.85rem;
  margin-bottom: 15px;
  border: 1px solid #fcc;
}

.login-form .btn {
  width: 100%;
  text-align: center;
  margin-top: 5px;
}

/* Download Tables */
.download-content {
  padding: 20px 0 50px;
}

.download-section {
  margin-bottom: 30px;
}

.download-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.88rem;
}

.download-table thead {
  background: var(--bg-light);
}

.download-table th {
  text-align: left;
  padding: 12px 15px;
  font-weight: 700;
  color: var(--text-dark);
  border-bottom: 2px solid var(--border-light);
  font-size: 1rem;
}

.download-table td {
  padding: 9px 15px;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-medium);
  vertical-align: middle;
}

.download-table tr:hover {
  background: var(--bg-light);
}

.download-table .col-name {
  min-width: 260px;
}

.download-table .col-name a {
  color: var(--accent);
  font-weight: 400;
}

.download-table .col-name a:hover {
  color: var(--accent-dark);
  text-decoration: underline;
}

.download-table .col-type {
  color: var(--text-light);
  font-size: 0.82rem;
}

.download-table .col-size {
  white-space: nowrap;
}

.download-table .col-date {
  white-space: nowrap;
}

.download-hint {
  margin-top: 25px;
  padding: 15px 20px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-light);
}

.download-hint p {
  font-size: 0.9rem;
  color: var(--text-medium);
  margin: 0;
}

@media (max-width: 768px) {
  .download-table .col-type {
    display: none;
  }

  .download-table th,
  .download-table td {
    padding: 8px 10px;
    font-size: 0.82rem;
  }

  .login-box {
    padding: 25px;
  }
}

/* =========================================
   Breadcrumb
   ========================================= */
.breadcrumb {
  background: var(--bg-light);
  padding: 12px 0;
  font-size: 0.85rem;
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb a {
  color: var(--text-dark);
}

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

.breadcrumb span {
  color: var(--text-light);
  margin: 0 8px;
}

/* =========================================
   Footer
   ========================================= */
.site-footer {
  background: var(--bg-footer);
  color: rgba(255, 255, 255, 0.8);
  padding: 50px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}

.footer-col h4 {
  color: white !important;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--accent);
  padding-left: 5px;
}

.footer-address p {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
  margin-bottom: 12px;
}

.footer-address a {
  color: rgba(255, 255, 255, 0.85);
  transition: var(--transition);
}

.footer-address a:hover {
  color: var(--accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 20px;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

/* =========================================
   Cookie Banner
   ========================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(26, 26, 46, 0.95);
  color: white;
  padding: 15px 0;
  z-index: 9999;
  backdrop-filter: blur(10px);
  display: none;
}

.cookie-banner.active {
  display: block;
}

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

.cookie-banner p {
  font-size: 0.9rem;
  margin: 0;
}

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

.cookie-btn {
  background: var(--accent);
  color: white;
  border: none;
  padding: 8px 25px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
  transition: var(--transition);
}

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

/* =========================================
   Kontakt / Contact Page
   ========================================= */
.contact-info {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin: 30px 0;
}

.contact-details h3 {
  color: var(--text-dark);
  margin-bottom: 15px;
}

.contact-details p {
  line-height: 2;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 350px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 350px;
}

/* Fernwartung */
.fernwartung-box {
  text-align: center;
  padding: 60px 40px;
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  margin: 30px 0;
}

.fernwartung-box img {
  max-width: 200px;
  margin-bottom: 20px;
}

.fernwartung-box h2 {
  color: var(--text-medium);
  margin-bottom: 20px;
}

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .page-with-sidebar {
    grid-template-columns: 1fr;
  }

  .sidebar {
    position: static;
  }

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

  .product-grid-v3 {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-lg);
    border-top: 3px solid var(--accent);
  }

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

  .main-nav ul {
    flex-direction: column;
  }

  .main-nav ul ul {
    position: static;
    box-shadow: none;
    border-top: none;
    background: var(--bg-light);
  }

  .main-nav ul ul ul {
    position: static;
  }

  .hero-section {
    padding: 50px 0 40px;
  }

  .hero-section h1 {
    font-size: 1.8rem;
  }

  .hero-slider {
    aspect-ratio: 3 / 1;
  }

  .hero-slide {
    background-size: cover;
  }

  .slide-content .btn {
    display: none;
  }

  .slide-content h2 {
    font-size: 1.2rem;
  }

  .slide-content p {
    font-size: 0.8rem;
    margin-bottom: 10px;
  }

  .slide-content .btn {
    padding: 8px 20px;
    font-size: 0.8rem;
  }

  .intro-section {
    padding: 35px 0 30px;
  }

  .intro-headline {
    font-size: 1.35rem;
  }

  .intro-text p {
    font-size: 0.92rem;
    text-align: left;
  }

  .news-card-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-header h1 {
    font-size: 1.5rem;
  }

  .news-intro h2 {
    font-size: 1.3rem;
  }

  .news-cta-inner {
    flex-direction: column;
    text-align: center;
    padding: 30px 20px;
  }

  .slider-arrow {
    width: 36px;
    height: 36px;
    font-size: 1rem;
  }

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

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

  .contact-info {
    grid-template-columns: 1fr;
  }

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