* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* ================= Header / Nav ================= */

/*
body.service-hardware    { --accent: #207EAF; --accent-rgb: 32,126,175; }
body.service-embedded    { --accent: #08D9CC; --accent-rgb: 8,217,204; }
body.service-audio       { --accent: #6500C3; --accent-rgb: 101,0,195; }
body.service-rf          { --accent: #FEBC34; --accent-rgb: 254,188,52; }
body.service-measurement { --accent: #D3D04B; --accent-rgb: 211,208,75; }
body.service-production  { --accent: #DC9868; --accent-rgb: 220,152,104; }
body.service-other       { --accent: #868686; --accent-rgb: 134,134,134; }
*/

body.service-embedded    { --accent: #1FBF8F; --accent-rgb: 31,191,143; }
body.service-measurement { --accent: #B6C93A; --accent-rgb: 182,201,58; }
body.service-rf          { --accent: #F59E0B; --accent-rgb: 245,158,11; }
body.service-production  { --accent: #C8743A; --accent-rgb: 200,116,58; }
body.service-hardware    { --accent: #207EAF; --accent-rgb: 32,126,175; }
body.service-audio       { --accent: #7A3DF0; --accent-rgb: 122,61,240; }
body.service-other       { --accent: #D64545; --accent-rgb: 214,69,69; }

body.page-legal          { --accent: var(--teal);  --accent-rgb: 8,217,204; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

header {
  position: sticky;
  top: 0;
  z-index: 1000;
}

nav a,
header a {
  text-decoration: none;
}

nav a:hover {
  text-decoration: none;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.header-nav a {
  text-decoration: none;
  font-weight: 500;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;

  background: transparent;
  border-bottom: none;

  transition: background 180ms ease, box-shadow 180ms ease;
}

.text-accent {
  color: var(--accent);
  font-weight: 500;       
}

.text-muted-accent {
  color: color-mix(in srgb, var(--accent) 60%, var(--text));
}

header nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header nav > div:last-child {
  display: flex;
  gap: 32px;          /* Abstand zwischen Start | Leistungen | … */
}

/* Sichtbar über Hero */
header nav a {
  color: white;
}

.portfolio-details summary {
  cursor: pointer;
  margin-top: 14px;
  font-size: 0.9rem;
  color: var(--accent);
  list-style: none;
  user-select: none;
}

/* Standard-Pfeil entfernen */
.portfolio-details summary::-webkit-details-marker {
  display: none;
}

.portfolio-details summary::after {
  content: " +";
  font-weight: 600;
}

.portfolio-details[open] summary::after {
  content: " −";
}


/* Scroll-Zustand */
header.is-sticky {
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(1.1) blur(2px);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

header.is-sticky nav a {
  color: var(--text);
}

  nav div {
    margin-top: 12px;
  }

/* Türkise Linie */
header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  background: var(--teal);
  opacity: 0;
  transition: opacity 160ms ease;
}

header.is-sticky::after {
  opacity: 1;
}

header.is-sticky nav a:hover {
  color: var(--teal);
}

nav {
  max-width: var(--maxw);
  margin: auto;
  padding: 16px var(--gutter);
  display: flex;
  gap: 28px;
  justify-content: space-between;
  align-items: center;
}

/* Header sichtbar über dunklem Hero */
/*.hero--hardware + header,
header:not(.is-sticky) {
  background: linear-gradient(
    to bottom,
    rgba(7,16,39,0.55),
    rgba(7,16,39,0)
  );
}
*/



nav a:hover {
  color: var(--teal);
}


header:not(.is-sticky) nav a:hover {
  color: var(--teal);
}

.site-logo {
  transition: opacity 200ms cubic-bezier(.4,0,.2,1);
  opacity: 1;
}

.logo-wrap {
  position: relative;
  height: 52px;
}

.site-logo {
  position: absolute;
  top: 0;
  left: 0;
  height: 52px;
  transition: opacity 180ms ease;
  will-change: opacity;
}

/* Startzustand (Hero) */
.logo--light {
  opacity: 1;
}

.logo--dark {
  opacity: 0;
}

/* Beim Sticky-Header */
header.is-sticky .logo--light {
  opacity: 0;
}

header.is-sticky .logo--dark {
  opacity: 1;
}



/* ================= Layout ================= */

.container {
  max-width: var(--maxw);
  margin: auto;
  padding: 64px var(--gutter);
}

.section {
  margin-top: 4rem;
}

/* ================= Hero ================= */

.hero {
  position: relative;
  width: 100%;
  min-height: 65vh;
  display: flex;
  align-items: center;      /* vertikal */
  justify-content: center;  /* horizontal */
  padding: 96px 0 72px;
  background: var(--navy);
  overflow: hidden;
}

.hero__center {
  position: relative;
  z-index: 1;
  padding: 0 24px;
  max-width: 1200px;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(7,16,39,0.72), rgba(7,16,39,0.72)),
    url("../assets/images/hero.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
  transition: transform 0.05s linear;
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero__claims {
  text-align: center;
  margin-bottom: 28px;
}

.hero__subline {
  margin-top: 36px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
  max-width: 52ch;
  margin-left: 0;
  text-align: left;
}

.accent {
  margin-top: 18px;
  width: 64px;
  height: 3px;
  background: var(--teal);
  border-radius: 2px;
  margin-left: 0;
}



.claim {
  font-family: "Open Sans", system-ui, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4.2rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.05;
  white-space: nowrap;
  text-transform: uppercase;
  opacity: 0;
}

.hero__subline {
  margin-top: 136px;
  font-size: 1.05rem;
  color: rgba(255,255,255,0.9);
}

/* Claim 1 */
.claim--teal {
  color: var(--teal);
  letter-spacing: 0.05em; 
  animation: fadeUp 900ms ease forwards;
  animation-delay: 150ms;
}

/* Claim 2 */
.claim--white {
  color: rgba(255,255,255,0.92);
  letter-spacing: 0.015em;
  margin-top: 10px;
  animation: fadeUp 900ms ease forwards;
  animation-delay: 900ms;
}


.hero--subpage {
  min-height: 22vh;
  align-items: flex-end;
  padding-bottom: 48px;
}

/* für Unterseiten, nicht für index.html */
.hero__title {
  margin: 0;
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  /*text-shadow: 0 1px 6px rgba(0,0,0,0.35);*/
  border-left: 3px solid var(--teal);
  padding-left: 12px;
  color: rgba(255,255,255,0.95);
}

.feature-list {
  position: relative;
  list-style: none;
  margin: 16px 0 0;
  padding-left: 24px;
}

.feature-list::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  /*background: var(--teal);*/
  background: var(--accent);
}

.feature-list li {
  margin-bottom: 10px;
  font-size: 0.95rem;
  line-height: 1.5;
}

html {
  font-size: 17px;
}

p,
li {
  font-size: 1.1rem;
  line-height: 1.6;
}




.btn {
  display: inline-block;
  margin-top: 16px;
  padding: 10px 26px;
  border: 1.5px solid var(--teal);
  color: var(--teal);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 140ms ease, color 140ms ease;
}

.btn:hover {
  background: var(--teal);
  color: var(--navy);
}

.footer-cta {
  margin-top: 32px;
  font-size: 0.9rem;
}

.footer-cta a {
  color: var(--teal);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-cta a:hover {
  text-decoration: underline;
}

.section-divider {
  width: 48px;
  height: 1.5px;
  /*background: linear-gradient(
    to right,
    var(--teal),
    rgba(8,217,204,0.2)  
  );*/

  background: linear-gradient(
    to right,
    var(--accent),
    color-mix(in srgb, var(--accent) 30%, transparent)
  );  
  margin: 72px 0 24px;
}

.specialties {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 64px;
  margin-top: 32px;
}

.specialty {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  margin-top: 56px;
}

.specialty h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.specialty p {
  max-width: 70ch;
  margin-bottom: 16px;
}

.specialty__icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--teal);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.85;
}

.specialty__content h3 {
  margin-top: 0;
}

.section--workflow {
  margin-top: 32px;
  padding: 36px 0;
  background: var(--bg-soft);
  padding-bottom: 48px;
}

.section--workflow .section-title {
  position: relative;
  padding-left: 20px;
}

.section--workflow .section-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25em;
  width: 3px;
  height: 1.4em;
  background: var(--teal);
}

.section.section--workflow {
  margin-top: 32px;   /* statt 4rem */
}

.section--scenarios {
  margin-top: 56px;
}

.scenarios {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px 48px;
  margin-top: 24px;
}

.scenario {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

/*
.scenario__marker {
  width: 6px;
  height: 6px;
  margin-top: 0.55em;
  background: var(--teal);
  border-radius: 50%;
  flex-shrink: 0;
}
*/

.scenario--dash .scenario__marker {
  display: inline-flex;
  align-items: center;
  width: auto;
  height: auto;
  margin-top: 0;

  background: none;
  border-radius: 0;

  color: var(--accent, var(--teal));
  font-weight: 500;
  opacity: 0.85;
  line-height: auto;
}

.scenario--dash .scenario__marker::before {
  content: "–";
}


.scenario p {
  margin: 0;
  max-width: 60ch;
}


/* Animation */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* ================= Intro ================= */

.section--intro {
  margin-top: 32px;           /* etwas Luft nach dem Hero */

}

.intro-text {
  max-width: 68ch;
  font-size: 1.15rem;
  line-height: 1.65;
  color: var(--text);
}

.intro-text strong {
  font-weight: 600;
  letter-spacing: 0.02em;
}



/* ================= Services ================= */

.services {
  margin-top: 72px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 32px;
}

.service-card {
  position: relative;
  padding: 28px 26px;
  border: 1px solid rgba(7,16,39,0.08);
  background: #fff;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 3px;
  width: 100%;
  background: var(--teal);
}

.service-card h3 {
  margin: 12px 0 8px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--navy);
}

.service-card p {
  margin: 0;
  font-size: 0.95rem;
  color: rgba(7,16,39,0.85);
}


.service-card--link {
  text-decoration: none;
  color: inherit;
  display: block;
}

.service-card--link * {
  text-decoration: none;
  color: inherit;
}

.service-card--link:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.service-card--link:hover h3 {
  color: var(--teal);
}

.service-card--link:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  transform: translateY(-2px);
}

.callout {
  background: rgba(32, 126, 175, 0.08); /* Hardware-Blau */
  border-left: 3px solid #207EAF;
  padding: 24px 28px;
  margin: 48px 0;
  max-width: 70ch;
}

/* ===== Hardware-Farbe ===== */
:root {
  --accent: var(--teal);
  --hw: #207EAF;
}

/* ===== Hero ===== */

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

/*
.hero--hardware .hero__overlay {
  width: 100%;                
  max-width: none; 
  background: rgba(32, 126, 175, 0.28); 
  backdrop-filter: blur(4px);
  border-left: 3px solid var(--hw);
  padding: 28px 36px;
}
*/

/*
.hero--hardware .hero__overlay > * {
  max-width: 520px;
}
*/


.hero__overlay h1,
.hero__overlay p {
  color: rgba(255,255,255,0.96);
}

/*
.hero--hardware h1 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.96);
}
*/

/*
.hero--hardware p {
  margin-top: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  opacity: 0.9;
  color: rgba(255,255,255,0.96);
}
*/

/* ================= Service Content ================= */

.feature-list--service::before {
  background: var(--accent);
}

.hw-block {
  margin-top: 64px;
}

.hw-block--intro h2 {
  margin-bottom: 8px;
}

.hw-subtitle {
  max-width: 60ch;
  color: rgba(7,16,39,0.75);
}

.hw-block--quote {
  margin-top: 72px;
  padding-left: 24px;
  border-left: 3px solid var(--accent);
}

.hw-quote {
  font-style: italic;
  color: rgba(7,16,39,0.75);
}

/* ================= Service Hero (DNA) ================= */

.hero--service {
  --accent: var(--teal);
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  width: 100%;
}

.hero--service .hero__overlay {
  width: 100%;
  background: color-mix(in srgb, var(--accent) 28%, transparent);
  backdrop-filter: blur(4px);
  border-left: 3px solid var(--accent);
  padding: 28px 36px;
}

.hero--service .hero__overlay-inner {
  max-width: 560px;
}

.hero--service h1 {
  margin: 0;
  font-size: 1.6rem;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.96);
}

.hero--service p {
  margin-top: 8px;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: rgba(255,255,255,0.92);
}

/* ===== Content ===== */

.hw-block {
  margin-top: 64px;
} 

.hw-block--intro h2 {
  margin-bottom: 8px;
}

.hw-subtitle {
  color: rgba(7,16,39,0.75);
  max-width: 60ch;
}

.hw-text {
  max-width: 72ch;
}

/* Feature-Liste hardware */
.feature-list--hardware::before {
  background: var(--hw);
}

/* Quote */
/*.hw-block--quote {
  margin-top: 72px;
  padding-left: 24px;
  border-left: 3px solid var(--hw);
}*/

.hw-quote {
  font-style: italic;
  color: rgba(7,16,39,0.75);
}



.hero__overlay-inner {
  max-width: 560px;   /* Textbreite, Kasten bleibt 100% */
}
/* Hero Overlay */
.hero__overlay {
  width: 100%;
  background: color-mix(in srgb, var(--accent) 28%, transparent);
  backdrop-filter: blur(4px);
  border-left: 3px solid var(--accent);
  padding: 28px 36px;
}

.feature-list::before,
.hw-block--quote,
.section-divider {
  background: var(--accent);
  border-color: var(--accent);
}

/* ================= Footer ================= */

footer {
  background: var(--navy);
  color: var(--white);
  padding: 48px 0;
}

.footer-head {
  margin-bottom: 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
}

.footer-col p {
  margin: 0;
  line-height: 1.6;
}

.site-footer a,
.site-footer a:hover,
.site-footer a:focus,
.site-footer a:active {
  text-decoration: none;
}

footer a {
  color: var(--teal);
  text-decoration: none;
}

footer a:hover {
  text-decoration: none;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  .claim {
    animation: none;
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1280px) {
  .claim--teal {
    letter-spacing: 0.045em;
  }

  .claim--white {
    letter-spacing: 0.02em;
  }
}

@media (max-width: 900px) {
  .claim--teal {
    letter-spacing: 0.14em;
  }

  .claim--white {
    letter-spacing: 0.05em;
  }
}

@media (max-width: 900px) {
  .claim--teal {
    letter-spacing: 0.04em;
  }
  .claim--white {
    letter-spacing: 0.025em;
  }
}



/* ================= Mobile ================= */

@media (max-width: 768px) {

  nav {
    flex-direction: column;
    align-items: flex-start;
  }

  nav div {
    margin-top: 12px;
  }

  nav a {
    margin-left: 24px;
    margin-right: 16px;
  }

  nav div a {
    margin-left: 32px;
  }

  .container {
    padding: 48px 20px;
  } 

  .hero {
    min-height: 520px;
    padding: 72px 0 56px;
  }

  .hero__subline {
    margin-top: 28px;
    font-size: 1rem;
  }

  .services {
    margin-top: 56px;
  }

  .service-grid {
    gap: 24px;
  }

  .specialties {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .specialty {
    grid-template-columns: 1fr;
  }

  .specialty__icon {
    display: none;
  }

  .hero--subpage {
    min-height: 24vh;
    padding-bottom: 40px;
  }

  .scenarios {
    grid-template-columns: 1fr;
  }

  /*.hero--hardware .hero__overlay {
    width: 100%;
    padding: 20px 24px;
  }*/

  /*
  .hero--hardware .hero__overlay > * {
    max-width: 100%;
  }
  */

    .hero--service .hero__overlay {
    padding: 20px 24px;
  }

  .hero--service .hero__overlay-inner {
    max-width: 100%;
  }


}

/* Spezialgebiete: visuell etwas leichter */
.service-card--specialty {
  background: #fafbfc;
}

/* Icon oben links, ruhig integriert */
.service-icon {
  margin-bottom: 12px;
}

.service-icon svg {
  width: 42px;
  height: 42px;
  stroke: var(--teal);
  stroke-width: 1.5;
  fill: none;
  opacity: 0.9;
}

@media (max-width: 600px) {
  .claim--teal,
  .claim--white {
    letter-spacing: 0.035em;
  }
}


/* ================= Footer ================= */

.site-footer {
  background: var(--navy);
  color: var(--white);
  padding: 56px 0 32px;
}


.site-footer a {
  color: var(--teal);
  text-decoration: none;
  transition: color 120ms ease;
}


.site-footer a:hover {
  color: #ffffff;
  text-decoration: none;
}

/* --- Kopfbereich --- */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}

.footer-brand {
  font-size: 0.95rem;
  line-height: 1.5;
}

.footer-brand strong {
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 1.05rem;
}

/* CTA im Footer */
.btn--footer {
  font-size: 0.75rem;
  padding: 10px 22px;
  border-color: var(--teal);
  color: var(--teal);
  margin-top: 0;          /* überschreibt alte btn-Regeln */
  white-space: nowrap;
}

.btn--footer:hover {
  background: var(--teal);
  color: var(--navy);
}

/* --- Link Grid --- */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
  padding-bottom: 48px;
}

.footer-col h4 {
  margin-bottom: 14px;
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.95rem;
  color: var(--teal);
  text-decoration: none;
}

/* --- Bottom Line --- */
.footer-bottom {
  padding: 24px var(--gutter);
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  opacity: 0.7;
  margin-top: 64px;
}

/* ================= Mobile ================= */

@media (max-width: 900px) {
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .btn--footer {
    width: 100%;
    text-align: center;
  }
}



/* ---------- Top-Zeile ---------- */

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 48px;
}


/* CTA rechts */
.btn--footer {
  font-size: 0.8rem;
  padding: 10px 28px;
}

/* ---------- Grid ---------- */

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 48px;
}

.footer-col h4 {
  margin-bottom: 14px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
}

.footer-col a {
  display: block;
  margin-bottom: 8px;
  font-size: 0.9rem;
  color: var(--teal);
  text-decoration: none;
}

.footer-col a:hover {
  text-decoration: underline;
}

/* ---------- Bottom ---------- */

.footer-bottom {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.12);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

@media (max-width: 900px) {

  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

}

@media (max-width: 520px) {

  .footer-grid {
    grid-template-columns: 1fr;
  }

}

@media (max-width: 900px) {
  .footer-top-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 520px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }
}


.service-tile {
  display: block;
  padding: 28px;
  text-decoration: none;
  color: var(--text);
  background: color-mix(in srgb, var(--accent) 18%, white);
  border-left: 4px solid var(--accent);
  transition: transform .2s ease, box-shadow .2s ease;
}

.service-tile h2 {
  margin: 0 0 8px 0;
  font-size: 1.2rem;
}

.service-tile p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.9;
}

.service-tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}



