/* ============================================================
   DIRK SCHUMANN GMBH — Stylesheet v2.0
   Corporate Redesign 2026
   Design: Clean & Professional · BlissPro · Navy + Red
============================================================ */

/* ─── 1. CSS CUSTOM PROPERTIES ──────────────────────────── */
:root {
  /* Brand Colors */
  --c-navy:        #2d384a;
  --c-navy-dark:   #1a2535;
  --c-navy-deeper: #0f1b2d;
  --c-red:         #9d1426;
  --c-red-hover:   #7d0f1e;

  /* Neutral Palette */
  --c-white:       #ffffff;
  --c-bg:          #f4f6f9;
  --c-bg-alt:      #edf0f5;
  --c-text:        #2d3748;
  --c-text-muted:  #64748b;
  --c-border:      #dde2ea;
  --c-border-light:#e8ecf2;

  /* Typography */
  --font-display:  'BlissPro', 'Raleway', sans-serif;
  --font-body:     'Open Sans', system-ui, sans-serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;

  /* Layout */
  --container: 1240px;
  --nav-h:     80px;

  /* Shadows */
  --shadow-sm:  0 1px 4px rgba(15,27,45,0.08);
  --shadow-md:  0 4px 16px rgba(15,27,45,0.12);
  --shadow-lg:  0 8px 32px rgba(15,27,45,0.18);
  --shadow-xl:  0 16px 48px rgba(15,27,45,0.22);

  /* Radii */
  --r-sm:   3px;
  --r-md:   6px;
  --r-lg:   12px;

  /* Transitions */
  --t-fast: 0.2s ease;
  --t-std:  0.3s ease;
  --t-slow: 0.5s ease;
}

/* ─── 2. RESET & BASE ────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol { list-style: none; }

input, textarea, select, button {
  font: inherit;
  border: none;
  outline: none;
  background: none;
}

/* ─── 3. TYPOGRAPHY ──────────────────────────────────────── */
@font-face {
  font-family: 'BlissPro';
  src: url('../assets/fonts/BlissPro-Bold.ttf') format('truetype');
  font-weight: 700;
  font-display: swap;
}
@font-face {
  font-family: 'BlissPro';
  src: url('../assets/fonts/BlissPro-Regular.ttf') format('truetype');
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: 'BlissPro';
  src: url('../assets/fonts/bliss-pro-light.ttf') format('truetype');
  font-weight: 300;
  font-display: swap;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--c-navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); font-weight: 400; }
h4 { font-size: 1.15rem; font-weight: 700; }
h5 { font-size: 1rem; font-weight: 700; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

strong { font-weight: 700; }

.text-muted { color: var(--c-text-muted); }
.text-white { color: var(--c-white); }
.text-navy  { color: var(--c-navy); }
.text-red   { color: var(--c-red); }
.text-center { text-align: center; }

/* ─── 4. LAYOUT ──────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-xl) 0;
}
.section--sm  { padding: var(--space-lg) 0; }
.section--lg  { padding: var(--space-2xl) 0; }
.section--dark {
  background: var(--c-navy-dark);
  color: var(--c-white);
}
.section--dark h2,
.section--dark h3 { color: var(--c-white); }
.section--bg { background: var(--c-bg); }
.section--alt { background: var(--c-bg-alt); }

.grid-2 { display: grid; grid-template-columns: 1fr; gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: 1fr; gap: var(--space-md); }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-md); }

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

.flex      { display: flex; }
.flex-col  { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center  { justify-content: center; }
.gap-sm  { gap: var(--space-sm); }
.gap-md  { gap: var(--space-md); }

/* Section Header */
.section-header {
  margin-bottom: var(--space-xl);
  text-align: center;
}
.section-header .label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.862rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: var(--space-xs);
}
.section-header h2 { margin-bottom: var(--space-sm); }
.section-header p {
  font-size: 1.05rem;
  color: var(--c-text-muted);
  max-width: 640px;
  margin: 0 auto;
}
.section--dark .section-header p { color: rgba(255,255,255,0.65); }

