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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  color: #444;
  line-height: 1.8;
  overflow-x: hidden;
}

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

ul {
  list-style: none;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: 'Exo', sans-serif;
  font-weight: 600;
}

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

/* ===== Utility Classes ===== */
.slide-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.slide-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.accent-line {
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0089F7, #00c6ff);
  margin: 15px auto;
  border-radius: 2px;
}

.text-highlight {
  color: #0089F7;
  font-weight: 500;
}

.section-divider {
  width: 80px;
  height: 2px;
  background: linear-gradient(90deg, #0089F7, #00c6ff);
  margin: 40px 0;
  border-radius: 2px;
}

.info-box {
  background: #fff;
  border-left: 4px solid #0089F7;
  border-radius: 0 12px 12px 0;
  padding: 30px 35px;
  margin: 25px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  max-width: 800px;
}

.info-box p {
  margin-bottom: 10px;
}

.info-box p:last-child {
  margin-bottom: 0;
}

.table-intro {
  margin-bottom: 40px;
}

.table-intro h2 {
  font-size: 28px;
  font-weight: 700;
  color: #333;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.table-intro p {
  font-size: 17px;
  font-weight: 300;
  color: #626262;
  max-width: 800px;
  line-height: 1.8;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.15);
  margin: 0 auto 25px;
  border-radius: 2px;
}

/* ===== Header ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(22, 25, 34, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  background: rgba(22, 25, 34, 0.98);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.logo img {
  height: 65px;
  width: auto;
}

/* Navigation */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0;
}

.main-nav > ul > li > a {
  display: block;
  padding: 15px 18px;
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  position: relative;
}

.main-nav > ul > li > a::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 18px;
  right: 18px;
  height: 2px;
  background: #0089F7;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.main-nav > ul > li > a:hover::after,
.main-nav > ul > li.active > a::after {
  transform: scaleX(1);
}

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

/* Nav Dropdown Arrow */
.nav-arrow {
  font-size: 10px;
  margin-left: 3px;
  opacity: 0.5;
  display: inline-block;
  transition: transform 0.3s ease;
}

.has-dropdown:hover .nav-arrow,
.has-dropdown.open .nav-arrow {
  transform: rotate(180deg);
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #1a2133;
  border-top: 2px solid #0089F7;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.25);
  border-radius: 0 0 10px 10px;
  flex-direction: column;
}

.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 14px 24px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0.3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.3s ease, background 0.3s ease, border-left 0.3s ease;
  border-left: 3px solid transparent;
}

.dropdown li:last-child a {
  border-bottom: none;
}

.dropdown li a:hover {
  color: #fff;
  background: rgba(0, 137, 247, 0.12);
  border-left: 3px solid #0089F7;
}

/* Hamburger */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
  background: none;
  border: none;
}

.menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background: #fff;
  transition: all 0.3s ease;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

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

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero Section ===== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  background: url('../images/hero-bg.jpg') center center / cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.6), rgba(0,137,247,0.15));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 20px;
  animation: fadeInUp 1s ease;
}

.hero-content h1 {
  font-size: 64px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 4px 12px rgba(0,0,0,0.5);
}

.hero-content p {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.8;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-block;
  padding: 14px 35px;
  background: #0089F7;
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #0089F7;
  border-radius: 6px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 137, 247, 0.3);
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover {
  background: transparent;
  color: #fff;
  box-shadow: 0 4px 20px rgba(0, 137, 247, 0.4);
}

.btn-quote {
  padding: 16px 40px;
  font-size: 15px;
}

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

/* ===== Services Section ===== */
.services-section {
  position: relative;
  padding: 100px 0;
  background: url('../images/section-bg1.jpg') center center / cover no-repeat fixed;
  color: #fff;
  text-align: center;
}

.services-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 25, 34, 0.88), rgba(0, 80, 150, 0.75));
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.section-title {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  letter-spacing: 1px;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0089F7, #00c6ff);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 25px auto 0;
  line-height: 1.8;
}

/* ===== Stats Section ===== */
.stats-section {
  background: #161922;
  padding: 70px 0;
  color: #fff;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.stat-number {
  font-family: 'Exo', sans-serif;
  font-size: 48px;
  font-weight: 700;
  color: #5ba8d9;
  line-height: 1.2;
}

.stat-label {
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== Product Cards ===== */
.products-section {
  padding: 100px 0;
  background: #f7f7f7;
}

.products-section-title {
  font-size: 42px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  color: #333;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.products-section .container > .products-section-title {
  display: block;
  text-align: center;
}

.products-section-title::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0089F7, #00c6ff);
  border-radius: 2px;
}

