:root {
    --maxw: 1440px;
    --pad: 32px;
    --header-h: 82px;
  
    --bg: #0c0c0c;
    --bg-soft: #151515;
    --text: #ffffff;
    --muted: rgba(255, 255, 255, 0.78);
    --line: rgba(255, 255, 255, 0.14);
  
    --accent: #c9a45c;
    --hover-blue: #38aae1;
    --active-orange: #f19000;
  }
  
  * {
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.5;
  }
  
  a {
    color: inherit;
    text-decoration: none;
  }
  
  img {
    max-width: 100%;
    display: block;
  }
  
  .container {
    width: min(var(--maxw), calc(100% - (var(--pad) * 2)));
    margin: 0 auto;
  }
  
  /* Header */
  .site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 50;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  
  .header-inner {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: stretch;
    gap: 28px;
    min-height: var(--header-h);
  }
  
  .logo-wrap {
    display: flex;
    align-items: center;
  }
  
  .logo-wrap a {
    display: flex;
    align-items: center;
    height: 100%;
  }
  
  .logo {
    width: 320px;
    max-width: 100%;
    height: auto;
  }
  
  /* Desktop navigation */
  .top-nav {
    display: flex;
    align-items: stretch;
    justify-content: center;
    height: 100%;
  }
  
  .top-nav > a,
  .top-nav > .nav-item > a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--header-h);
    padding: 0 24px;
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  
  .top-nav > a:hover,
  .top-nav > .nav-item > a:hover {
    background: var(--hover-blue);
    color: #ffffff;
  }
  
  .top-nav > a.active,
  .top-nav > .nav-item > a.active {
    background: var(--active-orange);
    color: #ffffff;
  }
  
  .nav-item {
    position: relative;
    display: flex;
    align-items: stretch;
  }
  
  .submenu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 420px;
    padding: 18px;
    background: rgba(12, 12, 12, 0.82);
    border: 1px solid rgba(255,255,255,0.12);
    border-top: 0;
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 40px rgba(0,0,0,0.35);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    z-index: 1200;
  }
  
  .nav-item.has-submenu:hover .submenu
  /* .nav-item.has-submenu:focus-within .submenu */ {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  
  .submenu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 24px;
  }
  
  .submenu-link {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 0;
    border-radius: 0;
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,0.12);
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    transition: color 0.2s ease, border-color 0.2s ease;
  }
  
  .submenu-link:hover {
    color: #38aae1;
    border-color: #38aae1;
  }
  
  /* Right side */
  .header-right {
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    min-width: 230px;
    padding-top: 10px;
  }
  
  .header-side {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: center;
    gap: 10px;
    padding: 10px 0;
  }

  .lang-switch {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 3;
  }
  
  .lang-switch a {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    transition: 0.2s ease;
  }
  
  .lang-switch a:hover {
    border-color: var(--hover-blue);
    color: var(--hover-blue);
  }
  
  .lang-switch a.active {
    background: var(--active-orange);
    border-color: var(--active-orange);
    color: #ffffff;
  }
  
  .partner-logos {
    position: absolute;
    top: 120px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 18px;
    z-index: 2;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.25s ease;
  }
  
  .partner-logos.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
  }
  
  .partner-logo-link {
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    opacity: 0.95;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }
  
  .partner-logo-link:hover {
    opacity: 1;
    transform: translateX(-3px);
  }
  
  .partner-logo-img {
    width: 195px;
    height: auto;
    display: block;
  }

  /* Burger */
  .burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    position: relative;
  }
  
  .burger {
    margin-left: 14px;
  }
  
  .burger span {
    position: absolute;
    left: 10px;
    right: 10px;
    height: 2px;
    background: #ffffff;
    transition: 0.25s ease;
  }
  
  .burger span:nth-child(1) {
    top: 13px;
  }
  
  .burger span:nth-child(2) {
    top: 21px;
  }
  
  .burger span:nth-child(3) {
    top: 29px;
  }
  
  .burger.active span:nth-child(1) {
    transform: rotate(45deg);
    top: 21px;
  }
  
  .burger.active span:nth-child(2) {
    opacity: 0;
  }
  
  .burger.active span:nth-child(3) {
    transform: rotate(-45deg);
    top: 21px;
  }
  
  /* Mobile panel */
  .mobile-panel {
    display: none;
    padding: 0 0 18px 0;
  }
  
  .mobile-panel.open {
    display: block;
  }
  
  .mobile-nav,
  .mobile-partners {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 14px;
  }
  
  .mobile-nav a,
  .mobile-partners a {
    padding: 12px 14px;
    border: 1px solid var(--line);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    color: #ffffff;
    font-weight: 600;
  }
  
  .mobile-nav a:hover,
  .mobile-partners a:hover {
    background: rgba(56, 170, 225, 0.18);
    border-color: rgba(56, 170, 225, 0.45);
  }
  


  .mobile-submenu {
    display: grid;
    gap: 8px;
    padding-top: 10px;
    padding-left: 12px;
  }
  
  .mobile-submenu-link {
    padding: 10px 12px;
    border-left: 2px solid rgba(255,255,255,0.14);
    color: rgba(255,255,255,0.86);
    font-size: 14px;
  }
  
  .mobile-submenu-link:hover {
    color: #38aae1;
    border-left-color: #38aae1;
  }



  /* Hero */
  .hero {
    position: relative;
    min-height: 100vh;
    overflow: hidden;
    z-index: 1;
  }
  
  .hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
      linear-gradient(rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.58)),
      url('/assets/background.jpg') center center / cover no-repeat;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 190px;
    padding-bottom: 120px;
  }
  
  .hero-box {
    width: min(900px, 100%);
    padding: 0;
    background: none;
    border: 0;
    backdrop-filter: none;
    border-radius: 0;
  }
  
  .hero h1 {
    margin: 0 0 22px;
    font-size: clamp(54px, 6vw, 96px);
    line-height: 0.98;
    letter-spacing: -0.04em;
    max-width: 900px;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.35);
  }
  
  .hero p {
    margin: 0 0 38px;
    font-size: clamp(20px, 1.8vw, 28px);
    line-height: 1.45;
    color: rgba(255, 255, 255, 0.9);
    max-width: 760px;
    text-shadow: 0 3px 18px rgba(0, 0, 0, 0.3);
  }
  
  .hero-actions {
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
  }
  
  /* Buttons */
  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 62px;
    padding: 0 34px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 17px;
    transition: 0.2s ease;
  }
  
  .btn-primary {
    background: var(--accent);
    color: #111111;
  }
  
  .btn-secondary,
  .btn-ghost {
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
  }
  
  .btn:hover {
    transform: translateY(-1px);
  }
  
  /* Partner bar */
  .partner-bar {
    position: relative;
    z-index: 2;
    margin-top: -74px;
  }
  
  .partner-inner {
    width: min(var(--maxw), calc(100% - (var(--pad) * 2)));
    margin: 0 auto;
    background: rgba(16, 16, 16, 0.88);
    border: 1px solid var(--line);
    border-radius: 18px;
    backdrop-filter: blur(8px);
    padding: 16px 22px;
    display: flex;
    align-items: center;
    gap: 18px;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  
  .partner-label {
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
  }
  
  .partner-nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    font-weight: 600;
  }
  
  .partner-nav a {
    transition: color 0.2s ease;
  }
  
  .partner-nav a:hover {
    color: var(--hover-blue);
  }
  
  /* Sections */
  .section {
    padding: 90px 0;
  }
  
  .section-dark {
    background: #141414;
  }
  
  .section-head {
    margin-bottom: 28px;
  }
  
  .section-kicker {
    color: var(--accent);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
  }
  
  .section h2,
  .section-title {
    margin: 0 0 12px;
    font-size: clamp(28px, 4vw, 42px);
  }
  
  .section p.lead,
  .section-sub {
    margin: 0;
    color: var(--muted);
    max-width: 800px;
  }
  
  /* Grids */
  .grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 22px;
    margin-top: 30px;
  }
  
  .grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 30px;
  }
  
  .grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    margin-top: 30px;
  }
  
  /* Cards */
  .card,
  .catalog-box,
  .news-box,
  .contact-box,
  .score-card,
  .media-placeholder,
  .tile,
  .trust-badge {
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 18px;
  }
  
  .card {
    padding: 26px;
  }
  
  .card h3,
  .card-title {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
  }
  
  .card p,
  .card-text {
    margin: 0;
    color: var(--muted);
  }
  
  .catalog-box,
  .news-box,
  .contact-box,
  .trust-badge {
    padding: 30px;
    margin-top: 28px;
  }
  
  /* Misc */
  .icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    margin-bottom: 14px;
    font-size: 18px;
  }
  
  .split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 32px;
    align-items: center;
  }
  
  .split-text p {
    color: var(--muted);
  }
  
  .split-img,
  .home-banner-img,
  .hero-img {
    width: 100%;
    border-radius: 18px;
    object-fit: cover;
  }
  
  .hero-frame {
    position: relative;
  }
  
  .hero-img {
    display: none;
  }
  
  .hero-overlay {
    position: relative;
    z-index: 2;
  }
  
  .split-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  
  .media-slot,
  .media-placeholder {
    margin-top: 28px;
    overflow: hidden;
  }
  
  .media-small {
    padding: 0;
  }
  
  .score-card {
    padding: 24px;
  }
  
  .score-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
  }
  
  .score-label,
  .score-hint,
  .muted {
    color: var(--muted);
  }
  
  .score-value {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    margin-top: 6px;
  }
  
  .tier-pill {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 14px;
    font-weight: 600;
  }
  
  .score-bar {
    width: 100%;
    height: 12px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    overflow: hidden;
    margin-bottom: 10px;
  }
  
  .score-fill {
    height: 100%;
    background: var(--accent);
    border-radius: 999px;
  }
  
  .score-meta {
    margin-top: 20px;
  }
  
  .meta-row {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    padding: 10px 0;
    border-top: 1px solid var(--line);
  }
  
  .bullets {
    margin: 20px 0 0;
    padding-left: 18px;
  }
  
  .bullets li {
    margin-bottom: 10px;
    color: var(--muted);
  }
  
  .chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
  }
  
  .chip {
    display: inline-flex;
    align-items: center;
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--line);
    color: #ffffff;
    font-size: 14px;
  }
  
  .tile {
    min-height: 120px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
  }
  
  .tile-icon {
    font-size: 28px;
  }
  
  .cta {
    text-align: center;
  }
  
  .cta-title {
    margin: 0 0 14px;
    font-size: clamp(30px, 4vw, 48px);
  }
  
  .cta-sub {
    margin: 0 auto 22px;
    max-width: 820px;
    color: var(--muted);
  }
  
  .cta-lines {
    display: grid;
    gap: 8px;
    margin-bottom: 26px;
    color: var(--muted);
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
  }
  
  /* Footer */
  footer {
    padding: 26px 0 40px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 14px;
  }
  

  /* Effekte */
  #dust {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
  }
  
  .hero-content {
    position: relative;
    z-index: 2;
  }



  .hero-welding {
    position: relative;
    overflow: hidden;
  }
  
  .hero-light-rays {
    position: absolute;
    top: 0;
    left: 15%;
    width: 72%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    opacity: 0.9;
    mix-blend-mode: screen;
    filter: blur(8px);
    animation: weldingLightPulse 4.2s linear infinite;
  }
  
  .hero-light-rays::before,
  .hero-light-rays::after {
    content: "";
    position: absolute;
    inset: 0;
  }
  
  /* Hauptstrahlen passend zum Fenster links oben */
  /* Hauptstrahlen passend zum Fenster links oben */
  .hero-light-rays::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
      linear-gradient(62deg,
        rgba(255,245,200,0.00) 0%,
        rgba(255,245,200,0.00) 21%,
        rgba(255,245,200,0.08) 24%,
        rgba(255,245,200,0.32) 27%,
        rgba(255,245,200,0.12) 31%,
        rgba(255,245,200,0.00) 36%
      ),
      linear-gradient(54deg,
        rgba(255,245,200,0.00) 0%,
        rgba(255,245,200,0.00) 28%,
        rgba(255,245,200,0.07) 32%,
        rgba(255,245,200,0.28) 35%,
        rgba(255,245,200,0.10) 39%,
        rgba(255,245,200,0.00) 45%
      ),
      linear-gradient(45deg,
        rgba(255,245,200,0.00) 0%,
        rgba(255,245,200,0.00) 37%,
        rgba(255,245,200,0.05) 41%,
        rgba(255,245,200,0.22) 44%,
        rgba(255,245,200,0.08) 47%,
        rgba(255,245,200,0.00) 53%
      );
    animation: raysA 3.8s linear infinite;
  }

