/* ====================================
   S-TEC GmbH – Standalone Website CSS
   ==================================== */

/* CSS Custom Properties */
:root {
  --color-primary: #0345bf;
  --color-primary-hover: #044cd0;
  --color-btn: #004394;
  --color-btn-hover: #0037DD;
  --color-text: #252525;
  --color-dark-section: rgb(54, 54, 54);
  --color-topbar-bg: #333;
  --color-topbar-text: #aaa;
  --color-footer-bg: #171717;
  --color-footer-link: #a2a2a2;
  --font-heading: 'IBM Plex Sans', sans-serif;
  --font-body: 'Inter', sans-serif;
  --container-max: 1320px;
}

/* ---- Reset / Base ---- */
*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--color-text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  margin-top: 0;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color .2s;
}
a:hover, a:focus { color: var(--color-primary-hover); }

img { max-width: 100%; height: auto; display: block; }

ul { list-style: none; padding: 0; margin: 0; }

/* ---- Container ---- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 15px;
}

/* ===========================
   TOP BAR
   =========================== */
#topbar {
  background: var(--color-topbar-bg);
  color: var(--color-topbar-text);
  font-size: 13px;
  padding: 6px 0;
}
#topbar .container {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--color-topbar-text);
}
.topbar-item a {
  color: var(--color-topbar-text);
}
.topbar-item a:hover { color: #fff; }
.topbar-item i { font-size: 12px; }

/* ===========================
   HEADER / NAVIGATION
   =========================== */
#site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  max-width: var(--container-max);
  margin: 0 auto;
}

/* Logo */
.site-logo img {
  height: 54px;
  width: auto;
}
.site-logo .logo-mobile { display: none; }

/* Desktop Nav */
.main-nav { display: flex; align-items: center; }
.main-nav > ul {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav > ul > li {
  position: relative;
}
.main-nav > ul > li > a,
.main-nav > ul > li > .nav-heading {
  display: block;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text);
  cursor: pointer;
  border-radius: 4px;
  white-space: nowrap;
  transition: color .2s;
  user-select: none;
}
.main-nav > ul > li > a:hover,
.main-nav > ul > li > .nav-heading:hover,
.main-nav > ul > li.active > a,
.main-nav > ul > li.active > .nav-heading {
  color: var(--color-primary);
}
.main-nav > ul > li > a.current {
  color: var(--color-primary);
}
.nav-heading {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-heading::after {
  content: '\f107';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 11px;
  opacity: .6;
}

/* Dropdown */
.nav-dropdown {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  min-width: 220px;
  border-radius: 4px;
  box-shadow: 0 6px 24px rgba(0,0,0,.12);
  padding: 8px 0;
  z-index: 999;
}
.nav-dropdown li a {
  display: block;
  padding: 8px 20px;
  font-size: 14px;
  color: var(--color-text);
  transition: color .15s;
}
.nav-dropdown li a:hover {
  color: var(--color-primary);
}
.nav-dropdown li a:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: -2px;
  color: var(--color-primary);
  background: #f0f5ff;
}
.nav-heading:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
  border-radius: 2px;
}
.main-nav > ul > li:hover .nav-dropdown,
.main-nav > ul > li.open .nav-dropdown {
  display: block;
}

/* Hamburger button */
.hamburger-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: all .3s;
}
.hamburger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.open span:nth-child(2) { opacity: 0; }
.hamburger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Nav Drawer */
.mobile-nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.5);
  z-index: 1100;
}
.mobile-nav-overlay.open { display: block; }
.mobile-nav-drawer {
  position: fixed;
  top: 0;
  left: -320px;
  width: 300px;
  height: 100%;
  background: #fff;
  z-index: 1200;
  overflow-y: auto;
  transition: left .3s ease;
  padding: 20px 0;
}
.mobile-nav-drawer.open { left: 0; }
.mobile-nav-close {
  display: flex;
  justify-content: flex-end;
  padding: 0 16px 16px;
}
.mobile-nav-close button {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: var(--color-text);
  padding: 4px;
}
.mobile-nav ul {
  padding: 0;
}
.mobile-nav ul li a,
.mobile-nav ul li .mob-heading {
  display: block;
  padding: 12px 20px;
  color: var(--color-text);
  font-size: 15px;
  font-weight: 600;
  border-bottom: 1px solid #f0f0f0;
  cursor: pointer;
}
.mobile-nav ul li a:hover,
.mobile-nav ul li .mob-heading:hover {
  color: var(--color-primary);
}
.mob-heading {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mob-heading i { font-size: 12px; transition: transform .2s; }
.mob-heading.open i { transform: rotate(180deg); }
.mobile-sub-menu {
  display: none;
  background: #f8f8f8;
}
.mobile-sub-menu.open { display: block; }
.mobile-sub-menu li a {
  padding: 10px 30px;
  font-size: 14px;
  font-weight: 400;
}

/* ===========================
   HERO SLIDER
   =========================== */
#hero-slider {
  position: relative;
  overflow: hidden;
  height: 500px;
  background: #1a1a2e;
}
.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity .8s ease-in-out;
  display: flex;
  align-items: center;
}
.slide.active { opacity: 1; }
.slide-content {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}
.slide-text-box {
  display: inline-block;
  max-width: 550px;
}
.slide-text-box h2 {
  text-align: left;
  color: #f6f6f6;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 30px 40px;
  line-height: 1.5em;
  font-family: var(--font-heading);
  margin-right: 40px;
  margin-bottom: 0;
  font-size: clamp(22px, 3vw, 30px);
}
.slide-text-box h2 strong { font-weight: 700; }