.products-section-subtitle {
  text-align: center;
  font-size: 17px;
  font-weight: 300;
  color: #626262;
  max-width: 600px;
  margin: 25px auto 0;
}

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

.product-card {
  background: #fff;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0, 137, 247, 0.15);
}

.product-card-img {
  width: 100%;
  height: 280px;
  overflow: hidden;
}

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

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 32px 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-body h3 {
  font-size: 19px;
  font-weight: 600;
  text-transform: uppercase;
  color: #333;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
}

.product-card:hover .product-card-body h3 {
  color: #0089F7;
}

.product-card-body .arrow {
  width: 20px;
  height: auto;
  opacity: 0.5;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.product-card:hover .product-card-body .arrow {
  opacity: 1;
  transform: translateX(5px);
}

/* ===== Page Title Bar ===== */
.page-title-bar {
  padding: 150px 0 80px;
  background: linear-gradient(135deg, #161922, #1a2a40);
  text-align: center;
  position: relative;
}

.page-title-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0089F7, #00c6ff);
  border-radius: 2px;
}

.page-title-bar h1 {
  font-size: 48px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.page-title-bar p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 15px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Breadcrumb ===== */
.breadcrumb {
  background: #eef1f5;
  padding: 14px 0;
}

.breadcrumb .container {
  font-size: 13px;
  color: #666;
}

.breadcrumb a {
  color: #0089F7;
  transition: color 0.3s ease;
}

.breadcrumb a:hover {
  color: #006acc;
  text-decoration: underline;
}

.breadcrumb-sep {
  margin: 0 8px;
  color: #999;
}

.breadcrumb-current {
  font-weight: 600;
  color: #333;
}

/* ===== About / Contact Content ===== */
.content-section {
  position: relative;
  padding: 100px 0;
  background: url('../images/section-bg2.png') center center / cover no-repeat;
}

.content-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(247, 247, 247, 0.92);
}

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

.content-section h2 {
  font-size: 34px;
  font-weight: 700;
  color: #333;
  margin-bottom: 25px;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 15px;
}

.content-section h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #0089F7, #00c6ff);
  border-radius: 2px;
}

.content-section p {
  font-size: 17px;
  font-weight: 300;
  color: #626262;
  line-height: 1.8;
  margin-bottom: 15px;
  max-width: 800px;
}

.content-section a {
  color: #0089F7;
  transition: color 0.3s ease;
}

.content-section a:hover {
  color: #006acc;
}

/* ===== Product Table ===== */
.table-section {
  padding: 60px 0 100px;
  background: #f7f7f7;
}

.product-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  border-radius: 12px;
  overflow: hidden;
}

.product-table thead th {
  background: linear-gradient(135deg, #1e2a3a, #2a3f55);
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  padding: 18px 22px;
  text-align: left;
  letter-spacing: 0.5px;
}

.product-table tbody tr {
  border-bottom: 1px solid #eee;
  transition: background 0.2s ease;
}

.product-table tbody tr:last-child {
  border-bottom: none;
}

.product-table tbody tr:nth-child(even) {
  background: #f8fafb;
}

.product-table tbody tr:hover {
  background: rgba(91, 168, 217, 0.08);
}

.product-table tbody td {
  padding: 16px 22px;
  font-size: 15px;
  color: #444;
  vertical-align: top;
}

.product-table tbody td:first-child {
  font-weight: 600;
  color: #5ba8d9;
  white-space: nowrap;
}

.btn-quote:hover {
  background: #006acc;
  color: #fff;
  border-color: #006acc;
}

/* ===== Quote CTA ===== */
.quote-cta {
  text-align: center;
  margin-top: 50px;
}

.quote-cta p {
  font-size: 17px;
  font-weight: 300;
  color: #626262;
  margin-bottom: 20px;
}

/* ===== Footer ===== */
.site-footer {
  position: relative;
  padding: 60px 0 0;
  background: url('../images/footer-bg.jpg') center center / cover no-repeat;
  color: #fff;
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(22, 25, 34, 0.92), rgba(0, 60, 120, 0.85));
}

.site-footer .container {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-col h4 {
  font-family: 'Exo', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 18px;
  padding-bottom: 12px;
  position: relative;
}

.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: #0089F7;
  border-radius: 2px;
}

.footer-col p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  margin-bottom: 8px;
}

.footer-col a {
  color: rgba(255, 255, 255, 0.6);
  transition: color 0.3s ease;
}

.footer-col a:hover {
  color: #0089F7;
}

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

.footer-col ul li a {
  font-size: 14px;
}