/* weicher Lichtnebel im Fensterbereich */
.hero-light-rays::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(40deg,
      rgba(255,245,200,0.00) 0%,
      rgba(255,245,200,0.00) 46%,
      rgba(255,245,200,0.05) 50%,
      rgba(255,245,200,0.20) 54%,
      rgba(255,245,200,0.08) 57%,
      rgba(255,245,200,0.00) 62%
    ),
    linear-gradient(30deg,
      rgba(255,245,200,0.00) 0%,
      rgba(255,245,200,0.00) 54%,
      rgba(255,245,200,0.05) 63%,
      rgba(255,245,200,0.18) 70%,
      rgba(255,245,200,0.07) 77%,
      rgba(255,245,200,0.00) 82%
    ),
    radial-gradient(
      ellipse at 19% 14%,
      rgba(255,245,210,0.35) 0%,
      rgba(255,245,210,0.18) 18%,
      rgba(255,245,210,0.08) 34%,
      rgba(255,245,210,0.00) 58%
    );
  animation: raysB 5.1s linear infinite;
}

@keyframes raysA {
  0%   { opacity: 0.55; transform: translateX(0) translateY(0) scale(1); }
  20%  { opacity: 0.72; transform: translateX(2px) translateY(-1px) scale(1.01); }
  48%  { opacity: 0.92; transform: translateX(0) translateY(0) scale(1); }
  75%  { opacity: 0.68; transform: translateX(-2px) translateY(1px) scale(1.006); }
  100% { opacity: 0.55; transform: translateX(0) translateY(0) scale(1); }
}