/* Divider Line */
.section-line {
  width: 50px;
  height: 3px;
  background: var(--c-red);
  margin: var(--space-sm) auto 0;
}
.section-line--left { margin-left: 0; }

/* ─── 5. NAVIGATION ──────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: var(--c-white);
  border-bottom: 1px solid var(--c-border-light);
  box-shadow: var(--shadow-sm);
  transition: background var(--t-std), box-shadow var(--t-std);
}

.nav.scrolled {
  box-shadow: var(--shadow-md);
}

.nav__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-md);
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav__logo img {
  height: 44px;
  width: auto;
}
.nav__logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-navy);
  line-height: 1.2;
  display: none;
}
@media (min-width: 480px) {
  .nav__logo-text { display: block; }
}

.nav__menu {
  display: none;
  align-items: center;
  gap: var(--space-xs);
}
@media (min-width: 900px) {
  .nav__menu { display: flex; }
}

.nav__item {
  position: relative;
}

.nav__link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 1.006rem;
  font-weight: 400;
  color: var(--c-navy);
  border-radius: var(--r-sm);
  transition: background var(--t-fast), color var(--t-fast);
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active {
  background: var(--c-bg);
  color: var(--c-red);
}
.nav__link svg { width: 12px; height: 12px; transition: transform var(--t-fast); }
.nav__item:hover .nav__link svg { transform: rotate(180deg); }

/* Dropdown */
.nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-lg);
  min-width: 240px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all var(--t-std);
  z-index: 100;
}
.nav__item:hover .nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav__dropdown a {
  display: block;
  padding: 10px 18px;
  font-size: 1.006rem;
  color: var(--c-text);
  transition: background var(--t-fast), color var(--t-fast), padding var(--t-fast);
  border-bottom: 1px solid var(--c-border-light);
}
.nav__dropdown a:last-child { border-bottom: none; }
.nav__dropdown a:hover {
  background: var(--c-bg);
  color: var(--c-red);
  padding-left: 24px;
}
.nav__dropdown a:first-child { border-radius: var(--r-md) var(--r-md) 0 0; }
.nav__dropdown a:last-child { border-radius: 0 0 var(--r-md) var(--r-md); }

/* Right side (lang + hamburger) */
.nav__right {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.lang-toggle {
  display: flex;
  align-items: center;
  border: 1px solid var(--c-border);
  border-radius: 20px;
  overflow: hidden;
  font-family: var(--font-display);
  font-size: 0.862rem;
  font-weight: 700;
}
.lang-btn {
  padding: 5px 10px;
  cursor: pointer;
  color: var(--c-text-muted);
  transition: background var(--t-fast), color var(--t-fast);
  letter-spacing: 0.05em;
}
.lang-btn.active {
  background: var(--c-navy);
  color: var(--c-white);
}

.hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px;
}
@media (min-width: 900px) { .hamburger { display: none; } }

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--c-navy);
  border-radius: 2px;
  transition: all var(--t-std);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.nav__mobile {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--c-white);
  overflow-y: auto;
  z-index: 999;
  padding: var(--space-md) var(--space-md) var(--space-xl);
  border-top: 1px solid var(--c-border-light);
}
.nav__mobile.open { display: block; }

.nav__mobile a {
  display: block;
  padding: 13px 16px;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  color: var(--c-navy);
  border-bottom: 1px solid var(--c-border-light);
  transition: color var(--t-fast), padding var(--t-fast);
}
.nav__mobile a:hover { color: var(--c-red); padding-left: 22px; }
.nav__mobile .mobile-group-title {
  font-size: 0.805rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  padding: var(--space-sm) 16px 4px;
}
.nav__mobile .sub-link {
  padding-left: 28px;
  font-size: 1.035rem;
  color: var(--c-text-muted);
}
.nav__mobile .sub-link:hover { color: var(--c-red); padding-left: 36px; }