.footer-bottom {
  margin-top: 40px;
  padding-bottom: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== Back to Top ===== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 52px;
  height: 52px;
  background: linear-gradient(135deg, #0089F7, #006acc);
  color: #fff;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 22px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 137, 247, 0.3);
}

.back-to-top.visible {
  display: flex;
}

.back-to-top:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 137, 247, 0.4);
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .hero-content h1 {
    font-size: 56px;
  }

  .section-title,
  .products-section-title {
    font-size: 36px;
  }

  .page-title-bar h1 {
    font-size: 44px;
  }
}

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

  .hero-content h1 {
    font-size: 46px;
  }

  html[lang="de"] .hero-content h1 {
    font-size: 40px;
  }

  .section-title,
  .products-section-title {
    font-size: 34px;
  }

  .page-title-bar h1 {
    font-size: 40px;
  }

  html[lang="de"] .page-title-bar h1 {
    font-size: 34px;
  }

  .content-section h2 {
    font-size: 28px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-number {
    font-size: 40px;
  }

  .main-nav > ul > li > a {
    padding: 15px 14px;
    letter-spacing: 0.5px;
  }
}

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
    order: 3;
  }

  .header-inner {
    flex-wrap: wrap;
  }

  .logo {
    order: 1;
  }

  .lang-switcher {
    order: 2;
    margin-left: auto;
    margin-right: 12px;
  }

  .main-nav {
    order: 4;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #161922;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }

  .main-nav.open {
    max-height: 500px;
  }

  .main-nav > ul {
    flex-direction: column;
    padding: 10px 0;
  }

  .main-nav > ul > li > a {
    padding: 12px 20px;
  }

  .main-nav > ul > li > a::after {
    display: none;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    border-top: none;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
  }

  .has-dropdown.open .dropdown {
    max-height: 300px;
  }

  .dropdown li a {
    padding-left: 40px;
  }

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

  .hero {
    min-height: 500px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .hero-content p {
    font-size: 16px;
  }

  .section-title,
  .products-section-title {
    font-size: 28px;
  }

  .page-title-bar {
    padding: 120px 0 50px;
  }

  .page-title-bar h1 {
    font-size: 32px;
  }

  .content-section h2 {
    font-size: 26px;
  }

  .content-section {
    padding: 70px 0;
  }

  .services-section,
  .products-section {
    padding: 70px 0;
  }

  .product-card-img {
    height: 220px;
  }

  .table-intro h2 {
    font-size: 24px;
  }

  /* Stats section responsive */
  .stats-section {
    padding: 50px 0;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .stat-number {
    font-size: 36px;
  }

  /* Footer responsive */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  /* Mobile card layout for tables */
  .product-table,
  .product-table thead,
  .product-table tbody,
  .product-table th,
  .product-table td,
  .product-table tr {
    display: block;
  }

  .product-table {
    border-radius: 12px;
    overflow: hidden;
  }

  .product-table thead {
    display: none;
  }

  .product-table tbody tr {
    margin-bottom: 16px;
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    background: #fff;
  }

  .product-table tbody tr:nth-child(even) {
    background: #fff;
  }

  .product-table tbody td {
    padding: 12px 18px;
    text-align: right;
    position: relative;
    padding-left: 45%;
    min-height: 44px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    border-bottom: 1px solid #f0f0f0;
  }

  .product-table tbody td:last-child {
    border-bottom: none;
  }

  .product-table tbody td::before {
    content: attr(data-label);
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    color: #333;
    letter-spacing: 0.5px;
  }

  .product-table tbody td:first-child {
    background: linear-gradient(135deg, #1e2a3a, #2a3f55);
    color: #fff;
    font-weight: 600;
    text-align: center;
    padding: 14px 18px;
    justify-content: center;
  }

  .product-table tbody td:first-child::before {
    display: none;
  }

  .product-table tbody td::before {
    white-space: normal;
  }

  html[lang="de"] .hero-content h1 {
    font-size: 30px;
  }

  html[lang="de"] .page-title-bar h1 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }

  .section-title,
  .products-section-title {
    font-size: 24px;
  }

  .page-title-bar h1 {
    font-size: 26px;
  }

  .btn {
    padding: 12px 25px;
    font-size: 13px;
  }

  .btn-quote {
    padding: 14px 30px;
    font-size: 14px;
  }

  .header-inner {
    padding: 12px 15px;
  }

  .logo img {
    height: 50px;
  }

  .content-section h2 {
    font-size: 22px;
  }

  .content-section h3 {
    font-size: 17px;
  }

  .info-box {
    padding: 20px 22px;
  }

  .table-intro h2 {
    font-size: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }

  .stat-number {
    font-size: 32px;
  }

  .stat-label {
    font-size: 12px;
  }

  .lang-switcher button {
    padding: 3px 6px;
    font-size: 11px;
  }

  html[lang="de"] .hero-content h1 {
    font-size: 24px;
  }

  html[lang="de"] .page-title-bar h1 {
    font-size: 22px;
  }
}

/* ===== Cookie Consent Banner ===== */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background: rgba(22, 25, 34, 0.97);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-top: 2px solid #0089F7;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-inner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 14px;
  line-height: 1.7;
  margin: 0;
}

.cookie-banner-inner a {
  color: #0089F7;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.cookie-banner-inner a:hover {
  color: #00c6ff;
}

.cookie-banner-actions {
  flex-shrink: 0;
}

.cookie-btn {
  display: inline-block;
  padding: 10px 28px;
  background: #0089F7;
  color: #fff;
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #0089F7;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: transparent;
  color: #fff;
}

@media (max-width: 768px) {
  .cookie-banner-inner {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
}

/* ===== Privacy Policy Page ===== */
.content-section h3 {
  font-size: 20px;
  font-weight: 600;
  color: #333;
  margin-top: 35px;
  margin-bottom: 15px;
}

.content-section ul.policy-list {
  list-style: none;
  padding: 0;
  margin: 10px 0 15px;
  max-width: 800px;
}

.content-section ul.policy-list li {
  position: relative;
  padding-left: 20px;
  font-size: 17px;
  font-weight: 300;
  color: #626262;
  line-height: 1.8;
  margin-bottom: 6px;
}

.content-section ul.policy-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 12px;
  width: 6px;
  height: 6px;
  background: #0089F7;
  border-radius: 50%;
}

.policy-effective-date {
  font-size: 14px;
  font-style: italic;
  color: #767676;
  margin-bottom: 20px;
}

/* Privacy Policy scoped overrides */
.content-section.policy-content h2 {
  text-transform: none;
  font-size: 26px;
  margin-top: 50px;
}

.content-section.policy-content h2::after {
  display: none;
}

/* TOC */
.policy-toc {
  background: #fff;
  border-left: 4px solid #0089F7;
  border-radius: 0 12px 12px 0;
  padding: 30px 35px;
  margin: 25px 0 40px;
  max-width: 800px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.policy-toc h3 {
  font-size: 18px;
  font-weight: 600;
  color: #333;
  margin: 0 0 15px;
}

.policy-toc ol {
  list-style: decimal;
  padding-left: 20px;
  margin: 0;
}

.policy-toc ol li {
  margin-bottom: 6px;
  font-size: 15px;
  line-height: 1.8;
  color: #626262;
}

.policy-toc ol li a {
  color: #0089F7;
  transition: color 0.3s ease;
}

.policy-toc ol li a:hover {
  color: #006acc;
}

/* Inline code */
.content-section code {
  background: #f0f2f5;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 0.875em;
  font-family: 'Courier New', Courier, monospace;
}

/* Policy list strong emphasis */
.content-section ul.policy-list li strong {
  font-weight: 600;
  color: #333;
}

/* ===== Footer Bottom Link ===== */
.footer-bottom a {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: #0089F7;
}

/* ===== Language Switcher ===== */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: 15px;
}

.lang-switcher button {
  background: transparent;
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  padding: 4px 8px;
  font-family: 'Exo', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.3s ease;
  line-height: 1;
}

.lang-switcher button:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.5);
}

.lang-switcher button.active {
  background: #0089F7;
  color: #fff;
  border-color: #0089F7;
}

/* ===== i18n Loading / Loaded ===== */
.i18n-loading {
  opacity: 0;
}

.i18n-loaded {
  opacity: 1;
  transition: opacity 0.15s ease;
}

/* ===== Long Text Adaptations ===== */
html:not([lang="en"]) .hero-content h1 {
  letter-spacing: 1px;
}

html:not([lang="en"]) .page-title-bar h1 {
  letter-spacing: 1px;
}

html:not([lang="en"]) .main-nav > ul > li > a {
  letter-spacing: 0.5px;
}

html[lang="de"] .hero-content h1 {
  font-size: 52px;
}

html[lang="de"] .page-title-bar h1 {
  font-size: 40px;
}

html[lang="de"] p,
html[lang="de"] td,
html[lang="de"] li {
  hyphens: auto;
  -webkit-hyphens: auto;
}

.product-card-body h3 {
  overflow-wrap: break-word;
  min-width: 0;
}

.stat-label {
  overflow-wrap: break-word;
  hyphens: auto;
  -webkit-hyphens: auto;
}
