@import url('https://fonts.googleapis.com/css2?family=Archivo:wght@400;600&family=Archivo+Black&display=swap');

:root {
  --red:             #E5041D;
  --dark:            #455561;
  --mid:             #4f4f4f;
  --light-bg:        #EBEBEB;
  --border:          #a6a6a6;
  --white:           #ffffff;
  --black:           #000000;
  --max-width:       1140px;
  --transition-fade: opacity 0.8s ease-in-out;
  --glass:           rgba(255, 255, 255, 0.08);
}

*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

body {
  font-family: "Archivo", sans-serif;
  margin: 0;
  padding: 0;
  color: var(--mid);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a:link,
a:visited {
  color: var(--dark);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--red);
}

/* WIDTHS & VISIBILITY */
.content_width {
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: 16px;
}

.content_width_small {
  max-width: 50%;
  margin-inline: auto;
  padding-inline: 16px;
}

.mobile     { display: none !important; }
.not_mobile { display: block; }

/* TYPOGRAPHY UTILITIES */
.font_black {
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
}

.bg_gray { background-color: var(--light-bg); }
.red     { color: var(--red); }

/* ANIMATION */
.fadeIn {
  opacity: 0;
  transition: var(--transition-fade);
}

.slideright {
  transform: translateX(1000px);
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slideleft {
  transform: translateX(-1000px);
  transition: transform 2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.visible {
  transform: translateX(0) !important;
  opacity: 1 !important;
}

/* BACK TO TOP */
#top_button {
  display: none;
  position: fixed;
  bottom: 50px;
  right: 50px;
  z-index: 100;
}

#top_button i {
  font-size: 50px;
  color: var(--red);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.25));
  transition: transform 0.2s ease;
}

#top_button i:hover {
  transform: translateY(-3px);
}

.active_button {
  font-weight: 600;
  color: var(--red) !important;
}

header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
}

#header {
  display: flex;
  height: 130px;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 12px 16px;
}

#navibar {
  display: flex;
  align-items: center;
}

/* Hamburger — hidden on desktop, shown on mobile */
#menuToggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  margin: 0 12px;
  cursor: pointer;
  color: var(--dark);
  padding: 6px;
  border-radius: 4px;
  line-height: 1;
  transition: color 0.2s ease, background-color 0.2s ease;
}

#menuToggle:hover {
  color: var(--red);
  background-color: rgba(229, 4, 29, 0.06);
}

#menuToggle:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

#nav {
  display: flex;
  height: 100%;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
}

#nav a {
  padding: 8px 14px;
  border-radius: 4px;
  font-family: "Archivo Black", sans-serif;
  font-weight: 400;
  font-size: 1rem;
  color: var(--dark);
  transition: color 0.2s ease, background-color 0.2s ease;
  white-space: nowrap;
}

#nav a:hover {
  color: var(--red);
  background-color: rgba(229, 4, 29, 0.05);
}

#logo_top {
  width: auto;
}

.logo {
  width: 150px;
  height: auto;
}

.navi_separator {
  width: 100%;
  height: 4px;
  background-color: var(--red);
}
/* HERO */
.hero {
  position: relative;
  min-height: 50vh;
  max-height: 600px;
  width: 100%;
  overflow: hidden;

  display: flex;
  align-items: stretch;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0.45) 45%, rgba(0, 0, 0, 0.05) 75%, transparent 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.2));
}

/* CONTENT BOX */
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: fit-content;
  width: 45%;
  max-width: 600px;
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  color: var(--white);
  background: var(--glass);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.3);
  animation: fadeUp 1s ease forwards;
}

.hero__eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  opacity: 0.8;
}

.hero__title {
  font-weight: 800;
  line-height: 0.95;
  font-size: clamp(2rem, 4vw, 3.5rem);
}

.hero__dot {
  color: var(--red);
}

.hero__text {
  margin-top: 1rem;
  font-size: 1.05rem;
  line-height: 1.6;
  opacity: 0.9;
}

.hero__actions {
  margin-top: 1.5rem;
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__btn {
  padding: clamp(0.5rem, 1vw, 0.8rem) clamp(0.9rem, 2vw, 1.4rem);
  font-size: clamp(0.75rem, 1.2vw, 1rem);
  border-radius: clamp(5px, 1vw, 7px);
  text-decoration: none;
  font-weight: 700;
  transition: 0.25s ease;
  display: inline-block;
}

.hero__btn--primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(255, 77, 77, 0.3);
}