/* Page offset for fixed nav */
.nav-offset { padding-top: var(--nav-h); }

/* ─── 6. BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  font-family: var(--font-display);
  font-size: 1.035rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: var(--r-sm);
  cursor: pointer;
  transition: all var(--t-std);
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-red);
  color: var(--c-white);
}
.btn--primary:hover {
  background: var(--c-red-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(157,20,38,0.35);
}
.btn--secondary {
  background: transparent;
  color: var(--c-white);
  border: 2px solid rgba(255,255,255,0.6);
}
.btn--secondary:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--c-white);
}
.btn--outline {
  background: transparent;
  color: var(--c-red);
  border: 2px solid var(--c-red);
}
.btn--outline:hover {
  background: var(--c-red);
  color: var(--c-white);
}
.btn--navy {
  background: var(--c-navy);
  color: var(--c-white);
}
.btn--navy:hover {
  background: var(--c-navy-dark);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn svg { width: 16px; height: 16px; flex-shrink: 0; }

/* ─── 7. HERO SECTION ────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero--medium { min-height: 60vh; }
.hero--small  { min-height: 45vh; }

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero__bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15,27,45,0.88) 0%,
    rgba(45,56,74,0.72) 50%,
    rgba(15,27,45,0.85) 100%
  );
}
.hero--light .hero__bg::after {
  background: linear-gradient(
    135deg,
    rgba(15,27,45,0.92) 0%,
    rgba(15,27,45,0.60) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 1;
  color: var(--c-white);
  max-width: 760px;
  padding: var(--space-xl) 0;
}

.hero__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.862rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: var(--space-md);
}
.hero__label::before {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: var(--c-red);
}

.hero h1 {
  color: var(--c-white);
  margin-bottom: var(--space-md);
  font-weight: 700;
}
.hero h1 span { color: var(--c-red); }

.hero__sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.80);
  margin-bottom: var(--space-lg);
  max-width: 580px;
  line-height: 1.65;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
}

/* Scroll indicator */
.hero__scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 0.805rem;
  letter-spacing: 0.1em;
  font-family: var(--font-display);
  animation: bounce 2s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* Page Header (for inner pages) */
.page-header {
  position: relative;
  padding: calc(var(--nav-h) + var(--space-xl)) 0 var(--space-xl);
  background: var(--c-navy-dark);
  overflow: hidden;
}
.page-header__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.2;
}
.page-header__content {
  position: relative;
  z-index: 1;
}
.page-header .label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 0.805rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: var(--space-xs);
}
.page-header h1 {
  color: var(--c-white);
  margin-bottom: var(--space-sm);
}
.page-header p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-sm);
}
.breadcrumb a { color: rgba(255,255,255,0.6); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--c-white); }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ─── 8. CARDS ───────────────────────────────────────────── */
.card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform var(--t-std), box-shadow var(--t-std);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.card__img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card__body {
  padding: var(--space-md);
}
.card__body h3 { margin-bottom: var(--space-xs); }
.card__body p { color: var(--c-text-muted); font-size: 1.035rem; }

.card__tag {
  display: inline-block;
  font-size: 0.805rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: 8px;
}

.card__footer {
  padding: var(--space-sm) var(--space-md);
  border-top: 1px solid var(--c-border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ─── 9. SERVICE CARDS ───────────────────────────────────── */
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  transition: all var(--t-std);
  position: relative;
  overflow: hidden;
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--c-red);
  transform: scaleX(0);
  transition: transform var(--t-std);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: transparent;
}
.service-card:hover::after { transform: scaleX(1); }

.service-card__icon {
  width: 56px;
  height: 56px;
  background: var(--c-bg);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.service-card__icon svg { width: 28px; height: 28px; color: var(--c-red); }
.service-card__icon img { width: 28px; height: 28px; object-fit: contain; }

.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0;
}
.service-card p {
  color: var(--c-text-muted);
  font-size: 1.035rem;
  flex: 1;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-red);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: auto;
  transition: gap var(--t-fast);
}
.service-card:hover .service-card__link { gap: 10px; }
.service-card__link svg { width: 14px; height: 14px; }