@keyframes raysB {
  0%   { opacity: 0.48; transform: translateX(0) translateY(0) scale(1); }
  18%  { opacity: 0.66; transform: translateX(-1px) translateY(1px) scale(1.008); }
  43%  { opacity: 0.84; transform: translateX(2px) translateY(-1px) scale(1.012); }
  70%  { opacity: 0.60; transform: translateX(0) translateY(0) scale(1.004); }
  100% { opacity: 0.48; transform: translateX(0) translateY(0) scale(1); }
}






/* Home blur */



.intro-section,
.knowhow-section {
  position: relative;
}

.text-stage {
  max-width: 1320px;
}

.stage-title {
  margin: 0 0 10px;
  font-size: clamp(34px, 4.2vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.03em;
  max-width: 980px;
}

.stage-claim {
  margin-bottom: 34px;
  color: var(--accent);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.text-columns {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.8fr);
  gap: 42px;
  align-items: start;
}

.text-main p {
  margin: 0 0 20px;
  font-size: 19px;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
  max-width: 850px;
}

.text-side {
  display: grid;
  gap: 16px;
}

.fact-card,
.metric-box {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 22px 22px;
  backdrop-filter: blur(8px);
}

.fact-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 8px;
}

.fact-value {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
}

.metric-number {
  font-size: 54px;
  line-height: 1;
  font-weight: 800;
  color: #fff;
  margin-bottom: 8px;
}

.metric-text {
  font-size: 16px;
  color: rgba(255,255,255,0.80);
}

.dotted-divider {
  margin-top: 56px;
  height: 1px;
  background-image: linear-gradient(
    to right,
    rgba(255,255,255,0.24) 0,
    rgba(255,255,255,0.24) 33%,
    transparent 33%,
    transparent 100%
  );
  background-size: 12px 1px;
  background-repeat: repeat-x;
  opacity: 0.75;
}


.reveal-blur {
  opacity: 0;
  filter: blur(10px);
  transform: translateY(32px);
  transition:
    opacity 0.85s ease,
    filter 0.85s ease,
    transform 0.85s ease;
  will-change: opacity, filter, transform;
}

.reveal-blur.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}


.logo-slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  align-items: center;
}