/* Slider controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,.4);
  color: #fff;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background .2s;
}
.slider-btn:hover { background: rgba(0,0,0,.7); }
.slider-prev { left: 16px; }
.slider-next { right: 16px; }

.slider-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background .2s;
}
.slider-dot.active { background: #fff; }

/* ===========================
   SECTIONS – GENERAL
   =========================== */
.section-padded {
  padding: 50px 0;
}
.section-dark {
  background: var(--color-dark-section);
  color: #fff;
}
.section-title-center {
  text-align: center;
  margin-bottom: 36px;
}
.section-title-center h2 {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 300;
  color: inherit;
  margin-bottom: 0;
}

/* CTA Buttons */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  background: var(--color-btn);
  color: #fff;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--font-heading);
  transition: background .2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
}
.btn-cta:hover { background: var(--color-btn-hover); color: #fff; }

/* ===========================
   S-TEC SECTION
   =========================== */
#stec-section {
  background: var(--color-dark-section);
  color: #fff;
  padding: 30px 0;
}
.stec-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.stec-text { flex: 3; }
.stec-text h1 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  margin-bottom: 10px;
  color: #fff;
  line-height: 1.5em;
}
.stec-text h1 strong { color: #fff; }
.stec-text h1 span {
  font-weight: 300;
  color: #e6e6e6;
}
.stec-text p {
  margin: 0;
  color: #ccc;
  font-size: 15px;
  line-height: 1.7;
}
.stec-action { flex: 1; text-align: right; }

/* ===========================
   EIGENMARKEN SECTION
   =========================== */
#eigenmarken-section {
  padding: 50px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}
.feature-item {
  display: flex;
  flex-direction: column;
}
.feature-logo {
  margin-bottom: 16px;
}
.feature-logo a { display: inline-block; }
.feature-logo img {
  height: 60px;
  width: auto;
  display: inline-block;
}
.feature-item h5 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 10px;
  color: var(--color-text);
}
.feature-item h5 a {
  color: var(--color-text);
}
.feature-item h5 a:hover { color: var(--color-primary); }
.feature-item p {
  font-size: 14px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ===========================
   CTA SECTION (Angebot / Kontakt)
   =========================== */
.cta-section {
  background: var(--color-dark-section);
  color: #fff;
  padding: 30px 0;
}
.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.cta-inner h2 {
  font-weight: 300;
  font-size: clamp(20px, 2.5vw, 28px);
  color: #fff;
  margin: 0;
  line-height: 1.5em;
}

/* ===========================
   LEISTUNGEN SECTION
   =========================== */
#leistungen-section {
  padding: 50px 0 0;
}
#leistungen-section2 {
  padding: 0 0 50px;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
#leistungen-section2 { padding-top: 24px; }
.service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service-item a.service-img-link { display: block; width: 100%; }
.service-item img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.service-item h5 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  margin: 14px 0 0;
  text-align: center;
  color: var(--color-text);
}
.service-item h5 a { color: var(--color-text); }
.service-item h5 a:hover { color: var(--color-primary); }

/* ===========================
   CLIENTS LOGO BAR
   =========================== */
#clients-section {
  padding: 40px 0;
}
.clients-bar {
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  align-items: center;
  gap: 12px;
}
.client-logo {
  width: 100%;
  height: 40px;
  object-fit: contain;
  display: block;
  filter: grayscale(30%);
  transition: filter .2s;
}
.client-logo:hover { filter: none; }