.hero__btn--primary:hover {
  transform: translateY(-3px);
}

.hero__btn--secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  background: rgba(255, 255, 255, 0.05);
}

.hero__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* IMAGES */
.image_max {
  width: 100%;
  height: auto;
  display: block;
}

.split_image {
  width: 100%;
  max-width: 90%;
  height: auto;
}

/* LAYOUT */
.split_layer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 0;
}

.layer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 80px;
}

.layer80 { width: 80% !important; }

.layer > i {
  font-size: 47px;
  color: var(--red);
  margin: 20px;
}

.bubble { margin-top: 0; }

.services_grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
  max-width: 1100px;
  margin: auto;
  padding: 32px 20px;
  align-items: stretch;
}

.service_card_box {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  background: var(--white);
  border-radius: 14px;
  padding: 26px 22px;
  text-align: center;
  border: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service_card_box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.10);
}

.service_icon_style {
  font-size: 34px;
  color: var(--red);
  margin-bottom: 14px;
}

.layer_title {
  font-size: 1.25rem;
  font-weight: 600;
  text-align: center;
  margin: 14px;
  color: var(--dark);
}

.layer_title_big {
  font-size: clamp(1.6rem, 2.2vw, 2.2rem);
  text-align: center;
  margin: 14px;
  color: var(--dark);
  font-weight: 600;
}

.layer_text {
  font-size: 0.925rem;
  text-align: center;
  line-height: 1.65;
  margin: 8px;
  color: var(--mid);
}

.separator {
  width: 20%;
  height: 6px;
  margin: 20px auto;
  background-color: var(--red);
  border-radius: 3px;
}

.separator_short {
  width: 5%;
  height: 5px;
  margin: 20px auto;
  background-color: var(--red);
  border-radius: 3px;
}

.backleft  { background: linear-gradient(270deg, var(--white) 40%, var(--light-bg) 60%); }
.backright { background: linear-gradient( 90deg, var(--white) 40%, var(--light-bg) 60%); }

.fadeIn_image {
  display: flex;
  justify-content: center;
}

/* LANGUAGE SWITCHER */
#language_switcher {
  font-family: "Archivo", sans-serif;
  margin-left: 20px;
  font-size: 12px;
}

#language_switcher > a { margin: 3px; }

/* ISO / TISAX */
#isocert {
  width: 120px;
  height: 120px;
}

#tisax { width: 60%; }

.iso_section {
  margin-top: 100px;
  padding: 0 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-block: 60px;
}