.logo-slider img {
  height: 60px;
  opacity: 0.8;
  transition: 0.2s;
}

.logo-slider img:hover {
  opacity: 1;
}



/* ===== Home compact layout ===== */
.compact-home-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.compact-home-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(360px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.compact-head {
  margin-bottom: 22px;
}

.angebot-panel,
.owner-panel,
.compact-info-card,
.compact-empty-state {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 22px;
}

.angebot-panel,
.owner-panel {
  padding: 24px;
}

.angebot-image-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.angebot-tile {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #111;
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 1 / 1;
}

.angebot-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.angebot-tile:hover img {
  transform: scale(1.06);
}

.angebot-tile-title {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  z-index: 2;
  padding: 10px 14px;
  background: rgba(0,0,0,0.52);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  border-radius: 12px;
  backdrop-filter: blur(6px);
}

.angebot-tile-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  background: linear-gradient(to top, rgba(0,0,0,0.86), rgba(0,0,0,0.18));
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 3;
}

.angebot-tile:hover .angebot-tile-overlay,
.angebot-tile:focus .angebot-tile-overlay {
  transform: translateY(0);
}

.angebot-tile-overlay-inner {
  width: 100%;
  padding: 18px;
}

.angebot-tile-overlay h3 {
  margin: 0 0 8px;
  font-size: 22px;
  line-height: 1.1;
}

.angebot-tile-overlay p {
  margin: 0;
  color: rgba(255,255,255,0.86);
  font-size: 15px;
  line-height: 1.5;
}

.owner-panel {
  overflow: hidden;
  padding: 0;
}

.owner-panel-media {
  position: relative;
  aspect-ratio: 16 / 10;
  background: #161616;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.owner-panel-media img,
.owner-panel-placeholder {
  width: 100%;
  height: 100%;
}

.owner-panel-media img {
  object-fit: cover;
}

.owner-panel-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 24px;
  color: rgba(255,255,255,0.62);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02)),
    repeating-linear-gradient(-45deg, rgba(255,255,255,0.04), rgba(255,255,255,0.04) 14px, transparent 14px, transparent 28px);
}

.owner-panel-content {
  padding: 24px;
}

.owner-panel-content h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1.08;
}

.owner-panel-content h3 {
  margin: 20px 0 10px;
  font-size: 22px;
}

.owner-panel-content p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.84);
}

.owner-benefits {
  list-style: none;
  margin: 18px 0 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.owner-benefits li {
  position: relative;
  padding-left: 18px;
  color: rgba(255,255,255,0.92);
}

.owner-benefits li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent);
}

.compact-duo-section {
  padding-top: 0;
  padding-bottom: 72px;
}

.compact-duo-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.compact-info-card {
  padding: 24px;
}

.compact-info-card h2 {
  margin: 0 0 12px;
  font-size: clamp(26px, 3vw, 36px);
}

.compact-info-card p {
  margin: 0;
  color: rgba(255,255,255,0.82);
}

.text-link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 18px;
  font-weight: 700;
  color: var(--accent);
}

.text-link-arrow::after {
  content: "→";
  transition: transform 0.2s ease;
}

.text-link-arrow:hover::after {
  transform: translateX(3px);
}

.home-logo-slider {
  overflow: hidden;
  position: relative;
  padding: 14px 0;
  mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, #000 8%, #000 92%, transparent);
}

.home-logo-track {
  display: flex;
  align-items: center;
  gap: 22px;
  width: max-content;
  animation: homeLogoScroll 34s linear infinite;
}

.home-logo-slider:hover .home-logo-track {
  animation-play-state: paused;
}

.home-logo-item {
  flex: 0 0 auto;
  width: 180px;
  height: 92px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(0,0,0,0.08);
}

.home-logo-item img {
  max-width: 100%;
  max-height: 58px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(100%);
  opacity: 0.86;
  transition: filter 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.home-logo-item:hover img {
  filter: grayscale(0%);
  opacity: 1;
  transform: scale(1.03);
}

.compact-empty-state {
  padding: 24px;
}

.compact-empty-state p {
  margin: 0;
}

@keyframes homeLogoScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1200px) {
  .compact-home-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .angebot-image-grid,
  .compact-duo-grid {
    grid-template-columns: 1fr;
  }

  .angebot-panel,
  .owner-panel-content,
  .compact-info-card {
    padding: 18px;
  }

  .compact-home-section,
  .compact-duo-section {
    padding-bottom: 56px;
  }
}

/* Angebot sektion  */
.angebot-head {
  margin-bottom: 26px;
}

.angebot-head .lead {
  display: none;
}

.angebot-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(280px, 0.85fr);
  gap: 28px;
  align-items: start;
}

.angebot-main {
  display: grid;
  gap: 22px;
}

.angebot-row {
  display: grid;
  gap: 22px;
}

.angebot-row-top {
  grid-template-columns: repeat(2, 1fr);
}

.angebot-row-bottom {
  grid-template-columns: repeat(4, 1fr);
}

.angebot-tile {
  display: block;
}

.angebot-image-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.14);
  background: #111;
}

.angebot-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.angebot-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px 16px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.1;
  z-index: 2;
}

.angebot-row-bottom .angebot-label {
  font-size: 18px;
  padding: 12px 14px;
}

.angebot-overlay {
  position: absolute;
  inset: 0;
  padding: 20px 18px;
  background: rgba(0,0,0,0.78);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 3;
}

.angebot-overlay-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 10px;
}

.angebot-row-bottom .angebot-overlay-title {
  font-size: 18px;
  margin-bottom: 8px;
}

