
:root {
  --tc-blue: #0784B5;
  --tc-blue-dark: #056a91;
  --tc-yellow: #F5D21F;
  --tc-yellow-dark: #dfbf14;
  --tc-dark: #111111;
  --tc-dark-soft: #1c1c1c;
  --tc-text: #1a1a1a;
  --tc-text-soft: #5f6b76;
  --tc-bg: #ffffff;
  --tc-bg-light: #ffffff;
  --tc-border: #e4e7eb;
  --tc-white: #ffffff;
  --tc-radius: 14px;
  --tc-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
  --tc-container: 1200px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0 !important;
  padding: 0 !important;
  font-family: Inter, Arial, sans-serif;
  background: var(--tc-bg);
  color: var(--tc-text);
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6 {
  font-family: Poppins, Arial, sans-serif;
  color: var(--tc-dark);
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: 52px;
  font-weight: 700;
  margin-bottom: 18px;
}

h2 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 18px;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 12px;
}

p {
  margin-top: 0;
  margin-bottom: 16px;
}

a {
  color: var(--tc-blue);
  text-decoration: none;
  transition: 0.2s ease;
}

a:hover {
  color: var(--tc-blue-dark);
}

.tc-site {
  width: 100%;
  overflow-x: hidden;
}

.tc-container {
  max-width: var(--tc-container);
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* =========================
   HEADER
========================= */

.tc-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(7, 132, 181, 0.08);
  box-shadow: 0 10px 30px rgba(17, 17, 17, 0.05);
  overflow: visible;
}

.tc-header-bar {
  height: 6px;
  width: 100%;
  display: block;
  background: linear-gradient(90deg, #0784B5 0%, #17a2d4 35%, #F5D21F 100%);
}

.tc-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.tc-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
}

.tc-logo img {
  display: block;
  height: 72px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
}

.tc-header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.tc-header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0784B5 0%, #0a97cb 100%);
  color: #ffffff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 12px 26px rgba(7, 132, 181, 0.18);
}

.tc-header-cta:hover {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(7, 132, 181, 0.22);
}

.tc-menu-toggle {
  display: none;
  width: 50px;
  height: 50px;
  border: 1px solid #dce4eb;
  background: #ffffff;
  border-radius: 14px;
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: 0 8px 18px rgba(17, 17, 17, 0.05);
}

.tc-menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #111111;
  border-radius: 999px;
  transition: all 0.25s ease;
}

.tc-menu-toggle.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.tc-menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.tc-menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.tc-header-nav-wrap {
  padding: 0 0 18px;
}

.tc-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  background: linear-gradient(135deg, rgba(7, 132, 181, 0.06) 0%, rgba(245, 210, 31, 0.14) 100%);
  border: 1px solid rgba(7, 132, 181, 0.08);
  border-radius: 20px;
  padding: 14px 18px;
}

.tc-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: #111111;
  font-size: 15px;
  font-weight: 700;
  padding: 10px 14px;
  border-radius: 12px;
  transition: all 0.2s ease;
}

.tc-nav a:hover {
  color: #0784B5;
  background: transparent;
}

.tc-nav a::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 6px;
  height: 2px;
  background: #F5D21F;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.tc-nav a:hover::after {
  transform: scaleX(1);
}

/* Hero */
.tc-hero {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  padding: 90px 0 80px;
}

.tc-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 40px;
  align-items: center;
}

.tc-eyebrow {
  display: inline-block;
  background: rgba(245, 210, 31, 0.22);
  color: var(--tc-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 18px;
}

.tc-hero p {
  font-size: 18px;
  color: var(--tc-text-soft);
  max-width: 700px;
}

.tc-btn-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.tc-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 12px;
  font-weight: 700;
  transition: 0.2s ease;
}

.tc-btn-primary {
  background: var(--tc-blue);
  color: var(--tc-white);
}

.tc-btn-primary:hover {
  background: var(--tc-blue-dark);
  color: var(--tc-white);
  transform: translateY(-1px);
}

.tc-btn-secondary {
  background: var(--tc-yellow);
  color: var(--tc-dark);
}

.tc-btn-secondary:hover {
  background: var(--tc-yellow-dark);
  color: var(--tc-dark);
  transform: translateY(-1px);
}

.tc-hero-card {
  background: var(--tc-white);
  border: 1px solid #e9edf2;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(17,17,17,0.06);
  padding: 28px;
}

.tc-hero-card h3 {
  margin-bottom: 16px;
}

.tc-hero-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.tc-hero-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--tc-border);
  font-weight: 600;
}

.tc-hero-list li:last-child {
  border-bottom: 0;
}