.iso_badges {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.projekt_layer { padding-block: 20px; }

.projekt_title {
  margin-top: 80px;
  padding: 40px 20px 0;
}

.projekt_bubble {
  margin: 0 5px;
  padding: 10px 10px 40px;
}

.emo_layer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Telematic */
.sol_layer {
  margin-top: 0;
  justify-content: center;
  align-items: flex-start;
}

.sol_left {
  text-align: justify;
  margin: 0 90px 0 20px;
}

.sol_right {
  text-align: justify;
  margin-right: 20px;
  margin-left: 90px !important;
}

/* HV Systems */
.hv_layer {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: max-content;
}

.hv_split_layer {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 20px 40px 20px 20px;
}

.hv_icon_div {
  border: 3px solid var(--mid);
  border-radius: 10px;
  padding: 10px;
  margin: 10px;
  flex-shrink: 0;
}

.hv_border {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin: 5px;
}

.hv_icon       { font-size: 72px; }
.hv_icon_color { color: var(--mid); }

.hv_layer_title {
  font-size: 1.25rem;
  font-weight: 600;
  margin: 10px;
  color: var(--red);
}

.hv_layer_title_big {
  font-size: 1.4rem;
  text-align: center;
  margin: 50px 0 20px;
  color: var(--mid);
}

.hv_layer_text {
  font-size: 0.85rem;
  text-align: left;
  line-height: 1.6;
  color: var(--mid);
}

.hv_point { color: var(--border); }

.hv-image {
  border-radius: 14px;
  margin: 5px;
  max-width: 450px;
}

.hv_separator {
  width: 20%;
  height: 5px;
  margin: 40px auto 60px;
  background-color: var(--red);
  border-radius: 3px;
}

/* Research */
.dyn_split {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  gap: 20px;
}

.row {
  flex: 1;
  display: flex;
  flex-direction: column;
  margin: 40px;
  align-items: center;
  gap: 12px;
}

.row_image {
  width: 95%;
  max-width: 300px;
  height: auto;
  border-radius: 8px;
}

.row_text  { text-align: justify; }
.row_title { margin-block: 0; }

/* Contact */
.kon_layer { align-items: flex-start; margin: 80px;}
.kon_item {
  margin: 8px;
  font-size: 1.0rem;
}
.kon_title {
  margin: 8px 4px;
  text-align: left;
  font-size: 1.5rem;
  color: var(--red);
}

/* LEGAL / PRIVACY / T&C */

.notice-container { margin: auto; font-family: Arial, sans-serif; line-height: 1.6; padding: 20px; }
.notice-title     { font-size: 28px; font-weight: bold; text-align: center; color: var(--dark); margin: 40px 0; }
.notice-divider   { margin: 20px 0; border-top: 1px solid #ccc; }

.imprint_title {
  font-size: 1.2rem;
  font-weight: 600;
  text-align: center;
  margin: 8px auto 32px;
  color: var(--dark);
  line-height: 3;
}

.imprint_layer {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.imprint_text_left {
  font-size: 1rem;
  line-height: 3;
  color: var(--dark);
  font-weight: 700;
}

.imprint_text {
  font-size: 1rem;
  line-height: 3;
  color: var(--mid);
}

.imprint_text_block {
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--dark);
  font-weight: 700;
  display: block;
  margin-top: 20px;
}

.privacy_layer {
  overflow-wrap: break-word;
  font-size: 0.9rem;
  line-height: 1.9;
  color: var(--mid);
  padding-bottom: 60px;
  text-align: justify;
}

.changed {
  background-color: #fff3a3;
  border-radius: 3px;
  padding: 0 2px;
  outline: 1.5px solid #f0c400;
}

.required {
  background-color: rgba(255, 182, 182, 0.79);
  border-radius: 3px;
  padding: 0 2px;
  outline: 1.5px solid #f00000;
}

.terms-section   { margin-top: 25px; }
.terms-heading   { font-size: 20px; font-weight: bold; margin-bottom: 10px; }
.terms-text      { margin-bottom: 10px; }
.terms-list      { padding-left: 20px; }

/* Footer */

.footer_icon {
  color: var(--red);
  font-size: 14px;
}

#footer_social {
  background: var(--red);
  transform: translateY(-3px);
}

#logo_bottom {
  background: var(--black) url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 488 268'%3E%3Cdefs%3E%3ClinearGradient id='a' x2='1' gradientTransform='rotate(90 46 110) scale(104)' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23fff'/%3E%3Cstop offset='1' stop-color='%23111'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg stroke-width='5' fill='none'%3E%3Cpath stroke='%23555' d='M452.6 63s-50.8-42.9-100.8 0m99.6 142.1s-50.9 43-100.9 0'/%3E%3Cpath stroke='%23777' d='M468.5 48.9s-68.1-54.4-135 0m133.7 171.6s-68 54.4-135 0'/%3E%3Cpath stroke='%23999' d='M486 33s-85.7-68.4-170 0m168.7 202.1s-85.7 68.4-170 0'/%3E%3Cpath fill='%23f11' stroke='url(%23a)' d='M402.2 98.4a34 34 0 1 0 0 68.2 34 34 0 0 0 0-68.2'/%3E%3Cpath fill='url(%23a)' d='M275.5 71.6v94.9h21V71.6h-21zm172.7 0v94.9h21V71.6h-21zM171.6 78v20h-9.2v17.4h9.2v29.4c0 4.3 1.1 8.2 3.2 11.6 4.2 7 10 10.4 17.4 10.4H205V147h-6.8c-2.1 0-3.5-.4-4.3-1.1l-.7-.8c-.4-.4-.5-2.7-.5-7v-22.9H205V98h-12.3V77.9h-21zm67.5 18.7a26 26 0 0 0-21.3 9.3 41.2 41.2 0 0 0-7.6 22.5v6.7c0 5.2.4 9.4 1.3 12.9 3.3 12.5 10.3 18.7 20.9 18.7h31.4V147h-26.4c-2.8 0-4.4-1.4-5-4.2l-.1-.8v-.7h35.1v-11.8a38 38 0 0 0-6.6-23.4c-4.9-6.4-12-9.6-21.7-9.6zM119.4 98v68.6h21V133c0-.6 0-1.1.2-1.2l.3-1.3c.3-1.9 1.8-4 4.6-6.3 2.8-2.4 5.2-3.6 7.3-4a5 5 0 0 1 2.4-.5l3-.4V98H155c-5.9 0-11.1 2.6-15.9 8v-8h-19.8zm-97.1 0c-7.2 0-12.7 3.5-17 10.4a41 41 0 0 0-4.8 22v4.2a46 46 0 0 0 4.4 21.6c3.7 7 9.5 10.6 17.4 10.6h23.5V147H27.5c-1.6 0-2.7-.4-3.4-1.3a29 29 0 0 1-2.5-12v-5c0-2.5.3-5.2.7-8a22 22 0 0 1 1.6-4c.7-1 2-1.6 3.6-1.6h18.3V98H22.3zm34.2 0v17.3h29.1c1.9 0 2.9.8 2.9 2.4 0 1.4-.9 2.5-2.5 3.1l-4.4.9c-.7 0-3.4.6-8.3 1.8a81.8 81.8 0 0 0-8.6 2.3c-9.3 3.6-14 10.2-14 19.8 0 7.1 2.4 12.6 7 16.3 4.3 3.2 10 4.9 17.3 4.9h33.8V115a16 16 0 0 0-5.5-13 21 21 0 0 0-13.5-4.1H56.5zm268.8 0a21 21 0 0 0-15.4 6c-3.8 4-5.8 9-5.8 15.3 0 12.2 8 21 20.4 21h9.2c2.6 0 3.8 1 3.8 3v.7c0 2.1-1.6 3.2-4.7 3.2h-27v19.6h30.5a22 22 0 0 0 15.4-5.3c4.9-4.5 7.4-9.4 7.4-14.7v-5a19.7 19.7 0 0 0-20.3-20h-11.1c-1.6-.4-2.5-1.5-2.5-3 0-2.2 1-3.4 3.1-3.4h26.4V98h-29.4zm-85.8 17.3c2 0 3.7.6 5.2 1.8 1.3 2 2 3.2 2.2 3.9.3 2.4.6 3.7.6 4.6h-15.7c0-6.8 2.6-10.3 7.7-10.3zM87.7 137.4v9.7h-13c-1.9 0-2.9-1-2.9-2.9 0-1.1 1.1-2 3.5-2.7l12.4-4.1z'/%3E%3C/g%3E%3C/svg%3E") no-repeat center / contain;
  width: 160px;
  height: 88px;
  flex-shrink: 0;
}