.angebot-overlay-text {
  font-size: 16px;
  line-height: 1.45;
  color: rgba(255,255,255,0.88);
}

.angebot-row-bottom .angebot-overlay-text {
  font-size: 14px;
  line-height: 1.35;
}

.angebot-tile:hover .angebot-overlay {
  transform: translateY(0);
}

.angebot-tile:hover .angebot-image {
  transform: scale(1.05);
}

.angebot-sidecard {
  background: #111;
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 20px;
  padding: 28px;
}

.angebot-sidecard h3 {
  margin: 0 0 14px;
  font-size: 40px;
  line-height: 1.05;
  color: #c9a45c;
  text-transform: uppercase;
}

.angebot-sidecard p {
  margin: 0 0 24px;
  color: rgba(255,255,255,0.78);
  font-size: 17px;
  line-height: 1.6;
}

.angebot-catalog-link {
  display: block;
}

.angebot-catalog-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
}


#angebot {
  overflow: hidden;
}

#angebot .angebot-layout {
  width: 100%;
  max-width: 100%;
}


/* Service sektion  */


.service-row {
  display: flex;
  gap: 28px;
  margin-top: 30px;
}

.service-item {
  flex: 1;
  padding: 26px;
  background: var(--bg-soft);
  border: 1px solid var(--line);
  border-radius: 18px;
  transition: 0.25s ease;
  display: flex;
  flex-direction: column;
}

.service-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.service-item h3 {
  margin: 0 0 10px;
  font-size: 22px;
  line-height: 1.2;
}

.service-item p {
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
  flex-grow: 1;
}

.service-item {
  backdrop-filter: blur(6px);
}


@media (max-width: 1100px) {
  .service-row {
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(50% - 14px);
  }
}

@media (max-width: 600px) {
  .service-item {
    flex: 1 1 100%;
  }
}




@media (max-width: 1100px) {
  .angebot-layout {
    grid-template-columns: 1fr;
  }

  .angebot-row-bottom {
    grid-template-columns: repeat(2, 1fr);
  }

  .angebot-sidecard {
    max-width: 540px;
  }
}


@media (max-width: 768px) {
  .angebot-row-top,
  .angebot-row-bottom {
    grid-template-columns: 1fr;
  }

  .angebot-label,
  .angebot-row-bottom .angebot-label {
    font-size: 22px;
  }

  .angebot-sidecard h3 {
    font-size: 30px;
  }
}

  /* Responsive */
  @media (max-width: 1100px) {
    .top-nav,
    .header-right .lang-switch {
      display: none;
    }
  
    .burger {
      display: block;
      align-self: center;
    }
  
    .grid-2,
    .grid-3,
    .grid-4,
    .split,
    .contact-grid {
      grid-template-columns: 1fr;
    }
  
    .header-inner {
      grid-template-columns: auto 1fr auto;
      min-height: 78px;
    }
  
    .logo {
      width: 240px;
    }
  
    .hero-content {
        padding-top: 150px;
        padding-bottom: 90px;
      }
  

    .partner-inner {
      margin-top: 0;
    }

    .partner-logos {
      display: none;
    }
  }
  
  @media (max-width: 768px) {
    :root {
      --pad: 18px;
      --header-h: 74px;
    }
  
    .logo {
      width: 190px;
    }
  
    .header-inner {
      min-height: 74px;
    }
  
    .hero-content {
      padding-top: 120px;
      padding-bottom: 50px;
    }
  
    .section {
      padding: 70px 0;
    }
  
    .partner-nav {
      gap: 12px;
      font-size: 14px;
    }
  
    .hero-actions {
      flex-direction: column;
      align-items: stretch;
    }
  
    .btn {
      width: 100%;
    }
  
    .hero-content {
        padding-top: 125px;
        padding-bottom: 70px;
      }
      
      .hero h1 {
        font-size: clamp(40px, 9vw, 62px);
        line-height: 1.02;
      }
      
      .hero p {
        font-size: 18px;
      }
      
      .hero-actions {
        flex-direction: column;
        align-items: stretch;
      }

      .hero-light-rays {
        display: none;
      }

      @media (max-width: 768px) {
        .text-columns {
          grid-template-columns: 1fr;
          gap: 22px;
        }
      
        .text-main {
          max-width: 100%;
        }
      
        .text-side {
          grid-template-columns: 1fr;
        }
      
        .text-main p {
          max-width: 100%;
          font-size: 18px;
          line-height: 1.65;
        }
      
        .fact-card,
        .metric-box {
          padding: 18px;
        }
      
        .fact-value {
          font-size: 20px;
        }
      
        .metric-number {
          font-size: 42px;
        }
      }
  }



  
  @media (max-width: 480px) {
    .logo {
      width: 160px;
    }
  
    .hero-content {
        padding-top: 110px;
      }
      
      .hero h1 {
        font-size: clamp(34px, 10vw, 48px);
      }
      
      .hero p {
        font-size: 16px;
      }
  }



    /* Logo Section */


  #partnerlogos .section-head {
    margin-bottom: 26px;
  }
  
  .logo-box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    border-radius: 22px;
    padding: 24px 20px;
    border: 1px solid rgba(0,0,0,0.08);
    overflow: hidden;
  }
  
  .logo-slider-wrap {
    flex: 1;
    overflow: hidden;
  }
  
  .logo-slider-track {
    display: flex;
    gap: 18px;
    transition: transform 0.35s ease;
    will-change: transform;
  }
  
  .logo-slide {
    flex: 0 0 calc((100% - (18px * 7)) / 8);
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    border-radius: 14px;
    background: #ffffff;
  }
  
  .logo-slide img {
    max-width: 100%;
    max-height: 56px;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
  }
  
  .logo-nav {
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    border: 0;
    border-radius: 999px;
    background: #f1f1f1;
    color: #222;
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
  }
  
  .logo-nav:hover {
    background: #e7e7e7;
    transform: scale(1.04);
  }
  
  @media (max-width: 1200px) {
    .logo-slide {
      flex: 0 0 calc((100% - (18px * 5)) / 6);
    }
  }
  
  @media (max-width: 900px) {
    .logo-slide {
      flex: 0 0 calc((100% - (18px * 3)) / 4);
    }
  }
  
  @media (max-width: 640px) {
    .logo-box {
      gap: 10px;
      padding: 16px 12px;
    }
  
    .logo-slide {
      flex: 0 0 calc((100% - 18px) / 2);
      height: 78px;
    }
  
    .logo-slide img {
      max-height: 42px;
    }
  
    .logo-nav {
      width: 36px;
      height: 36px;
      flex: 0 0 36px;
      font-size: 18px;
    }
  }



 /* FACEBOOK NEWS */



  .news-strip {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }
  
  .news-card-fb {
    flex: 0 0 calc((100% - 44px) / 3);
    min-width: 320px;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 20px;
    overflow: hidden;
    scroll-snap-align: start;
  }
  
  .news-card-fb-image {
    aspect-ratio: 16 / 10;
    background: #111;
  }
  
  .news-card-fb-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
  .news-card-fb-body {
    padding: 22px;
  }
  
  .news-card-fb-date {
    margin-bottom: 10px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--accent);
  }
  
  .news-card-fb-body p {
    margin: 0 0 16px;
    color: var(--muted);
    line-height: 1.6;
  }
  
  @media (max-width: 1100px) {
    .news-card-fb {
      flex: 0 0 calc((100% - 22px) / 2);
    }
  }
  
  @media (max-width: 768px) {
    .news-card-fb {
      flex: 0 0 85%;
      min-width: 280px;
    }
  }



 /* NEWS */




 .news-strip_news_cssstyle {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}