/* ================= About / Wer wir sind ================= */

.about-intro {
  margin-top: 32px;
  max-width: 70ch;
}

.about-intro h1 {
  margin-bottom: 12px;
}

.about-lead {
  font-size: 1.15rem;
  line-height: 1.6;
  color: rgba(7,16,39,0.8);
}

.about-text {
  margin-top: 56px;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}

.about-columns p {
  margin-bottom: 18px;
  max-width: 60ch;
}

.about-quote {
  margin-top: 72px;
  padding-left: 24px;
  border-left: 3px solid var(--teal);
  max-width: 72ch;
}

.about-quote blockquote {
  margin: 0;
  font-style: italic;
  color: rgba(7,16,39,0.75);
}

.about-person {
  margin-top: 72px;
}

.about-person-grid {
  display: grid;
  grid-template-columns: 1fr 260px;
  gap: 64px;
  align-items: center;
}

.about-person-text p {
  margin-bottom: 12px;
}

.signature {
  display: block;
  height: 42px;
  margin: 12px 0;
}

.about-name {
  margin-top: 8px;
}

.about-person-image img {
  width: 100%;
  border-radius: 2px;
}


@media (max-width: 900px) {

  .about-columns {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-person-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .about-person-image {
    max-width: 260px;
  }

}


/* =========================
   INFO BOX (robust)
   ========================= */


/*   
.info-box {
  position: relative;
  padding: 24px 28px;
  margin: 32px 0;
  border-left: 3px solid var(--accent, var(--teal));
  background: rgba(7,16,39,0.06); 

.info-box {
  background: rgba(var(--accent-rgb, 7,16,39), 0.12);
}

.info-box h3 {
  margin: 0 0 10px;
}

.info-box p:last-child {
  margin-bottom: 0;
}
*//* =========================
   INFO BOX (final, robust)
   ========================= */

.info-box {
  position: relative;
  padding: 24px 28px;
  margin: 32px 0;

  border-left: 3px solid var(--accent, var(--teal));

  background: color-mix(
    in srgb,
    var(--accent, var(--teal)) 14%,
    white
  );
}

.info-box h3 {
  margin: 0 0 10px;
}

.info-box p:last-child {
  margin-bottom: 0;
}