.ft-root { background: #111; color: #e0e0e0; margin-top: 50px; padding: 0; }

.ft-top-bar { background: #CC1111; height: 4px; width: 100%; }

.ft-inner { max-width: 1140px; margin: 0 auto; padding: 52px 32px 0; }

.ft-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr 1.55fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 0.5px solid #2a2a2a;
  align-items: start;
}

.ft-root #logo_bottom {
  background-color: #111;
  width: 164px;
  height: 90px;
  flex-shrink: 0;
  margin-bottom: 20px;
}

.ft-social-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 28px; }
.ft-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #222;
  border: 0.5px solid #333;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
  text-decoration: none;
}
.ft-social-btn:hover { background: #CC1111; border-color: #CC1111; }
.ft-social-btn svg { width: 15px; height: 15px; fill: #ccc; }

.ft-col-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #CC1111;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid #2a2a2a;
}

.ft-col-company-title {
  font-size: 26px;
  font-weight: 600;
  color: #CC1111;
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 0.5px solid #2a2a2a;
}

.ft-nav-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.ft-nav-list a {
  text-decoration: none;
  color: #999;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: color 0.2s;
}
.ft-nav-list a:hover { color: #fff; }
.ft-nav-list a::before {
  content: '';
  width: 5px;
  height: 1.5px;
  background: #CC1111;
  display: inline-block;
  flex-shrink: 0;
  transition: width 0.2s;
}
.ft-nav-list a:hover::before { width: 12px; }

.ft-contact-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 18px; }
.ft-contact-item { display: flex; gap: 13px; align-items: flex-start; }
.ft-contact-icon {
  width: 34px;
  height: 34px;
  border-radius: 6px;
  background: #1e1e1e;
  border: 0.5px solid #2d2d2d;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.ft-contact-text { font-size: 15px; color: #999; line-height: 1.65; }
.ft-contact-text a { color: #999; text-decoration: none; transition: color 0.2s; }
.ft-contact-text a:hover { color: #fff; }

.ft-form { display: flex; flex-direction: column; gap: 10px; }
.ft-row2 { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.ft-input,
.ft-textarea {
  width: 100%;
  background: #1a1a1a;
  border: 0.5px solid #2e2e2e;
  color: #ddd;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  padding: 11px 14px;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
}
.ft-input:focus,
.ft-textarea:focus { border-color: #CC1111; }
.ft-input::placeholder,
.ft-textarea::placeholder { color: #555; }
.ft-textarea { resize: none; height: 80px; line-height: 1.55; }

.ft-check-wrap {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: #181818;
  border: 0.5px solid #2a2a2a;
  border-radius: 6px;
  padding: 12px 14px;
  cursor: pointer;
}
.ft-check-wrap input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #CC1111;
  cursor: pointer;
  flex-shrink: 0;
  margin-top: 2px;
}
.ft-check-label {
  font-size: 13px;
  color: #888;
  line-height: 1.55;
  cursor: pointer;
  user-select: none;
}
.ft-check-label a { color: #CC1111; text-decoration: none; }
.ft-check-label a:hover { text-decoration: underline; }

.ft-submit {
  background: #CC1111;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  padding: 13px 20px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
}
.ft-submit:hover    { background: #e01414; }
.ft-submit:active   { transform: scale(0.98); }
.ft-submit:disabled { opacity: 0.5; cursor: not-allowed; }
.ft-submit svg { width: 15px; height: 15px; fill: #fff; }

.ft-err {
  font-size: 12px;
  color: #CC1111;
  display: none;
  padding: 0 2px;
}

.ft-success-msg {
  display: none;
  background: #1a1a1a;
  border: 0.5px solid #CC1111;
  border-radius: 6px;
  padding: 14px;
  font-size: 15px;
  color: #CC1111;
  text-align: center;
}

.ft-bottom {
  max-width: 1140px;
  margin: 0 auto;
  padding: 18px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.ft-copy { font-size: 13px; color: #555; }
.ft-copy span { color: #CC1111; }
.ft-legal-links { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.ft-legal-links a { font-size: 13px; color: #555; text-decoration: none; transition: color 0.2s; }
.ft-legal-links a:hover { color: #aaa; }
.ft-divider { width: 1px; height: 11px; background: #333; display: inline-block; }

/* RESPONSIVE */
@media screen and (max-width: 1030px) {

  #header {
    height: 68px;
    padding: 0 16px;
  }

  .logo { width: 100px; }

  #menuToggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding: 0;
  }

  #nav {
    width: 100%;
    height: auto;
    background-color: var(--white);
    padding: 8px 16px 16px;
    position: absolute;
    z-index: 199;
    top: 100%;
    left: 0;
    align-items: flex-start;
    flex-direction: column;
    display: none;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
    border-top: 1px solid #f0f0f0;
  }

  #nav.nav--open { display: flex; }

  #nav a {
    width: 100%;
    padding: 12px 8px;
    font-size: 0.95rem;
    border-bottom: 1px solid #f5f5f5;
  }

  #nav a:last-child { border-bottom: none; }

  .split_layer          { flex-direction: column; }
  .mobile               { display: flex !important; }
  .not_mobile           { display: none !important; }
  .display              { display: none !important; }
  .layer80              { width: 100%; }
  .layer_title          { margin: 8px 10px; }
  #language_switcher    { margin: 20px 10px; }
  .separator_short      { width: 12%; }
  .hv_layer             { width: auto; align-items: center; }
  .hv_split_layer       { flex-direction: column; }
  .dyn_split            { flex-direction: column; }
  .projekt_title        { margin-top: 0; }
  .projekt_bubble       { margin: 0; padding: 20px 0; }
  .sol_layer            { margin-top: 0; justify-content: center; align-items: center; }
  .sol_left,
  .sol_right            { margin: 0 16px; text-align: left; }
  .kon_layer            { margin: 50px 0 !important; }
  .content_width_small  { max-width: 90%; }

  #top_button   { bottom: 20px; right: 16px; }
  #top_button i { font-size: 38px; }

  .services_grid {
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
    padding: 24px 16px;
    margin-top: 0;
  }

  .service_card_box {
    width: 100%;
    padding: 28px 20px 24px;
    border-radius: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.09);
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: var(--white);
    text-align: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .service_card_box:active {
    transform: scale(0.97);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  }

  .service_icon_style { font-size: 36px; margin: 0 0 14px; }

  .services_grid .layer_title {
    font-size: 1.05rem;
    font-weight: 700;
    margin: 0 0 8px;
  }

  .services_grid .layer_text {
    font-size: 0.82rem;
    line-height: 1.6;
    text-align: center;
    margin: 0;
  }

  .split_layer.content_width:nth-of-type(2) { padding: 32px 16px 8px; gap: 0; }
  .split_layer.content_width:nth-of-type(2) .layer { margin: 12px 0; }
  .split_layer.content_width:nth-of-type(2) .split_image { max-width: 75%; margin: 0 auto; }

  .split_layer.content_width > img.mobile.fadeIn {
    width: calc(100% - 32px);
    max-width: 400px;
    margin: 32px auto 0;
    border-radius: 14px 14px 0 0;
    height: 100%;
    object-fit: cover;
    object-position: center;
    background-color: #dbe0e6;
  }

  .split_layer.content_width > .layer.bubble {
    width: calc(100% - 32px);
    max-width: 400px;
    margin: 0 auto 24px;
    padding: 20px 22px 24px;
    background: var(--white);
    border-radius: 0 0 14px 14px;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-top: none;
  }

  .split_layer.content_width > .layer.bubble .layer_title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin: 0 0 4px;
    text-align: left;
  }

  .split_layer.content_width > .layer.bubble .separator {
    width: 36px;
    height: 3px;
    margin: 8px 0 12px;
    border-radius: 2px;
    background: var(--red);
  }

  .split_layer.content_width > .layer.bubble .layer_text {
    font-size: 0.85rem;
    line-height: 1.65;
    text-align: left;
    margin: 0;
  }

  .iso_section {
    margin-top: 70px;
    padding: 50px 24px 48px;
    background: var(--light-bg);
  }

  .iso_badges { gap: 16px; margin-bottom: 16px; }
  #isocert { width: 80px; height: 80px; }
  #tisax { width: 45%; max-width: 160px; }

  .layer { margin: 20px 0; }
  .emo_intro_card {
    margin: 28px 16px 0;
    background: var(--white);
    border-radius: 14px;
    padding: 24px 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--red);
  }

  .emo_intro_card .layer_text {
    text-align: left;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.75;
  }

  .emo_section_mobile { padding: 12px 16px 32px; }

  .emo_row_card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .emo_row_card:active {
    transform: scale(0.985);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  }

  .emo_row_card__img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .emo_row_card__bar {
    height: 4px;
    background: var(--red);
  }

  .emo_row_card__body { padding: 20px 20px 24px; }

  .emo_row_card__text {
    font-size: 0.875rem;
    line-height: 1.7;
    color: var(--mid);
    margin: 0;
  }

  .emo_section_title {
    font-family: "Archivo Black", sans-serif;
    font-size: 1.5rem;
    color: var(--dark);
    text-align: center;
    margin: 32px 0 6px;
  }

  .emo_section_sep {
    width: 40px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin: 0 auto 20px;
  }

  .emo_desktop_section { display: none !important; }

  .tel_desktop_section { display: none !important; }

  .tel_cards_wrapper { padding: 8px 16px 48px;}

  .tel_page_header { text-align: center; padding: 32px 16px 0; }

  .tel_page_title {
    font-family: "Archivo Black", sans-serif;
    font-size: 1.5rem;
    font-weight: 200;
    color: var(--dark);
    margin: 30px 0 8px;
  }

  .tel_page_sep {
    width: 44px;
    height: 4px;
    background: var(--red);
    border-radius: 2px;
    margin: 0 auto 28px;
  }

  .tel_row_card {
    background: var(--white);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 20px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }

  .tel_row_card:active {
    transform: scale(0.985);
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.07);
  }

  .tel_row_card__img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  .tel_row_card__stripe {
    height: 4px;
    background: var(--red);
  }

  .tel_row_card__body { padding: 20px 20px 24px; }

  .tel_row_card__title {
    font-family: "Archivo Black", sans-serif;
    font-weight: 100;
    font-size: 1.1rem;
    color: var(--dark);
    margin: 0 0 10px;
    line-height: 1.3;
  }

  .tel_row_card__title .red { color: var(--red); }

  .tel_row_card__text {
    font-size: 0.875rem;
    line-height: 1.72;
    color: var(--mid);
    margin: 0;
  }

  .tel_row_card--tinted { background: #fafafa; }

  .con_desktop_section { display: none !important; }

  .con_mobile_wrapper {
    padding: 24px 16px 48px;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 20px 0;
  }

  .con_card {
    background: var(--white);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
  }

  .con_info_card__bar { height: 5px; background: var(--red); }

  .con_info_card__body { padding: 22px 20px 26px; }

  .con_info_card__title {
    font-family: "Archivo", sans-serif;
    font-size: 1.5rem;
    color: var(--dark);
    margin: 0 0 20px;
    line-height: 1.3;
  }

  .con_info_row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    text-decoration: none;
    color: var(--dark);
    font-size: 0.9rem;
    line-height: 1.6;
    transition: color 0.2s ease;
  }
  .con_info_row:hover { color: var(--red); }

  .con_info_row__icon {
    color: var(--red);
    font-size: 15px;
    margin-top: 3px;
    flex-shrink: 0;
    width: 18px;
    text-align: center;
  }

  .con_info_divider { height: 1px; background: #f0f0f0; margin: 14px 0; }

  .con_vcard_strip {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 14px 16px;
    background: var(--light-bg);
    border-radius: 10px;
    text-decoration: none;
    color: var(--red);
    font-size: 0.875rem;
    font-weight: 600;
    transition: background 0.2s ease;
  }
  .con_vcard_strip:hover { background: #dde1e5; }
  .con_vcard_strip i { font-size: 20px; }

  .con_map_card__label {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    font-family: "Archivo", sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--dark);
    border-bottom: 1px solid #f0f0f0;
  }
  .con_map_card__label i { color: var(--red); font-size: 14px; }

  .con_map_card iframe {
    display: block;
    width: 100%;
    height: 300px;
    border: 0;
    border-radius: 0 0 18px 18px;
  }

  .ft-inner { padding: 40px 24px 0; }
  .ft-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .ft-grid > div:nth-child(3) { grid-column: 1 / -1; }
  .ft-bottom { padding: 16px 24px; }
}

@media (max-width: 600px) {
  .layer_text { font-size: 0.85rem; }
  .service_card_box { padding: 22px 18px; }
  .hero {
    min-height: auto;
  }

  .hero__content {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    border-radius: 0;
    height: auto;
    background: var(--glass);
    backdrop-filter: blur(0px);
  }

  .hero__overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.85));
  }
}
@media (max-width: 560px) {
  .ft-inner { padding: 32px 16px 0; }
  .ft-grid { grid-template-columns: 1fr; gap: 28px; }
  .ft-root #logo_bottom { width: 144px; height: 79px; }
  .ft-row2 { grid-template-columns: 1fr; }
  .ft-bottom { flex-direction: column; align-items: flex-start; padding: 16px; gap: 8px; }
}
@media screen and (max-width: 480px) {
  #header { height: 60px; }
  .logo { width: 88px; }
  .cts-hero-img { max-height: 56vw; min-height: 160px; }
  .cts-hero-title { font-size: clamp(20px, 9vw, 36px); }
  .split_layer.content_width > img.mobile.fadeIn { max-height: 170px; }
}
@media screen and (min-width: 1031px) {
  .emo_mobile_only {
    display: none !important;
  }

  .tel_mobile_only {
    display: none !important;
  }

  .con_mobile_only {
    display: none !important;
  }
}