/* ===========================
   FOOTER
   =========================== */
#site-footer {
  background: var(--color-footer-bg);
  color: #fff;
  padding: 40px 0 20px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.footer-col h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-col h3.sub-heading {
  font-size: 15px;
  margin-top: 20px;
  margin-bottom: 10px;
  padding-bottom: 0;
  border-bottom: none;
}
.footer-col p {
  font-size: 13px;
  line-height: 1.9;
  color: #ccc;
  margin: 0 0 8px;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: var(--color-footer-link);
  padding: 2px 0;
  line-height: 1.8;
  transition: color .15s;
}
.footer-col a:hover, .footer-col a:focus { color: #fff; }
.footer-col address {
  font-style: normal;
  font-size: 13px;
  line-height: 1.9;
  color: #ccc;
}
.footer-col address strong { color: #fff; }
.footer-col address a { display: inline; color: var(--color-footer-link); }
.footer-col address a:hover { color: #fff; }

.footer-copyright {
  background: var(--color-footer-bg);
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 16px 0;
  text-align: center;
  font-size: 12px;
  color: #888;
}

/* ===========================
   SCROLL TO TOP
   =========================== */
.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--color-primary);
  color: #fff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  z-index: 900;
  border: none;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--color-btn-hover); }

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 991px) {
  .main-nav { display: none; }
  .hamburger-btn { display: flex; }
  .site-logo .logo-desktop { display: none; }
  .site-logo .logo-mobile { display: block; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }

  #hero-slider { height: 380px; }
  .slide-text-box h2 { padding: 20px 24px; margin-right: 0; font-size: 20px; }

  .stec-inner { flex-direction: column; text-align: center; }
  .stec-action { text-align: center; }

  .cta-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 767px) {
  .site-logo .logo-mobile { display: block; }
  .site-logo .logo-desktop { display: none; }

  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-logo img { height: 50px; max-width: 180px; }

  .services-grid { grid-template-columns: 1fr 1fr; }

  .footer-grid { grid-template-columns: 1fr 1fr; }

  #hero-slider { height: 280px; }
  .slide-text-box h2 { font-size: 16px; padding: 16px 20px; }
}

@media (max-width: 575px) {
  .feature-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .clients-bar { gap: 16px; }
}

/* ═══════════════════════════════════════════════
   BREADCRUMB NAVIGATION
═══════════════════════════════════════════════ */