.news-card_news_cssstyle {
  position: relative;
  display: flex;
  flex-direction: row;
  width: calc(50% - 12px);
  min-height: 220px;
  background: #161616;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.news-card_news_cssstyle:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 30px rgba(0,0,0,0.24);
}

.news-card_news_cssstyle.is-fixed_news_cssstyle {
  background: linear-gradient(180deg, #1d1a14 0%, #161616 100%);
  border: 1px solid rgba(214, 164, 74, 0.45);
  box-shadow:
      0 0 0 1px rgba(214, 164, 74, 0.10),
      0 18px 35px rgba(0,0,0,0.34);
}

.news-pin_news_cssstyle {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(214, 164, 74, 0.18);
  border: 1px solid rgba(214, 164, 74, 0.40);
  color: #d6a44a;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 14px rgba(0,0,0,0.25);
}

.news-media_news_cssstyle {
  width: 180px;
  min-width: 180px;
  background: #222;
  overflow: hidden;
}

.news-thumb-link_news_cssstyle {
  display: block;
  width: 100%;
  height: 100%;
}

.news-thumb_news_cssstyle {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
}

.news-noimage_news_cssstyle {
  width: 100%;
  height: 100%;
  min-height: 220px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)), #2a2a2a;
  color: rgba(255,255,255,0.72);
  text-align: center;
  font-size: 14px;
}

.news-body_news_cssstyle {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px;
}

.news-date_news_cssstyle {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}

.news-card_news_cssstyle.is-fixed_news_cssstyle .news-date_news_cssstyle {
  color: #f0cf8b;
}

.news-textwrap_news_cssstyle {
  flex: 1;
}

.news-text_news_cssstyle,
.news-text-full_news_cssstyle {
  color: #fff;
  line-height: 1.65;
  margin: 0;
}

.news-card_news_cssstyle.is-fixed_news_cssstyle .news-text_news_cssstyle,
.news-card_news_cssstyle.is-fixed_news_cssstyle .news-text-full_news_cssstyle {
  color: #fff7e8;
}

.news-actions_news_cssstyle {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 18px;
}

.news-link_news_cssstyle,
.news-download_news_cssstyle {
  color: #d6a44a;
  text-decoration: none;
  font-weight: 600;
}

.news-link_news_cssstyle:hover,
.news-download_news_cssstyle:hover {
  color: #f0cf8b;
}


.news-image-modal_news_cssstyle {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.82);
  z-index: 99999;
  padding: 20px;
}

.news-image-modal_news_cssstyle.is-open_news_cssstyle {
  display: flex;
}

.news-image-modal-inner_news_cssstyle {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}