/* Sections */
.tc-section {
  padding: 80px 0;
}

.tc-section-light {
  background: var(--tc-bg-light);
}

.tc-section-head {
  text-align: center;
  margin-bottom: 42px;
}

.tc-section-head p {
  color: var(--tc-text-soft);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.tc-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.tc-card {
  background: var(--tc-white);
  border-radius: 20px;
  border: 1px solid #e9edf2;
  box-shadow: 0 18px 40px rgba(17,17,17,0.06);
  padding: 30px;
  height: 100%;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tc-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(17,17,17,0.08);
}

.tc-card-icon {
  width: 54px;
  height: 54px;
  border-radius: 14px;
  background: rgba(7, 132, 181, 0.12);
  color: var(--tc-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 20px;
  margin-bottom: 20px;
}

.tc-card p {
  color: var(--tc-text-soft);
}

.tc-card a {
  font-weight: 700;
}

.tc-locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.tc-location {
  background: var(--tc-white);
  border: 1px solid #e9edf2;
  border-radius: 20px;
  box-shadow: 0 18px 40px rgba(17,17,17,0.06);
  padding: 30px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.tc-location:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 48px rgba(17,17,17,0.08);
}

.tc-location h3 {
  margin-bottom: 18px;
}

.tc-location strong {
  color: var(--tc-dark);
}

/* CTA */
.tc-cta {
  background: linear-gradient(135deg, #0a7cab 0%, #0784B5 100%);
  color: var(--tc-white);
  padding: 70px 0;
}

.tc-cta h2,
.tc-cta p {
  color: var(--tc-white);
}

.tc-cta p {
  opacity: 0.94;
}

.tc-cta-box {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  flex-wrap: wrap;
}

/* =========================
   FOOTER compact / aligned with header
========================= */
.tc-footer {
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fb 100%);
  border-top: 1px solid rgba(7, 132, 181, 0.10);
  padding: 0 0 18px;
}

.tc-footer-topline {
  height: 6px;
  background: linear-gradient(90deg, #0784B5 0%, #17a2d4 35%, #F5D21F 100%);
}

/* WICHTIG: exakt gleiche Breite wie Header */
.tc-footer .tc-container {
  max-width: var(--tc-container);
  width: 100%;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

.tc-footer-grid-2 {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
}

.tc-footer-card {
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 132, 181, 0.10);
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 14px 30px rgba(17, 17, 17, 0.05);
  min-width: 0;
}

.tc-footer-logo {
  display: inline-flex;
  align-items: center;
}

.tc-footer-logo img {
  height: 62px;
  width: auto;
  object-fit: contain;
  display: block;
}

.tc-footer-tagline {
  margin: 10px 0 16px;
  color: #5f6b76;
  font-weight: 600;
  font-size: 16px;
}

.tc-footer-locations-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.tc-footer-location {
  padding: 20px;
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(7, 132, 181, 0.03) 0%, rgba(245, 210, 31, 0.08) 100%);
  border: 1px solid rgba(7, 132, 181, 0.08);
  min-width: 0;
}

.tc-footer-location h5 {
  margin: 0 0 12px;
  font-size: 18px;
  color: #111111;
}

.tc-footer-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tc-footer-line {
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 10px;
  align-items: start;
}

.tc-footer-icon {
  font-size: 16px;
  line-height: 1.2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 1px;
}

.tc-footer-contact a {
  color: #111111;
  font-weight: 700;
  word-break: break-word;
}

.tc-footer-contact a:hover {
  color: #0784B5;
}

.tc-footer-card h4 {
  margin: 0 0 14px;
  font-size: 20px;
}

.tc-footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tc-footer-links a {
  color: #1a1a1a;
  font-weight: 700;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(7, 132, 181, 0.04);
  border: 1px solid rgba(7, 132, 181, 0.08);
  transition: all 0.2s ease;
}

.tc-footer-links a:hover {
  transform: translateY(-1px);
  background: rgba(245, 210, 31, 0.18);
  border-color: rgba(245, 210, 31, 0.35);
  color: #0784B5;
}

.tc-footer-cta {
  margin-top: 16px;
}

.tc-footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0784B5 0%, #0a97cb 100%);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 12px 26px rgba(7, 132, 181, 0.18);
}

.tc-footer-btn:hover {
  color: #ffffff;
  transform: translateY(-1px);
}

.tc-footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
  color: #6b7680;
  font-size: 14px;
}

.tc-footer-bottom a {
  color: #6b7680;
  font-weight: 700;
}

.tc-footer-bottom a:hover {
  color: #0784B5;
}

.tc-footer-dot {
  margin: 0 10px;
  opacity: 0.6;
}