/* ─── 10. ABOUT SECTION ──────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}
@media (min-width: 900px) {
  .about-split { grid-template-columns: 1fr 1fr; }
  .about-split.reverse > *:first-child { order: 2; }
  .about-split.reverse > *:last-child  { order: 1; }
}

.about-img-wrap {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
}
.about-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.about-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--c-white);
  border-radius: var(--r-md);
  padding: 14px 18px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-img-badge .number {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-red);
  line-height: 1;
}
.about-img-badge .label-text {
  font-size: 0.862rem;
  color: var(--c-text-muted);
  line-height: 1.3;
}

.about-content .label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.862rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: var(--space-xs);
}
.about-content h2 { margin-bottom: var(--space-md); }
.about-content p { color: var(--c-text-muted); }

.check-list {
  margin: var(--space-md) 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 1.092rem;
  color: var(--c-text);
}
.check-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(157,20,38,0.1);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%239d1426' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-size: 12px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 1px;
}

/* ─── 11. STATS STRIP ────────────────────────────────────── */
/* ─── 11. TRUST BAND (Zertifikate) ──────────────────────── */
.trust-band {
  background: var(--c-navy-deeper);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}
.trust-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 40px,
    rgba(255,255,255,0.015) 40px,
    rgba(255,255,255,0.015) 80px
  );
  pointer-events: none;
}
.trust-band__eyebrow {
  text-align: center;
  font-family: var(--font-display);
  font-size: 0.828rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin: 0 0 var(--space-lg) 0;
}
.trust-band__grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.trust-card {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 36px;
  transition: background var(--t-fast);
  border-radius: 8px;
}
.trust-card:hover {
  background: rgba(255,255,255,0.05);
}
.trust-card__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
}
.trust-card__logo img {
  width: 64px;
  height: 64px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.trust-card__logo--text {
  /* SVG / text badge – no image filter */
}
.trust-iso-badge {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--c-red);
  letter-spacing: -0.02em;
  line-height: 1;
}
.trust-card__body {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.trust-card__body strong {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.trust-card__body span {
  font-size: 0.897rem;
  color: rgba(255,255,255,0.45);
  font-family: var(--font-display);
  line-height: 1.4;
  max-width: 160px;
}
.trust-divider {
  width: 1px;
  height: 56px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
  margin: 0 4px;
}
@media (max-width: 900px) {
  .trust-band__grid { gap: var(--space-sm); }
  .trust-divider { display: none; }
  .trust-card { padding: 14px 20px; }
}
@media (max-width: 600px) {
  .trust-band__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
  }
  .trust-card { padding: 16px 12px; }
  .trust-card__body span { max-width: none; }
}

/* ─── 12. NEWS CARDS ─────────────────────────────────────── */
.news-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-std), box-shadow var(--t-std);
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.news-card__img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.news-card__body {
  padding: var(--space-md);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.news-card__date {
  font-size: 0.862rem;
  color: var(--c-text-muted);
  font-family: var(--font-display);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.news-card__body h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
}
.news-card__body p {
  color: var(--c-text-muted);
  font-size: 1.006rem;
  flex: 1;
}
.news-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--c-red);
  margin-top: var(--space-sm);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  transition: gap var(--t-fast);
}
.news-card:hover .news-card__link { gap: 10px; }