.news-image-modal-inner_news_cssstyle img {
  display: block;
  max-width: 90vw;
  max-height: 90vh;
  width: auto;
  height: auto;
  border-radius: 14px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.news-modal-close_news_cssstyle {
  position: absolute;
  top: -14px;
  right: -14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(0,0,0,0.35);
}


@media (max-width: 991px) {
  .news-card_news_cssstyle {
      width: 100%;
  }
}

@media (max-width: 680px) {
  .news-card_news_cssstyle {
      flex-direction: column;
  }

  .news-media_news_cssstyle {
      width: 100%;
      min-width: 100%;
      height: 220px;
  }

  .news-thumb_news_cssstyle,
  .news-noimage_news_cssstyle {
      min-height: 220px;
  }
}


/* Kontakt */

.kontakt-layout_kontakt_cssstyle {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 32px;
  align-items: start;
}

.kontakt-card_kontakt_cssstyle {
  background: #111214;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 12px 32px rgba(0,0,0,0.18);
}

.kontakt-card-title_kontakt_cssstyle {
  margin: 0 0 12px 0;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.kontakt-card-title-space_kontakt_cssstyle {
  margin-top: 34px;
}

.kontakt-card-intro_kontakt_cssstyle {
  margin: 0 0 28px 0;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

.kontakt-form_kontakt_cssstyle {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.kontakt-field_kontakt_cssstyle label {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
  color: #fff;
}

.kontakt-field_kontakt_cssstyle label span {
  color: #d6a44a;
}

.kontakt-field_kontakt_cssstyle input,
.kontakt-field_kontakt_cssstyle textarea {
  width: 100%;
  border: 1px solid rgba(255,255,255,0.14);
  background: #18191c;
  color: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  font: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.kontakt-field_kontakt_cssstyle textarea {
  min-height: 220px;
  resize: vertical;
}

.kontakt-field_kontakt_cssstyle input:focus,
.kontakt-field_kontakt_cssstyle textarea:focus {
  outline: none;
  border-color: rgba(214,164,74,0.7);
  box-shadow: 0 0 0 3px rgba(214,164,74,0.12);
}

.kontakt-small-field_kontakt_cssstyle {
  max-width: 220px;
}

.kontakt-actions_kontakt_cssstyle {
  padding-top: 4px;
}

.kontakt-submit_kontakt_cssstyle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 999px;
  background: #d6a44a;
  color: #111;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.kontakt-submit_kontakt_cssstyle:hover {
  transform: translateY(-2px);
  background: #e3b45c;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
}

.kontakt-honeypot_kontakt_cssstyle {
  position: absolute;
  left: -9999px;
  top: -9999px;
  opacity: 0;
  pointer-events: none;
}

.kontakt-info-wrap_kontakt_cssstyle {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.kontakt-info-card_kontakt_cssstyle {
  padding: 26px 28px;
}

.kontakt-company_kontakt_cssstyle {
  margin: 0 0 22px 0;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 500;
}

.kontakt-info-grid_kontakt_cssstyle {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.kontakt-info-left_kontakt_cssstyle p,
.kontakt-info-right_kontakt_cssstyle p {
  margin: 0 0 18px 0;
  line-height: 1.65;
  color: rgba(255,255,255,0.9);
}

.kontakt-info-left_kontakt_cssstyle a {
  color: #fff;
  text-decoration: none;
}

.kontakt-info-left_kontakt_cssstyle a:hover {
  color: #d6a44a;
}

.kontakt-timebox_kontakt_cssstyle {
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 14px;
  background: #18191c;
  line-height: 1.7;
  color: rgba(255,255,255,0.88);
  margin-bottom: 12px;
}

.kontakt-timebox_kontakt_cssstyle strong {
  display: inline-block;
  margin-bottom: 4px;
  color: #fff;
}

@media (min-width: 1200px) {
  .kontakt-info-grid_kontakt_cssstyle {
      grid-template-columns: 1fr 1fr;
      gap: 26px;
  }
}

@media (max-width: 991px) {
  .kontakt-layout_kontakt_cssstyle {
      grid-template-columns: 1fr;
  }

  .kontakt-card-title_kontakt_cssstyle {
      font-size: 34px;
  }
}

@media (max-width: 640px) {
  .kontakt-card_kontakt_cssstyle {
      padding: 22px 18px;
      border-radius: 18px;
  }

  .kontakt-card-title_kontakt_cssstyle {
      font-size: 28px;
  }

  .kontakt-small-field_kontakt_cssstyle {
      max-width: 100%;
  }
}


/* Sortiment */

/* =========================
   UNTERSEITEN HERO
========================= */

.sub-hero {
  position: relative;
  min-height: 100vh;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
}

.sub-hero--sortiment {
  background-image: url('/assets/sortiment_hero.jpg');
}

.sub-hero--maschinen {
  background-image: url('/assets/maschinen_hero.jpg');
}

.sub-hero--aktionen {
  background-image: url('/assets/aktionen_hero.jpg');
}


.sub-hero--gase {
  background-image: url('/assets/gase_hero.jpg');
}

.sub-hero--zertifizierung {
  background-image: url('/assets/zertifizierung_hero.jpg');
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  width: 100%;
}

.hero-inner-top {
  align-items: flex-start;
  padding-top: 150px;
  padding-bottom: 60px;
}

.sub-hero .container {
  width: min(1280px, calc(100% - 64px));
  margin: 0 auto;
}

.sortiment-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 820px) 280px;
  justify-content: space-between;
  align-items: start;
  gap: 40px;
  width: 100%;
}

.hero-text-box {
  width: 100%;
  max-width: 820px;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 34px 36px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  justify-self: start;
}

.hero-text-box h1 {
  margin: 0 0 14px 0;
  font-size: 56px;
  line-height: 1.05;
  color: #fff;
}

.hero-text-box h2 {
  margin: 0 0 26px 0;
  font-size: 24px;
  line-height: 1.2;
  color: #d6a44a;
  font-weight: 500;
}

.hero-text-box p {
  margin: 0 0 18px 0;
  font-size: 19px;
  line-height: 1.75;
  color: rgba(255,255,255,0.94);
}

.hero-text-box a {
  color: #fff;
  font-weight: 700;
  text-decoration: none;
}

.hero-text-box a:hover {
  color: #d6a44a;
}

.sortiment-contact-note {
  margin-top: 10px;
}

.sortiment-side {
  width: 100%;
  max-width: 280px;
  justify-self: end;
  position: sticky;
  top: 120px;
}

.katalog-box {
  background: rgba(0, 0, 0, 0.66);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.katalog-image {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
}

.katalog-link {
  display: inline-block;
  margin-top: 16px;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.katalog-link:hover {
  color: #d6a44a;
}

@media (max-width: 1100px) {
  .sortiment-hero-layout {
      grid-template-columns: 1fr;
  }

  .sortiment-side {
      max-width: 340px;
      justify-self: start;
      position: relative;
      top: auto;
  }
}

@media (max-width: 768px) {
  .sub-hero .container {
      width: min(100%, calc(100% - 32px));
  }

  .hero-inner-top {
      padding-top: 120px;
      padding-bottom: 40px;
  }

  .hero-text-box {
      padding: 24px 20px;
      border-radius: 18px;
  }

  .hero-text-box h1 {
      font-size: 38px;
  }

  .hero-text-box h2 {
      font-size: 20px;
      margin-bottom: 20px;
  }

  .hero-text-box p {
      font-size: 17px;
      line-height: 1.65;
  }
}

.subpage-back-wrap {
  margin-top: 40px;
  padding-bottom: 40px;
}

.subpage-back-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(0,0,0,0.65);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.subpage-back-btn:hover {
  background: rgba(214,164,74,0.18);
  border-color: rgba(214,164,74,0.45);
  transform: translateY(-1px);
}

/* maschinen */

.maschinen-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.maschinen-box h2 {
  margin-bottom: 16px;
}

.maschinen-img {
  width: 100%;
  border-radius: 16px;
  margin-bottom: 16px;
}

@media (max-width: 900px) {
  .maschinen-top-grid {
    grid-template-columns: 1fr;
  }
}


.machine-note_news_cssstyle {
  margin: 6px 0 10px;
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255,255,255,0.72);


.maschinen-overlay-layout {
  display: flex;
  flex-direction: column;
  gap: 42px;
  width: 100%;
}

.maschinen-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.maschinen-box,
.maschinen-used-wrap {
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.maschinen-box h2 {
  margin: 0 0 18px 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.1;
}

.maschinen-box p {
  color: rgba(255,255,255,0.94);
  line-height: 1.75;
  margin: 0 0 18px 0;
  font-size: 18px;
}

.maschinen-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 18px;
  margin-bottom: 20px;
}

.maschinen-used-wrap .section-head {
  margin-bottom: 28px;
}

@media (max-width: 980px) {
  .maschinen-top-grid {
      grid-template-columns: 1fr;
  }
}
 
}


/*   aktionen */

.aktionen-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.aktionen-card {
  min-width: 0;
  width: 100%;
  background: rgba(0, 0, 0, 0.62);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.aktionen-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 60px rgba(0,0,0,0.32);
}

.aktionen-card-link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
}

.aktionen-card-image-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #111;
}

.aktionen-card-image {
  display: block;
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
}

.aktionen-card-noimage {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 420px;
  background: linear-gradient(135deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)), #2a2a2a;
  color: rgba(255,255,255,0.72);
  text-align: center;
  padding: 20px;
}

.aktionen-card-body {
  padding: 18px 20px 22px;
}

.aktionen-card-body h3 {
  margin: 0 0 10px 0;
  font-size: 22px;
  line-height: 1.3;
  color: #fff;
}

.aktionen-card-action {
  color: #d6a44a;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .aktionen-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .aktionen-grid {
      grid-template-columns: 1fr;
  }

  .aktionen-card-image,
  .aktionen-card-noimage {
      height: 360px;
  }
}



/* trockeneis */

/* TROCKENEIS */

.sub-hero--trockeneis {
  background-image: url('/assets/trockeneis_hero.jpg');
}

.trockeneis-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 40px;
  align-items: start;
}