.tc-footer-grid.tc-footer-grid-2 {
  display: grid;
  width: 100%;
  gap: 24px;
  padding: 24px 0 18px;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) !important;
  align-items: start;
}

.tc-footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.tc-footer-company {
  font-size: 20px;
  font-weight: 900;
  letter-spacing: 0.2px;
  color: #111111;
  line-height: 1.1;
}

.tc-footer-claim {
  margin-top: 4px;
  color: #5f6b76;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.4;
}

/* Logo daneben etwas kompakter, damit Text gut passt */
.tc-footer-logo img {
  height: 58px; /* ggf. 62px, wenn du es noch präsenter willst */
}

.tc-blue { color: #0784B5; }
.tc-yellow { color: #F5D21F; }

/* Mobile: untereinander */
@media (max-width: 767px) {
  .tc-footer-brand {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tc-footer-company {
    font-size: 18px;
  }
}

@media (max-width: 1100px) {
  .tc-footer-grid-2,
  .tc-footer-locations-inline {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .tc-footer-card {
    padding: 18px;
  }

  .tc-footer-logo img {
    height: 46px;
  }

  .tc-footer-tagline {
    font-size: 15px;
  }

  .tc-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* === Footer: Company links oben, Logo rechts oben + mehr Luft === */

.tc-footer-headrow{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:16px;
  margin-bottom:10px;
}

.tc-footer-company{
  font-size:22px;
  font-weight:900;
  letter-spacing:0.2px;
  line-height:1.1;
  color:#111111;
  margin:0;
}

/* Logo größer und rechtsbündig in die Ecke */
.tc-footer-logo{
  margin-left:auto;
  display:inline-flex;
  align-items:flex-start;
  justify-content:flex-end;
}

.tc-footer-logo img{
  height:78px; /* ggf. 84px wenn du noch größer willst */
  width:auto;
  object-fit:contain;
  display:block;
}

/* Abstand zwischen Claim und Standorten wieder herstellen */
.tc-footer-claim{
  margin:0 0 18px 0;
  color:#5f6b76;
  font-weight:600;
  font-size:15px;
  line-height:1.45;
}

.tc-footer-card{
  height:100%;
}

/* Optional: rechts (Rechtliches) Inhalt schöner verteilen */
.tc-footer-card--legal{
  display:flex;
  flex-direction:column;
}

.tc-footer-card--legal .tc-footer-cta{
  margin-top:auto; /* Buttonbereich nach unten drücken */
}

/* Mobile: Logo & Name untereinander */
@media (max-width: 767px){
  .tc-footer-headrow{
    flex-direction:column;
    align-items:flex-start;
  }
  .tc-footer-logo{
    margin-left:0;
  }
  .tc-footer-logo img{
    height:62px;
  }
  .tc-footer-company{
    font-size:18px;
  }
}

/* === Footer Fix: nur Höhe angleichen, Breite bleibt wie vorher === */

/* Wichtig: NICHT grid-template-columns überschreiben!
   Falls du unten noch eine Regel hast, die 1fr 1fr erzwingt, entferne sie.
   (z.B. ".tc-footer-grid.tc-footer-grid-2 { grid-template-columns: 1fr 1fr !important; }") */

/* Panels gleich hoch (HÖHE), ohne Breite anzufassen */
.tc-footer-grid.tc-footer-grid-2{
  align-items: stretch;
}

.tc-footer-card{
  height: 100%;
}

/* Rechtliches: Button nach unten drücken, damit die Karte „voll“ wirkt */
.tc-footer-card--legal{
  display: flex;
  flex-direction: column;
}

.tc-footer-card--legal .tc-footer-cta{
  margin-top: auto;
}

/* Headrow: Name links oben, Logo rechts oben – gleiche Top-Kante */
.tc-footer-headrow{
  display: flex;
  align-items: flex-start;         /* Top aligned */
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;             /* Luft zu den Standorten */
}

.tc-footer-company{
  margin: 0;
  line-height: 1;                  /* gleiche Höhe/Top-Kante stabil */
  padding-top: 2px;                /* feines Alignment zum Logo */
}

/* Logo wirklich oben in die Ecke und nicht „absacken“ */
.tc-footer-logo{
  display: inline-flex;
  align-items: flex-start;         /* Top aligned */
  justify-content: flex-end;
  margin: 0;
  padding: 0;
}

.tc-footer-logo img{
  display: block;
  height: 58px;                    /* bei Bedarf 74/78 */
  width: auto;
  object-fit: contain;
  margin: 0;
}

/* Mobile: bleibt sauber */
@media (max-width: 767px){
  .tc-footer-headrow{
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .tc-footer-logo img{
    height: 58px;
  }
}

/* =========================
   Frontpage additions
========================= */

.tc-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 45px rgba(17, 17, 17, 0.08);
  display: block;
}

.tc-service-card {
  overflow: hidden;
  padding: 0;
}

.tc-service-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}

.tc-card-body {
  padding: 26px;
}

.tc-card-body h3 {
  margin-bottom: 12px;
}

.tc-card-body p {
  color: var(--tc-text-soft);
}

.tc-company-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
}

.tc-company-media img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.08);
  display: block;
}

.tc-locations-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tc-location a {
  font-weight: 700;
}

@media (max-width: 1024px) {
  .tc-company-grid {
    grid-template-columns: 1fr;
  }

  .tc-company-media img {
    min-height: 360px;
  }

  .tc-hero-visual img {
    min-height: 320px;
  }
}

@media (max-width: 767px) {
  .tc-service-card img {
    height: 200px;
  }

  .tc-card-body {
    padding: 20px;
  }

  .tc-company-media img {
    min-height: 260px;
  }
}

/* =========================
   Logo Marquee / Unsere Marken
========================= */

.tc-logo-marquee-section{
  padding: 10px 0 8px;
  position: relative;
}

.tc-logo-marquee-head{
  display:flex;
  align-items:baseline;
  justify-content:space-between;
  gap:16px;
  margin:0 0 14px;
  flex-wrap:wrap;
}

.tc-logo-marquee-kicker{
  font-weight:850;
  letter-spacing:-0.02em;
  color:var(--tc-dark);
  font-size:15px;
}

.tc-logo-marquee-sub{
  color:var(--tc-text-soft);
  font-size:14px;
  max-width:80ch;
}

.tc-marquee{
  border-radius:24px;
  background: linear-gradient(135deg, rgba(7,132,181,0.05) 0%, rgba(245,210,31,0.10) 100%);
  border:1px solid rgba(7,132,181,0.08);
  box-shadow: 0 18px 50px -46px rgba(15,23,42,0.45);
  overflow:hidden;
}

.tc-marquee-mask{
  position:relative;
  overflow:hidden;
}

/* Edge Fade */
.tc-marquee-mask::before,
.tc-marquee-mask::after{
  content:"";
  position:absolute;
  top:0;
  bottom:0;
  width:92px;
  z-index:2;
  pointer-events:none;
}

.tc-marquee-mask::before{
  left:0;
  background: linear-gradient(90deg, rgba(247,249,251,1) 0%, rgba(247,249,251,0) 100%);
}

.tc-marquee-mask::after{
  right:0;
  background: linear-gradient(270deg, rgba(247,249,251,1) 0%, rgba(247,249,251,0) 100%);
}

.tc-marquee-track{
  --tc-marquee-gap: 18px;
  --tc-marquee-speed: 34s;

  display:flex;
  width:max-content;
  align-items:center;
  gap:var(--tc-marquee-gap);
  padding:16px 16px;
  animation: tc-marquee var(--tc-marquee-speed) linear infinite;
  will-change:transform;
}

.tc-marquee-group{
  display:flex;
  align-items:center;
  gap:var(--tc-marquee-gap);
}

.tc-logo-item{
  height:58px;
  padding:10px 16px;
  border-radius:18px;
  background:rgba(255,255,255,0.88);
  border:1px solid rgba(226,232,240,0.95);
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow: 0 8px 20px rgba(17,17,17,0.04);
}

.tc-logo-item img{
  height:100%;
  width:auto;
  max-width:220px;
  object-fit:contain;
  display:block;
}

/* Pause on hover */
.tc-marquee:hover .tc-marquee-track,
.tc-marquee:focus-within .tc-marquee-track{
  animation-play-state: paused;
}

@keyframes tc-marquee{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Motion accessibility */
@media (prefers-reduced-motion: reduce){
  .tc-marquee-track{
    animation:none;
    transform:none;
  }

  .tc-marquee-mask{
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }

  .tc-marquee-mask::before,
  .tc-marquee-mask::after{
    display:none;
  }
}

/* Zubehör / Markenwand */
.tc-brand-wrap{
  display:flex;
  flex-direction:column;
  gap:18px;
}

.tc-brand-grid{
  display:grid;
  gap:16px;
}

.tc-brand-grid--top{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tc-brand-grid--other{
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.tc-brand-item{
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  background:#ffffff;
  border:1px solid rgba(7,132,181,0.08);
  box-shadow:0 12px 28px rgba(17,17,17,0.05);
  overflow:hidden;
}

.tc-brand-item img{
  width:auto;
  max-width:100%;
  object-fit:contain;
  display:block;
}

/* Top-Marken präsenter */
.tc-brand-item--top{
  min-height:110px;
  padding:18px 22px;
  border:1px solid rgba(7,132,181,0.14);
  box-shadow:0 16px 34px rgba(17,17,17,0.06);
}

.tc-brand-item--top img{
  max-height:56px;
}

/* Weitere Marken dezenter */
.tc-brand-item--other{
  min-height:84px;
  padding:14px 18px;
  background:rgba(255,255,255,0.9);
  border:1px solid rgba(7,132,181,0.06);
  opacity:0.92;
}

.tc-brand-item--other img{
  max-height:38px;
  filter:grayscale(12%);
}

/* Hover etwas lebendiger */
.tc-brand-item:hover{
  transform:translateY(-2px);
  transition:all 0.2s ease;
}

/* Tablet */
@media (max-width: 980px){
  .tc-brand-grid--top,
  .tc-brand-grid--other{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 640px){
  .tc-brand-grid--top,
  .tc-brand-grid--other{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tc-brand-item--top{
    min-height:90px;
    padding:14px 16px;
  }

  .tc-brand-item--top img{
    max-height:44px;
  }

  .tc-brand-item--other{
    min-height:72px;
    padding:12px 14px;
  }

  .tc-brand-item--other img{
    max-height:32px;
  }
}

/* Responsive */
@media (max-width: 980px){
  .tc-logo-item{
    height:50px;
    padding:9px 12px;
  }

  .tc-marquee-track{
    padding:12px 12px;
    --tc-marquee-speed: 28s;
  }

  .tc-marquee-mask::before,
  .tc-marquee-mask::after{
    width:64px;
  }
}

@media (max-width: 520px){
  .tc-logo-marquee-section{
    padding:8px 0 4px;
  }

  .tc-logo-item{
    height:44px;
    padding:8px 10px;
  }

  .tc-logo-item img{
    max-width:180px;
  }

  .tc-marquee-track{
    --tc-marquee-gap: 14px;
  }
}

/* Logo-Marquee größer / höher */
.tc-marquee-track{
  padding: 22px 18px;
  --tc-marquee-gap: 22px;
}

.tc-logo-item{
  height: 74px;
  padding: 14px 20px;
  border-radius: 20px;
}

.tc-logo-item img{
  max-width: 260px;
}

/* Tablet */
@media (max-width: 980px){
  .tc-marquee-track{
    padding: 18px 14px;
  }

  .tc-logo-item{
    height: 62px;
    padding: 12px 16px;
  }

  .tc-logo-item img{
    max-width: 220px;
  }
}

/* Mobile */
@media (max-width: 520px){
  .tc-marquee-track{
    padding: 14px 12px;
    --tc-marquee-gap: 16px;
  }

  .tc-logo-item{
    height: 54px;
    padding: 10px 12px;
  }

  .tc-logo-item img{
    max-width: 190px;
  }
}

/* Logo-Marquee deutlich größer */
.tc-marquee-track{
  padding: 28px 22px;
  --tc-marquee-gap: 26px;
}

.tc-logo-item{
  height: 96px;
  padding: 18px 24px;
  border-radius: 22px;
}

.tc-logo-item img{
  max-width: 320px;
}

/* Tablet */
@media (max-width: 980px){
  .tc-marquee-track{
    padding: 22px 16px;
    --tc-marquee-gap: 20px;
  }

  .tc-logo-item{
    height: 76px;
    padding: 14px 18px;
  }

  .tc-logo-item img{
    max-width: 250px;
  }
}

/* Mobile */
@media (max-width: 520px){
  .tc-marquee-track{
    padding: 16px 12px;
    --tc-marquee-gap: 14px;
  }

  .tc-logo-item{
    height: 60px;
    padding: 10px 12px;
    border-radius: 18px;
  }

  .tc-logo-item img{
    max-width: 180px;
  }
}

/* =========================
   Zubehör Markenwand schöner
========================= */

.tc-brand-showcase{
  display:flex;
  flex-direction:column;
  gap:26px;
}

/* Top-Marken Bühne */
.tc-brand-featured{
  display:flex;
  flex-direction:column;
  gap:18px;
  padding:26px;
  border-radius:26px;
  background: linear-gradient(135deg, rgba(7,132,181,0.05) 0%, rgba(245,210,31,0.10) 100%);
  border:1px solid rgba(7,132,181,0.08);
  box-shadow:0 18px 40px rgba(17,17,17,0.05);
}

.tc-brand-featured-row{
  display:grid;
  gap:18px;
}

.tc-brand-featured-row--main{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.tc-brand-featured-row--sub{
  grid-template-columns: repeat(2, minmax(280px, 1fr));
  justify-content:center;
  max-width:760px;
  margin:0 auto;
}

.tc-brand-item{
  display:flex;
  align-items:center;
  justify-content:center;
  background:#ffffff;
  border:1px solid rgba(7,132,181,0.08);
  border-radius:22px;
  box-shadow:0 12px 28px rgba(17,17,17,0.04);
  overflow:hidden;
  transition:all 0.2s ease;
}

.tc-brand-item:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 34px rgba(17,17,17,0.06);
}

.tc-brand-item--featured{
  min-height:150px;
  padding:24px 28px;
}

.tc-brand-item--featured img{
  max-width:100%;
  max-height:72px;
  width:auto;
  object-fit:contain;
  display:block;
}

.tc-brand-item--featured-small{
  min-height:126px;
}

.tc-brand-item--featured-small img{
  max-height:58px;
}

/* Sonstige Marken */
.tc-brand-grid--other-clean{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:16px;
}

.tc-brand-item--other-clean{
  min-height:110px;
  padding:18px 20px;
  background:rgba(255,255,255,0.92);
}

.tc-brand-item--other-clean img{
  max-width:100%;
  max-height:54px;
  width:auto;
  object-fit:contain;
  display:block;
}

/* einzelne letzte Karte schöner */
.tc-brand-grid--other-clean .tc-brand-item--other-clean:last-child{
  grid-column:auto;
}

/* Tablet */
@media (max-width: 1024px){
  .tc-brand-featured-row--main{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tc-brand-featured-row--sub{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width:none;
  }

  .tc-brand-grid--other-clean{
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Mobile */
@media (max-width: 640px){
  .tc-brand-featured{
    padding:18px;
    gap:14px;
  }

  .tc-brand-featured-row--main,
  .tc-brand-featured-row--sub,
  .tc-brand-grid--other-clean{
    grid-template-columns: 1fr 1fr;
  }

  .tc-brand-item--featured{
    min-height:110px;
    padding:16px 18px;
  }

  .tc-brand-item--featured img{
    max-height:48px;
  }

  .tc-brand-item--featured-small{
    min-height:96px;
  }

  .tc-brand-item--featured-small img{
    max-height:42px;
  }

  .tc-brand-item--other-clean{
    min-height:86px;
    padding:14px 16px;
  }

  .tc-brand-item--other-clean img{
    max-height:40px;
  }
}

/* =========================
   Unser Team / Ansprechpartner
========================= */

.tc-team-block{
  margin-top: 34px;
}

.tc-team-block-title{
  margin: 0 0 18px;
  font-size: 26px;
  line-height: 1.2;
}

.tc-team-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.tc-team-grid--wide{
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.tc-team-card{
  background: #ffffff;
  border: 1px solid rgba(7,132,181,0.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 14px 32px rgba(17,17,17,0.05);
  min-width: 0;
  height: 100%;
}

.tc-team-card h4{
  margin: 0 0 14px;
  font-size: 24px;
  line-height: 1.2;
}

.tc-team-role{
  display: inline-flex;
  align-items: center;
  margin-bottom: 12px;
  padding: 7px 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(7,132,181,0.08) 0%, rgba(245,210,31,0.16) 100%);
  border: 1px solid rgba(7,132,181,0.08);
  font-size: 13px;
  font-weight: 700;
  color: #4a5968;
}

.tc-contact-list{
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.tc-contact-item{
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  color: var(--tc-text-soft);
}

.tc-contact-icon{
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(7,132,181,0.08);
  color: #0784B5;
  font-size: 16px;
  line-height: 1;
}

.tc-contact-item a{
  color: #111111;
  font-weight: 700;
  word-break: break-word;
}

.tc-contact-item a:hover{
  color: #0784B5;
}

.tc-team-card--wide h4{
  font-size: 22px;
}

@media (max-width: 1100px){
  .tc-team-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .tc-team-grid--wide{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px){
  .tc-team-grid{
    grid-template-columns: 1fr;
  }

  .tc-team-card{
    padding: 20px;
  }

  .tc-team-card h4{
    font-size: 22px;
  }

  .tc-team-block-title{
    font-size: 22px;
  }
}

/* Team-Rolle dezenter + unter dem Namen */
.tc-team-card h4{
  margin: 0 0 6px; /* weniger Abstand nach unten */
}

.tc-team-role{
  display: block;
  margin: 0 0 14px;     /* Abstand zu Kontaktinfos */
  padding: 0;           /* kein Badge mehr */
  border: none;
  background: transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--tc-text-soft);
  letter-spacing: 0;
}

/* Optional: kleines Icon/Strich davor (dezent) */
.tc-team-role::before{
  content: "•";
  margin-right: 8px;
  color: rgba(7,132,181,0.55);
}

/* Team: Links farbig + nicht fett */
.tc-team-card .tc-contact-item a{
  font-weight: 500;              /* nicht fett */
  color: var(--tc-blue);         /* blau */
  text-decoration: none;
}

.tc-team-card .tc-contact-item a:hover{
  color: var(--tc-blue-dark);
  text-decoration: underline;
}

/* =========================================
   FOOTER RESPONSIVE FIX
========================================= */

/* Grundsätzlich verhindern, dass etwas rausläuft */
.tc-footer,
.tc-footer * {
  box-sizing: border-box;
}

.tc-footer .tc-container {
  width: 100%;
  max-width: var(--tc-container);
  margin: 0 auto;
  padding: 0 24px;
}

.tc-footer-grid.tc-footer-grid-2 {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 24px;
  align-items: stretch;
}

.tc-footer-card {
  min-width: 0;
  height: 100%;
}

.tc-footer-locations-inline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.tc-footer-location {
  min-width: 0;
}

.tc-footer-line {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  align-items: start;
}

.tc-footer-line a,
.tc-footer-line span {
  min-width: 0;
  word-break: break-word;
}

.tc-footer-links a {
  word-break: break-word;
}

/* Tablet */
@media (max-width: 1100px) {
  .tc-footer-grid.tc-footer-grid-2 {
    grid-template-columns: 1fr;
  }

  .tc-footer-locations-inline {
    grid-template-columns: 1fr 1fr;
  }

  .tc-footer-card--legal {
    height: auto;
  }
}

/* Kleineres Tablet */
@media (max-width: 900px) {
  .tc-footer .tc-container {
    padding: 0 18px;
  }

  .tc-footer-headrow {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .tc-footer-logo {
    margin-left: 0;
  }

  .tc-footer-logo img {
    height: 56px;
  }

  .tc-footer-company {
    font-size: 18px;
  }

  .tc-footer-locations-inline {
    grid-template-columns: 1fr;
  }

  .tc-footer-card {
    padding: 18px;
  }
}

/* Smartphone */
@media (max-width: 640px) {
  .tc-footer {
    padding: 0 0 14px;
  }

  .tc-footer-topline {
    height: 5px;
  }

  .tc-footer-grid {
    gap: 16px;
    padding: 18px 0 14px;
  }

  .tc-footer-card {
    border-radius: 18px;
    padding: 16px;
  }

  .tc-footer-headrow {
    margin-bottom: 14px;
  }

  .tc-footer-company {
    font-size: 17px;
    line-height: 1.15;
  }

  .tc-footer-logo img {
    height: 50px;
  }

  .tc-footer-location {
    padding: 16px;
    border-radius: 14px;
  }

  .tc-footer-location h5 {
    font-size: 17px;
    margin-bottom: 10px;
  }

  .tc-footer-contact {
    gap: 9px;
  }

  .tc-footer-line {
    grid-template-columns: 20px minmax(0, 1fr);
    gap: 8px;
  }

  .tc-footer-icon {
    font-size: 15px;
  }

  .tc-footer-links {
    gap: 8px;
  }

  .tc-footer-links a {
    padding: 10px 12px;
    font-size: 15px;
  }

  .tc-footer-btn {
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .tc-footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .tc-footer-bottom-right {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
  }

  .tc-footer-dot {
    display: none;
  }
}

/* Sehr kleine Geräte */
@media (max-width: 420px) {
  .tc-footer .tc-container {
    padding: 0 14px;
  }

  .tc-footer-card {
    padding: 14px;
  }

  .tc-footer-company {
    font-size: 16px;
  }

  .tc-footer-logo img {
    height: 44px;
  }

  .tc-footer-location {
    padding: 14px;
  }

  .tc-footer-links a {
    font-size: 14px;
  }

  .tc-footer-bottom {
    font-size: 13px;
  }
}

/* Footer: auf kleinen Geräten Reihenfolge -> Standorte zuerst, Rechtliches darunter */
@media (max-width: 1100px) {
  .tc-footer-grid.tc-footer-grid-2 {
    display: grid;
    grid-template-columns: 1fr;
  }

  .tc-footer-card--contact {
    order: 1;
  }

  .tc-footer-card--legal {
    order: 2;
  }
}

/* Footer auf kleinen Geräten untereinander */
@media (max-width: 900px) {
  .tc-footer-grid.tc-footer-grid-2 {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .tc-footer-card--contact {
    order: 1 !important;
  }

  .tc-footer-card--legal {
    order: 2 !important;
  }

  .tc-footer-card--legal,
  .tc-footer-card--contact {
    width: 100% !important;
    max-width: 100% !important;
  }

  .tc-footer-links a {
    width: 100%;
    white-space: normal;
    word-break: break-word;
  }

  .tc-footer-btn {
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    text-align: center;
    justify-content: center;
  }
}

/* Karriere: Cards auf Mobile untereinander */
@media (max-width: 900px){
  #tc-karriere .tc-grid-3{
    grid-template-columns: 1fr !important;
  }
}

/* Downloads: Cards auf Mobile untereinander */
@media (max-width: 900px){
  #tc-downloads .tc-grid-3{
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }
}

/* Pages: weniger Abstand zwischen Header und Inhalt + weniger Luft zum Footer */
.tc-page-section{
  padding-top: 36px;   /* vorher deutlich mehr */
  padding-bottom: 36px;
}

/* Wenn eine Seite mit einem großen Block startet: noch kompakter */
.tc-page-section .tc-section-head{
  margin-bottom: 22px;
}

/* Letzte Section auf einer Page: weniger Abstand nach unten */
.tc-page-section > .tc-container > :last-child{
  margin-bottom: 0;
}

/* Optional: wenn du es noch kompakter willst */
@media (max-width: 767px){
  .tc-page-section{
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

/* alle normalen Seiten (nicht Startseite) kompakter */
body.page .tc-section{
  padding-top: 36px;
  padding-bottom: 36px;
}

@media (max-width: 767px){
  body.page .tc-section{
    padding-top: 22px;
    padding-bottom: 22px;
  }
}

/* General helpers */
section,
[id] {
  scroll-margin-top: 180px;
}

/* Hide theme header/footer and default wrappers */
.site-header,
.site-footer,
header.site-header,
footer.site-footer,
#masthead,
#colophon,
.entry-header,
.page-header,
.site-title,
.site-description,
nav.site-navigation,
nav[aria-label="Main Menu"],
nav[aria-label="Footer Menu"],
h1.entry-title,
.page-title,
.entry-title {
  display: none !important;
}

.site-main,
.page-content,
.entry-content,
.content-area,
.site-content,
main {
  margin: 0 !important;
  padding: 0 !important;
}

body.page .site,
body.home .site,
.site,
.site-main,
.site-content,
.content-area,
.entry-content,
.wp-site-blocks {
  max-width: 100% !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* Optional: hide admin bar on frontend while logged in
#wpadminbar {
  display: none !important;
}
html {
  margin-top: 0 !important;
}
*/

@media (max-width: 1024px) {
  .tc-logo img {
    height: 62px;
  }

  .tc-header-cta {
    padding: 11px 18px;
  }

  .tc-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 860px) {
  .tc-menu-toggle {
    display: inline-flex;
  }

  .tc-header-cta {
    display: none;
  }

  .tc-header-nav-wrap {
    display: none;
    padding: 0 0 18px;
  }

  .tc-header-nav-wrap.is-open {
    display: block;
  }

  .tc-nav {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    padding: 14px;
    border-radius: 18px;
  }

  .tc-nav a {
    width: 100%;
    justify-content: flex-start;
    padding: 14px 16px;
    background: transparent;
  }   
}

@media (max-width: 767px) {
  .tc-container {
    padding: 0 18px;
  }

  .tc-header-top {
    padding: 14px 0;
  }

  .tc-logo img {
    height: 48px;
  }

  .tc-menu-toggle {
    width: 46px;
    height: 46px;
    border-radius: 12px;
  }
}

/* Frontpage Hero auf Mobile schöner */
@media (max-width: 767px){
  .tc-hero{
    padding: 20px 0 34px;
  }

  .tc-hero-grid{
    display: flex;
    flex-direction: column;
    gap: 18px;
  }

  .tc-hero-visual{
    order: 1;
  }

  .tc-hero-content{
    order: 2;
  }

  .tc-hero-visual img{
    width: 100%;
    min-height: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
  }

  .tc-hero-content .tc-eyebrow{
    margin-bottom: 12px;
  }

  .tc-hero-content h1{
    font-size: 32px;
    line-height: 1.08;
    margin-bottom: 14px;
  }

  .tc-hero-content p{
    font-size: 17px;
    line-height: 1.55;
    margin-bottom: 0;
  }

  .tc-btn-row{
    margin-top: 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 10px;
  }

  .tc-btn-row .tc-btn{
    width: 100%;
    justify-content: center;
  }
}