/* ─── 13. CONTACT ────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 900px) {
  .contact-grid { grid-template-columns: 1fr 1.4fr; }
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  gap: var(--space-sm);
  align-items: flex-start;
}
.contact-item__icon {
  width: 44px;
  height: 44px;
  background: rgba(157,20,38,0.08);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.contact-item__icon svg { width: 20px; height: 20px; color: var(--c-red); }
.contact-item__label {
  font-size: 0.862rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: 2px;
}
.contact-item__value {
  color: var(--c-navy);
  font-weight: 400;
}
.contact-item__value a:hover { color: var(--c-red); }

.contact-form {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  padding: var(--space-lg);
  box-shadow: var(--shadow-sm);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}
@media (min-width: 600px) {
  .form-row { grid-template-columns: 1fr 1fr; }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.92rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--c-text-muted);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--c-border);
  border-radius: var(--r-md);
  font-size: 1.035rem;
  color: var(--c-text);
  background: var(--c-white);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--c-navy);
  box-shadow: 0 0 0 3px rgba(45,56,74,0.1);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group--full { grid-column: 1 / -1; }

.form-notice {
  font-size: 0.897rem;
  color: var(--c-text-muted);
  margin-top: var(--space-sm);
}
.form-notice a { color: var(--c-navy); text-decoration: underline; }

.hidden-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.form-error {
  background: #fdecec;
  border: 1px solid #f3b9b9;
  color: #b42318;
  font-size: 1.012rem;
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--r-sm);
  margin-bottom: var(--space-md);
}

/* ─── 14. FOOTER ─────────────────────────────────────────── */
.footer {
  background: var(--c-navy-deeper);
  color: var(--c-white);
}

.footer__top {
  padding: var(--space-xl) 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 640px) {
  .footer__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

.footer__logo img { height: 40px; width: auto; }
.footer__tagline {
  font-size: 1.006rem;
  color: rgba(255,255,255,0.55);
  margin-top: var(--space-sm);
  line-height: 1.6;
}

.footer__col h5 {
  font-family: var(--font-display);
  font-size: 0.862rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  margin-bottom: var(--space-md);
}
.footer__col ul { display: flex; flex-direction: column; gap: 8px; }
.footer__col ul li a {
  font-size: 1.006rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--t-fast);
}
.footer__col ul li a:hover { color: var(--c-white); }

.footer__contact-item {
  display: flex;
  gap: 10px;
  font-size: 1.006rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 10px;
}
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--c-red); margin-top: 3px; }
.footer__contact-item a { color: rgba(255,255,255,0.65); transition: color var(--t-fast); }
.footer__contact-item a:hover { color: var(--c-white); }

.footer__cert {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-top: var(--space-md);
  padding-top: var(--space-md);
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer__cert img { height: 56px; width: auto; filter: brightness(0) invert(1); opacity: 0.7; }

.footer__bottom {
  padding: var(--space-md) 0;
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-sm);
  align-items: center;
  justify-content: space-between;
  font-size: 0.897rem;
  color: rgba(255,255,255,0.35);
}
.footer__bottom a { color: rgba(255,255,255,0.45); transition: color var(--t-fast); }
.footer__bottom a:hover { color: var(--c-white); }
.footer__bottom-links { display: flex; gap: var(--space-md); flex-wrap: wrap; }

/* ─── 15. SERVICE DETAIL PAGES ───────────────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}
@media (min-width: 900px) {
  .service-detail-grid { grid-template-columns: 1fr 340px; }
}

.service-sidebar {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.sidebar-nav {
  background: var(--c-bg);
  border-radius: var(--r-lg);
  padding: var(--space-md);
}
.sidebar-nav h5 {
  font-size: 0.805rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--c-text-muted);
  margin-bottom: var(--space-sm);
}
.sidebar-nav ul { display: flex; flex-direction: column; gap: 2px; }
.sidebar-nav ul li a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: var(--r-sm);
  font-size: 1.006rem;
  color: var(--c-text);
  transition: all var(--t-fast);
}
.sidebar-nav ul li a:hover,
.sidebar-nav ul li a.active {
  background: var(--c-white);
  color: var(--c-red);
  box-shadow: var(--shadow-sm);
}
.sidebar-nav ul li a svg { width: 14px; height: 14px; color: var(--c-red); }

.sidebar-cta {
  background: var(--c-navy-dark);
  border-radius: var(--r-lg);
  padding: var(--space-md);
  color: var(--c-white);
}
.sidebar-cta h4 { color: var(--c-white); margin-bottom: 8px; }
.sidebar-cta p { font-size: 1.006rem; color: rgba(255,255,255,0.65); margin-bottom: var(--space-md); }

/* Product/Spec Cards */
.product-card {
  background: var(--c-white);
  border: 1px solid var(--c-border-light);
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: var(--space-lg);
}
.product-card__img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
.product-card__body { padding: var(--space-md); }
.product-card__body h3 { margin-bottom: var(--space-sm); }
.product-card__body p { color: var(--c-text-muted); }

.spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: var(--space-md);
}
.spec-table tr { border-bottom: 1px solid var(--c-border-light); }
.spec-table tr:last-child { border-bottom: none; }
.spec-table td {
  padding: 10px 12px;
  font-size: 1.006rem;
}
.spec-table td:first-child {
  font-weight: 700;
  color: var(--c-navy);
  width: 40%;
  font-family: var(--font-display);
}
.spec-table td:last-child { color: var(--c-text-muted); }

/* Feature List */
.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}
@media (min-width: 640px) {
  .feature-list { grid-template-columns: repeat(2, 1fr); }
}

.feature-item {
  display: flex;
  gap: 12px;
  padding: var(--space-sm);
  background: var(--c-bg);
  border-radius: var(--r-md);
  align-items: flex-start;
}
.feature-item__icon {
  width: 36px;
  height: 36px;
  background: rgba(157,20,38,0.08);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.feature-item__icon svg { width: 18px; height: 18px; color: var(--c-red); }
.feature-item__text h5 { margin-bottom: 2px; }
.feature-item__text p { font-size: 0.943rem; color: var(--c-text-muted); margin: 0; }

/* ─── 16. AZÜ SPECIAL PAGE ───────────────────────────────── */
.azue-hero {
  background: linear-gradient(135deg, var(--c-navy-deeper) 0%, var(--c-navy) 100%);
}

.azue-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-md);
  margin: var(--space-lg) 0;
}
@media (min-width: 768px) {
  .azue-features { grid-template-columns: repeat(3, 1fr); }
}

.azue-feature {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--r-lg);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: background var(--t-std), transform var(--t-std);
}
.azue-feature:hover {
  background: rgba(255,255,255,0.1);
  transform: translateY(-4px);
}
.azue-feature img { width: 64px; height: 64px; margin: 0 auto var(--space-md); }
.azue-feature h3 { color: var(--c-white); margin-bottom: 8px; }
.azue-feature p { color: rgba(255,255,255,0.65); font-size: 1.035rem; }

/* ─── 17. MAP PLACEHOLDER ────────────────────────────────── */
.map-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--c-bg-alt);
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-wrap iframe {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

/* ─── 18. CERTIFICATE STRIP ──────────────────────────────── */
/* cert-strip entfernt – ersetzt durch .trust-band nach dem Hero */

/* ─── 19. SCROLL ANIMATIONS ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ─── 20. UTILITIES ──────────────────────────────────────── */
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }

/* Horizontal rule */
hr { border: none; border-top: 1px solid var(--c-border-light); margin: var(--space-lg) 0; }

/* Back to top */
.back-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 500;
  width: 44px;
  height: 44px;
  background: var(--c-navy);
  color: var(--c-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  cursor: pointer;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--t-std);
  pointer-events: none;
}
.back-top.show { opacity: 1; transform: translateY(0); pointer-events: auto; }
.back-top:hover { background: var(--c-red); }
.back-top svg { width: 18px; height: 18px; }

/* Highlight box */
.highlight-box {
  background: rgba(157,20,38,0.06);
  border-left: 4px solid var(--c-red);
  padding: var(--space-md) var(--space-lg);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  margin: var(--space-md) 0;
}

/* ─── 21. RESPONSIVE ADJUSTMENTS ────────────────────────── */
@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
}

@media (min-width: 1024px) {
  .container { padding: 0 var(--space-lg); }
}