.trockeneis-text-box {
  background: rgba(0,0,0,0.6);
  border-radius: 20px;
  padding: 30px;
  color: #fff;
}

.trockeneis-text-box h1 {
  font-size: 46px;
  margin-bottom: 20px;
}

.trockeneis-text-box h2 {
  margin-top: 25px;
  font-size: 22px;
  color: #d6a44a;
}

.trockeneis-text-box p {
  line-height: 1.6;
  margin-bottom: 15px;
}

.trockeneis-text-box ul {
  margin: 10px 0 20px 20px;
}

.trockeneis-text-box li {
  margin-bottom: 6px;
}

/* rechte Seite */
.trockeneis-side {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Logo */
.trockeneis-logo img {
  width: 100%;
  max-width: 260px;
}

/* Bilder */
.trockeneis-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.trockeneis-img-box {
  text-align: center;
}

.trockeneis-img-box img {
  width: 100%;
  border-radius: 14px;
}

.trockeneis-img-box span {
  display: block;
  margin-top: 6px;
  color: #fff;
  font-size: 14px;
}

.trockeneis-side-images {
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: 100%;
}

.trockeneis-img-box {
  width: 100%;
}

.trockeneis-img-box img {
  width: 100%;
  height: auto;
  border-radius: 16px;
  display: block;
}

.trockeneis-img-label {
  text-align: center;
  margin-top: 6px;
  font-size: 14px;
  color: rgba(255,255,255,0.8);
}



/* MOBILE */
@media (max-width: 900px) {
  .trockeneis-layout {
    grid-template-columns: 1fr;
  }

  .trockeneis-side {
    align-items: center;
  }
}