.breadcrumb-nav {
  background: #f4f7ff;
  border-bottom: 1px solid #e4ecff;
  padding: 10px 0;
}
.breadcrumb-list {
  list-style: none;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 0;
  margin: 0;
  font-size: 13px;
}
.bc-item { color: #555; }
.bc-item a { color: var(--color-primary); text-decoration: none; }
.bc-item a:hover { text-decoration: underline; }
.bc-current { color: var(--color-text); font-weight: 600; }
.bc-sep { color: #bbb; font-size: 10px; margin: 0 2px; }

/* ═══════════════════════════════════════════════
   SUBPAGE – INNER PAGE LAYOUT
═══════════════════════════════════════════════ */

.inner-page { }

.inner-hero { padding: 30px 0 0; }
.inner-hero-img {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.inner-content.section-padded { padding: 50px 0 70px; }

.inner-title {
  font-family: 'IBM Plex Sans', sans-serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.inner-subtitle { color: #888; margin-top: -10px; margin-bottom: 28px; }

.content-main { max-width: 900px; }
.content-main h3 { font-size: 20px; font-weight: 700; margin: 28px 0 10px; color: var(--color-text); }
.content-main h4 { font-size: 16px; font-weight: 700; margin: 20px 0 8px; color: var(--color-text); }
.content-main p  { margin-bottom: 14px; line-height: 1.75; }
.content-main ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.content-main ul li { margin-bottom: 6px; line-height: 1.7; }
.content-main a  { color: var(--color-primary); }
.content-main a:hover { text-decoration: underline; }
.content-main .btn-cta,
.content-main .btn-cta:hover { color: #fff; text-decoration: none; }

/* Legal content */
.legal-content h1 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 700; margin-bottom: 20px; }
.legal-content h2 { font-size: 18px; font-weight: 700; margin: 28px 0 10px; color: var(--color-text); }
.legal-content h3 { font-size: 16px; font-weight: 600; margin: 20px 0 8px; }
.legal-content p  { margin-bottom: 12px; line-height: 1.75; }
.legal-content ul { list-style: disc; padding-left: 22px; margin-bottom: 12px; }

/* ═══════════════════════════════════════════════
   SUBPAGE – TIMELINE
═══════════════════════════════════════════════ */

.timeline { position: relative; padding-left: 20px; }
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0; bottom: 0;
  width: 3px;
  background: var(--color-primary);
  opacity: .2;
  border-radius: 3px;
}

.timeline-item {
  display: flex;
  gap: 24px;
  margin-bottom: 36px;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px; top: 5px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--color-primary);
}

.timeline-year {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  min-width: 52px;
  line-height: 1.3;
}

.timeline-body h4 { margin: 0 0 6px; font-size: 16px; font-weight: 700; }
.timeline-body p  { margin: 0; color: #555; line-height: 1.7; font-size: 15px; }

/* ═══════════════════════════════════════════════
   SUBPAGE – TEAM
═══════════════════════════════════════════════ */

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.team-card img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 14px;
  display: block;
}
.team-card h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.team-card p  { font-size: 14px; color: #555; line-height: 1.7; }

/* ═══════════════════════════════════════════════
   SUBPAGE – KARRIERE
═══════════════════════════════════════════════ */

.karriere-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 24px 0;
}
.karriere-box {
  background: #f8f8f8;
  padding: 24px;
  border-radius: 8px;
}
.karriere-box h4 { font-size: 15px; font-weight: 700; margin-bottom: 10px; }
.karriere-box h4 i { margin-right: 8px; color: var(--color-primary); }
.karriere-powered { margin-top: 28px; }

/* ═══════════════════════════════════════════════
   SUBPAGE – EIGENMARKEN
═══════════════════════════════════════════════ */

.eigenmarken-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  margin-bottom: 32px;
}
.eigenmarken-logo { max-height: 90px; width: auto; }
.eigenmarken-header .inner-title { margin-bottom: 0; }
.eigenmarken-header ~ .content-main { text-align: center; margin-left: auto; margin-right: auto; }
.eigenmarken-link { margin-top: 28px; }

.btn-cta-small {
  padding: 8px 18px !important;
  font-size: 13px !important;
}

.feature-points {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin: 20px 0;
}
.feature-point {
  background: #f4f7ff;
  padding: 20px;
  border-radius: 8px;
  border-left: 3px solid var(--color-primary);
}
.feature-point h4 { font-size: 14px; font-weight: 700; margin-bottom: 6px; }
.feature-point p  { font-size: 13px; color: #555; margin: 0; }

/* ═══════════════════════════════════════════════
   SUBPAGE – LEISTUNGEN HELPERS
═══════════════════════════════════════════════ */

.partner-logos-row {
  display: flex;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
  margin: 16px 0 24px;
}
.partner-logo-sm { max-height: 60px; width: auto; }

.leistungen-cta {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid #e0e6ef;
}
.leistungen-cta-text { flex: 1; }
.support-img { max-width: 180px; border-radius: 8px; flex-shrink: 0; }
.leistungen-cta h4 { font-size: 18px; font-weight: 300; margin-bottom: 8px; color: var(--color-text); }
.leistungen-cta p  { margin-bottom: 0; color: #555; line-height: 1.6; }
.leistungen-cta .btn-cta { flex-shrink: 0; white-space: nowrap; }

/* ═══════════════════════════════════════════════
   SUBPAGE – KONTAKT
═══════════════════════════════════════════════ */

.kontakt-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 30px;
}
.kontakt-directions {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 30px;
  margin-bottom: 10px;
}
.kontakt-feature {
  display: flex;
  flex-direction: column;
}
.kontakt-icon {
  font-size: 36px;
  color: #003384;
  margin-bottom: 4px;
}
.kontakt-feature h5 {
  font-size: 15px;
  font-weight: 700;
  margin: 10px 0 6px;
  color: var(--color-text);
}
.kontakt-feature p { font-size: 14px; color: #555; line-height: 1.6; margin: 0; }
.kontakt-feature a { color: var(--color-primary); }

/* Form section */
.kontakt-form-section { margin-top: 40px; }
.kontakt-form-intro {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--color-text);
  line-height: 1.5;
}
.contact-form .form-row {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 10px;
  align-items: start;
  margin-bottom: 14px;
}
.contact-form .form-row label {
  font-weight: 400;
  font-size: 14px;
  padding-top: 9px;
}
.contact-form .form-row input:not([type="checkbox"]),
.contact-form .form-row textarea {
  width: 100%;
  padding: 9px 13px;
  border: 1px solid #ccc;
  border-radius: 0;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  transition: border-color .2s;
}
.contact-form .form-row input:not([type="checkbox"]):focus,
.contact-form .form-row textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(3,69,191,.1);
}
.btn-kontakt-send {
  display: inline-block;
  width: auto;
  justify-self: start;
  padding: 8px 22px 10px;
  background: #003384;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background .2s;
}
.btn-kontakt-send:hover { background: #002266; }
.checkbox-label { display: flex; align-items: flex-start; gap: 10px; font-size: 13px; cursor: pointer; line-height: 1.5; }
.checkbox-label input[type="checkbox"] { margin-top: 2px; flex-shrink: 0; accent-color: var(--color-primary); }
.checkbox-label span { flex: 1; }

/* Location map section */
.location-section { padding-bottom: 0; }
.location-note { padding: 16px 0 30px; font-size: 14px; color: #555; margin: 0; text-align: center; }
.location-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.location-card { background: #363636; overflow: hidden; }
.location-card a { display: block; color: #fff; text-decoration: none; }
.location-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px 10px 16px;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.3;
}
.location-header i { font-size: 22px; flex-shrink: 0; }
.location-map { width: 100%; height: auto; display: block; }

/* ═══════════════════════════════════════════════
   SUBPAGE – DOWNLOADS
═══════════════════════════════════════════════ */

.download-list { list-style: none; padding: 0; }
.download-list li {
  padding: 12px 0;
  border-bottom: 1px solid #eee;
}
.download-list li a { color: var(--color-primary); font-size: 15px; }
.download-list li a i { margin-right: 8px; }

/* ═══════════════════════════════════════════════
   DOWNLOADS PAGE
═══════════════════════════════════════════════ */

.downloads-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.download-card {
  border: 1px solid #dde4ef;
  border-radius: 8px;
  padding: 20px 16px;
  display: flex;
  flex-direction: column;
  background: #fff;
  background-image: linear-gradient(0deg, rgb(240, 240, 240) 0%, rgb(255, 255, 255) 50%);
}
.download-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 14px;
}
.download-logo img { max-height: 60px; max-width: 120px; object-fit: contain; }
.download-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 70px;
  margin-bottom: 14px;
  color: #999;
  font-size: 52px;
}
.download-info { flex: 1; display: flex; flex-direction: column; align-items: center; text-align: center; }
.download-info h4 { font-size: 14px; font-weight: 700; color: var(--color-text); margin-bottom: 10px; }
.download-info p { font-size: 13px; margin-bottom: 6px; color: var(--color-text); }
.btn-download {
  display: inline-block;
  margin-top: 25px;
  padding: 7px 18px;
  background: #3366FF;
  color: #fff;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  text-align: center;
  transition: background .2s;
}
.btn-download:hover { background: #0037DD; color: #fff; }
@media (max-width: 991px) { .downloads-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px)  { .downloads-grid { grid-template-columns: 1fr; } }

/* ═══════════════════════════════════════════════
   HINWEISGEBERSCHUTZGESETZ PAGE
═══════════════════════════════════════════════ */

:root { --hinschg: #013F3E; --hinschg-mid: #025655; --hinschg-light: #e6f0f0; }

.hinschg-banner {
  background-color: var(--hinschg);
  background-image: url('../images/WhistleBlowerTopBanner3.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center right;
  padding: 80px 0 60px;
  color: #fff;
}
.hinschg-banner-title { font-size: 38px; font-weight: 700; color: #fff; margin-bottom: 4px; line-height: 1.2; }
.hinschg-banner-subtitle { font-size: 24px; font-weight: 300; color: #c0e8e6; margin-bottom: 28px; }
.hinschg-banner p { color: rgba(255,255,255,0.9); line-height: 1.7; margin-bottom: 12px; }
.hinschg-banner a { color: #7fdbd7; text-decoration: underline; }
.hinschg-banner a:hover { color: #fff; }

.hinschg-section-title {
  font-size: 22px; font-weight: 600; color: var(--hinschg);
  margin-bottom: 20px; border-bottom: 2px solid var(--hinschg); padding-bottom: 10px;
}

.hinschg-steps-section { background-color: var(--hinschg); padding: 60px 0; }
.hinschg-steps-heading { font-size: 20px; font-weight: 600; color: #fff; text-align: center; margin-bottom: 40px; }
.hinschg-steps { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.hinschg-step {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: 6px; padding: 24px 16px; text-align: center; color: #fff;
}
.hinschg-step-icon { font-size: 36px; color: #7fdbd7; margin-bottom: 14px; display: block; }
.hinschg-step h5 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 10px; text-transform: uppercase; letter-spacing: 0.5px; }
.hinschg-step p, .hinschg-step ul { font-size: 13px; color: rgba(255,255,255,0.85); line-height: 1.5; margin: 0; }
.hinschg-step ul { list-style: disc; text-align: left; padding-left: 20px; }
.hinschg-step ul li { margin-bottom: 4px; }

.hinschg-item { border: 1px solid #b0cccc; border-radius: 4px; margin-bottom: 8px; overflow: hidden; }
.hinschg-question {
  width: 100%; padding: 14px 18px; font-weight: 600; font-size: 15px; cursor: pointer;
  background: var(--hinschg-light); color: var(--color-text); border: none; text-align: left;
  display: flex; justify-content: space-between; align-items: center; font-family: inherit;
}
.hinschg-question::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--hinschg); flex-shrink: 0; }
.hinschg-item.is-open .hinschg-question { background: #c4dede; color: var(--hinschg); }
.hinschg-item.is-open .hinschg-question::after { content: '−'; }
.hinschg-details-body { overflow: hidden; height: 0; transition: height 0.35s ease; background: #fff; }
.hinschg-item.is-open .hinschg-details-body { height: auto; }
.hinschg-details-inner { padding: 20px 18px; border-top: 1px solid #b0cccc; }
.hinschg-details-body h4 { font-size: 15px; font-weight: 700; color: var(--hinschg); margin: 16px 0 6px; }
.hinschg-details-body h4:first-child { margin-top: 0; }
.hinschg-details-body p, .hinschg-details-body ul { font-size: 14px; margin-bottom: 8px; }
.hinschg-details-body ul { list-style: disc; padding-left: 22px; }
.hinschg-details-body ul ul { list-style: circle; margin-top: 4px; }

.hinschg-form-section { background: #fff; }
.hinschg-form-section ul { list-style: disc; padding-left: 22px; margin-bottom: 14px; }
.hinschg-form-section ul li { margin-bottom: 4px; }
.hinschg-form { max-width: 700px; margin-top: 28px; }
.hinschg-form .form-group { margin-bottom: 20px; }
.hinschg-form label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 6px; color: var(--color-text); }
.hinschg-form input[type="text"],
.hinschg-form textarea { width: 100%; padding: 10px 12px; font-size: 14px; font-family: inherit; border: 1px solid #ccd5e0; border-radius: 4px; box-sizing: border-box; transition: border-color 0.2s; }
.hinschg-form select { width: 100%; padding: 10px 12px; font-size: 14px; font-family: inherit; border: 1px solid #ccd5e0; border-radius: 4px; background: #fff; color: var(--color-text); box-sizing: border-box; transition: border-color 0.2s; }
.hinschg-form input[type="text"]:focus,
.hinschg-form textarea:focus,
.hinschg-form select:focus { outline: none; border-color: var(--hinschg); }
.hinschg-form .req { color: #cc2200; }
.hinschg-form .btn-cta,
.hinschg-form .btn-cta:hover { background: var(--hinschg); color: #fff; }

@media (max-width: 991px) {
  .hinschg-steps { grid-template-columns: repeat(3, 1fr); }
  .hinschg-banner-title { font-size: 28px; }
}
@media (max-width: 767px) {
  .hinschg-steps { grid-template-columns: repeat(2, 1fr); }
  .hinschg-banner { padding: 50px 0 40px; }
}
@media (max-width: 575px) {
  .hinschg-steps { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════
   SUBPAGE RESPONSIVE
═══════════════════════════════════════════════ */

@media (max-width: 991px) {
  .team-grid { grid-template-columns: 1fr 1fr; }
  .kontakt-features { grid-template-columns: 1fr 1fr; }
  .kontakt-directions { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .team-grid { grid-template-columns: 1fr; }
  .karriere-boxes { grid-template-columns: 1fr; }
  .feature-points { grid-template-columns: 1fr; }
  .leistungen-cta { flex-direction: column; text-align: center; gap: 20px; }
  .leistungen-cta .btn-cta { align-self: center; }
  .support-img { max-width: 140px; }
  .eigenmarken-header { flex-direction: column; align-items: flex-start; gap: 14px; }
}

@media (max-width: 575px) {
  .kontakt-features { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .contact-form .form-row { grid-template-columns: 1fr; }
}
