/* ============================================================
   Bonimpex AG Website
   Helle Bonimpex-Blauwelt, viel Whitespace, minimale Navigation
   ============================================================ */

:root {
  --teal:       #4c74a3;
  --teal-dim:   #3d608a;
  --kanet-green: #5ab82e;
  --ink:        #294765;       /* weiches Navy statt Schwarz */
  --ink-blue:   #385f91;       /* Bonimpex-Blau fuer Nav, Header und Buttons */
  --ink-2:      #4c75a6;       /* helleres Blau fuer Hover/Sekundaerflaechen */
  --blue:       #536bad;
  --white:      #ffffff;
  --off-white:  #f3f8fa;       /* kuehles, leicht blaues Weiss */
  --muted:      #72869b;
  --on-blue:    rgba(255,255,255,0.82);
  --on-blue-accent: #c6ddf0;
  --border:     rgba(255,255,255,0.08);
  --border-d:   #d7e2e8;
  --radius-sm:  6px;
  --radius:     12px;
  --card-radius: 8px;
  --card-shadow: 0 18px 45px rgba(41, 71, 101, 0.08);
  --card-shadow-hover: 0 26px 58px rgba(41, 71, 101, 0.13);
  --transition: 0.22s ease;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Segoe UI', 'Helvetica Neue', Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  animation: page-enter 0.34s ease both;
}
body.page-leaving {
  animation: page-leave 0.18s ease both;
}
@keyframes page-enter {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes page-leave {
  from { opacity: 1; }
  to   { opacity: 0; }
}
@keyframes soft-rise-in {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes hero-platform-in {
  from { opacity: 0; transform: translateY(34px) scaleX(0.94); }
  to   { opacity: 1; transform: translateY(0) scaleX(1); }
}
@keyframes hero-pack-front-in {
  from { opacity: 0; transform: translateY(42px) scale(0.96); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
@keyframes hero-pack-back-in {
  from { opacity: 0; transform: translate(24px, 38px) scale(0.86); }
  to   { opacity: 0.88; transform: translate(0, 0) scale(0.9); }
}
@keyframes scroll-dot-pop {
  0%, 100% { opacity: 0.22; transform: translate(-50%, -36%) scale(0.86); }
  42%      { opacity: 0.55; transform: translate(-50%, -105%) scale(1.06); }
  62%      { opacity: 0.34; transform: translate(-50%, -64%) scale(0.96); }
}
@keyframes scroll-trail-dots {
  0%, 100% { opacity: 0.12; transform: translate(-50%, 6px); }
  42%      { opacity: 0.44; transform: translate(-50%, 18px); }
  70%      { opacity: 0.24; transform: translate(-50%, 10px); }
}
@keyframes mobile-menu-in {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  body,
  body.page-leaving {
    animation: none;
  }
  .hero__content,
  .page-hero__inner,
  .hero__visual::before,
  .hero__pack {
    animation: none !important;
  }
  .hero__scroll::before,
  .hero__scroll::after {
    animation: none !important;
  }
}
img { max-width: 100%; display: block; }
a   { color: inherit; text-decoration: none; }

/* ── Typography scale ───────────────────────────────────── */
.display {
  font-size: clamp(2.6rem, 6vw, 5rem);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
}
.headline {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
}
.title {
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  font-weight: 700;
  line-height: 1.25;
}
.label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.body-lg { font-size: 1.1rem; line-height: 1.7; }
.muted   { color: var(--muted); }

/* ── Layout ─────────────────────────────────────────────── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }
section { padding: 100px 0; }
section.tight { padding: 60px 0; }

/* ── Colours ────────────────────────────────────────────── */
.bg-ink      { background: var(--ink); color: var(--white); }
.bg-ink2     { background: var(--ink-2); color: var(--white); }
.bg-off      { background: var(--off-white); }
.bg-teal     { background: var(--teal); color: var(--white); }
.text-teal   { color: var(--teal); }
.text-muted  { color: var(--muted); }
.text-white  { color: var(--white); }
.bg-ink .muted, .bg-ink2 .muted,
.bg-ink .text-muted, .bg-ink2 .text-muted { color: var(--on-blue); }

/* ── Navbar ─────────────────────────────────────────────── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  display: flex;
  align-items: center;
  padding: 0 2.5rem;
  background: transparent;
  transform: translateY(0);
  transition: transform 0.32s ease, background 0.35s ease, box-shadow 0.35s ease;
  will-change: transform;
}
.nav.nav--hidden {
  transform: translateY(-150%);
}
/* Beim Hochscrollen: hellblaues Frosted-Glass wie im Start-Hero */
.nav.scrolled {
  background: rgba(243, 248, 250, 0.80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(41,71,101,0.12), 0 8px 24px rgba(41,71,101,0.06);
}
/* Unterseiten ohne Hero: ebenfalls hell */
.nav--solid {
  background: rgba(243, 248, 250, 0.80);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 1px 0 rgba(41,71,101,0.12), 0 8px 24px rgba(41,71,101,0.06);
}

.nav__logo {
  position: absolute;
  top: calc(50% + 30px);
  left: 2.5rem;
  transform: translateY(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 26px 36px;
  transition: padding 0.35s ease;
}
.nav__logo::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: #fff;
  border-radius: 50%;
  filter: blur(36px);
  z-index: -1;
  opacity: 1;
  transition: opacity 0.35s ease;
}
.nav__logo img { height: 88px; width: auto; transition: height 0.35s ease; }

/* Beim Scrollen: weisser Hintergrund verschwindet, Logo bleibt aber gut sichtbar gross */
.nav.scrolled .nav__logo { padding: 6px 12px; top: 50%; }
.nav.scrolled .nav__logo::before { opacity: 0; }
.nav.scrolled .nav__logo img { height: 50px; }

.nav__links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.25rem;
  margin-left: auto;
}
.nav__links a {
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
}
.nav__links a:hover, .nav__links a.active { color: var(--white); }

.nav--light .nav__links a { color: rgba(41,71,101,0.72); }
.nav--light .nav__links a:hover, .nav--light .nav__links a.active { color: var(--ink); }
.nav.scrolled .nav__links a { color: rgba(41,71,101,0.78); }
.nav.scrolled .nav__links a:hover, .nav.scrolled .nav__links a.active { color: var(--ink); }

.nav__cta {
  margin-left: 2rem;
  font-size: 0.82rem !important;
  font-weight: 700 !important;
  color: var(--white) !important;
  background: var(--teal);
  padding: 9px 20px;
  border-radius: 50px;
  transition: background var(--transition) !important;
}
.nav__cta:hover { background: var(--teal-dim) !important; }

.nav__toggle {
  display: none;
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav__toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.nav--light .nav__toggle span { background: var(--ink); }
.nav.scrolled .nav__toggle span { background: var(--ink); }

/* ── Hero (dark) ────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(135deg, rgba(27,176,206,0.09) 0%, rgba(245,245,240,0) 42%),
    var(--off-white);
  color: var(--ink);
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 2.5rem 80px;
  position: relative;
  overflow: hidden;
}

.hero__bg-num {
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(14rem, 30vw, 28rem);
  font-weight: 900;
  color: rgba(12,14,20,0.035);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}

.hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 4rem;
  align-items: center;
}

.hero__content {
  animation: soft-rise-in 1.18s cubic-bezier(.16,.84,.24,1) 0.22s both;
}

.hero__label {
  color: var(--teal);
  font-weight: 600;
  margin-bottom: 1.75rem;
}

.hero__headline {
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  max-width: 900px;
  margin-bottom: 2rem;
}

.hero__headline em {
  font-style: normal;
  color: var(--teal);
}

.hero__sub {
  font-size: 1.1rem;
  color: #587087;
  max-width: 520px;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; align-items: center; }

.hero__visual {
  --hero-pack-size: clamp(190px, 18vw, 270px);
  --hero-platform-height: clamp(165px, 16vw, 240px);
  --hero-pack-lift: clamp(34px, 3.4vw, 58px);
  min-height: calc(var(--hero-pack-size) + var(--hero-platform-height) * 0.62);
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.hero__visual::before {
  content: '';
  position: absolute;
  left: 4%;
  right: 4%;
  bottom: 0;
  height: var(--hero-platform-height);
  background: var(--ink-blue);
  border-radius: var(--card-radius);
  box-shadow: 0 30px 80px rgba(12,14,20,0.14);
  transform-origin: center bottom;
  animation: hero-platform-in 0.72s cubic-bezier(.2,.8,.2,1) 0.28s both;
}
.hero__pack {
  position: absolute;
  width: var(--hero-pack-size);
  border-radius: 8px;
  box-shadow: 0 22px 48px rgba(12,14,20,0.18);
}
.hero__pack--front {
  left: 10%;
  bottom: var(--hero-pack-lift);
  z-index: 2;
  animation: hero-pack-front-in 0.82s cubic-bezier(.2,.8,.2,1) 0.48s both;
}
.hero__pack--back {
  right: 12%;
  bottom: calc(var(--hero-pack-lift) + clamp(54px, 5vw, 82px));
  z-index: 1;
  transform: scale(0.9);
  opacity: 0.88;
  animation: hero-pack-back-in 0.86s cubic-bezier(.2,.8,.2,1) 0.36s both;
}

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 1.35rem;
  width: 58px;
  height: 86px;
  overflow: hidden;
  color: transparent;
  font-size: 0;
  transform: translateX(-50%);
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.24s ease;
}
.hero__scroll::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 27px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(12,14,20,0.32);
  box-shadow:
    0 0 0 10px rgba(12,14,20,0.045),
    0 12px 22px rgba(12,14,20,0.12);
  animation: scroll-dot-pop 1.85s cubic-bezier(.2,.72,.2,1) infinite;
}
.hero__scroll::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 46px;
  width: 8px;
  height: 34px;
  background:
    radial-gradient(circle, rgba(12,14,20,0.26) 0 3px, transparent 3.4px) center 0 / 8px 11px repeat-y;
  animation: scroll-trail-dots 1.85s cubic-bezier(.2,.72,.2,1) infinite;
}

body.has-scrolled .hero__scroll {
  opacity: 0.28;
}
body.has-scrolled .hero__scroll::before,
body.has-scrolled .hero__scroll::after {
  animation-play-state: paused;
}

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 14px 30px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.btn-primary  { background: var(--teal); color: var(--white); border-color: var(--teal); }
.btn-primary:hover { background: var(--teal-dim); border-color: var(--teal-dim); }
.btn-ghost    { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.25); }
.btn-ghost:hover { border-color: var(--white); }
.btn-dark     { background: var(--ink-blue); color: var(--white); border-color: var(--ink-blue); }
.btn-dark:hover { background: var(--ink-2); border-color: var(--ink-2); }
.btn-outline-dark { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-outline-dark:hover { background: var(--ink-blue); color: var(--white); border-color: var(--ink-blue); }
.btn-arrow::after { content: '→'; }

/* ── Stats strip ─────────────────────────────────────────── */
.stats-strip {
  background: var(--ink-2);
  color: var(--white) !important;
  padding: 0;
}
.stats-strip__inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-top: 1px solid var(--border);
}
.stats-strip__item {
  padding: 2.5rem 2rem;
  border-right: 1px solid var(--border);
  text-align: left;
}
.stats-strip__item:last-child { border-right: none; }
.stats-strip__num {
  font-size: 2.8rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white) !important;
  line-height: 1;
}
.stats-strip__num span { color: var(--on-blue-accent); }
.stats-strip__label {
  font-size: 0.78rem;
  color: var(--on-blue);
  margin-top: 0.4rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Section intro ──────────────────────────────────────── */
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem;
}
.section-intro--full { grid-template-columns: 1fr; max-width: 720px; margin-bottom: 4rem; }

/* ── Feature grid (Firma cards) ─────────────────────────── */
.feat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.feat-grid__item {
  background: var(--white);
  border: 1px solid rgba(12,14,20,0.08);
  border-radius: var(--card-radius);
  padding: 2.35rem 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(12, 14, 20, 0.045);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.feat-grid__item::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--blue));
  opacity: 0.85;
}
.feat-grid__item:hover {
  border-color: rgba(27,176,206,0.28);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}

.feat-grid__icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(27,176,206,0.11);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin-bottom: 1.25rem;
}
.feat-grid__item h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.feat-grid__item p { font-size: 0.9rem; color: #6b7280; line-height: 1.6; }

/* ── Product sections ───────────────────────────────────── */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 3rem;
  box-shadow: 0 2px 40px rgba(0,0,0,0.07);
}
.product-row.flip { direction: rtl; }
.product-row.flip > * { direction: ltr; }

.product-row__visual {
  background: var(--ink-2);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}
.product-row__visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(27,176,206,0.15) 0%, transparent 70%);
}
.product-row__visual img {
  max-height: 140px;
  width: auto;
  position: relative;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
.product-row__visual img.product-row__pack {
  max-height: 360px;
  width: min(78%, 420px);
  height: auto;
  border-radius: 8px;
  filter: none;
  opacity: 1;
  box-shadow: 0 24px 52px rgba(0,0,0,0.22);
}
.product-row__label {
  position: absolute;
  top: 2rem; left: 2rem;
  z-index: 2;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--white);
  text-shadow: 0 1px 5px rgba(41,71,101,.35);
}
.product-row__visual .product-row__label,
.product-row.flip .product-row__visual .product-row__label {
  color: #fff;
}

.product-row__body {
  background: var(--off-white);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-row__body h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 1rem;
}
.product-row__body p { color: #555; font-size: 0.97rem; margin-bottom: 1.5rem; line-height: 1.7; }

.check-list { list-style: none; margin-bottom: 2rem; }
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.45rem 0;
  font-size: 0.92rem;
  color: #444;
  border-bottom: 1px solid var(--border-d);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: '';
  display: block;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 18 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 9l3.5 3.5L14 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: cover;
}

/* KA.NET: Grün statt Teal */
.product-row.flip .check-list li::before { background-color: var(--kanet-green); }
.product-row.flip .product-row__label { color: var(--white); }

.home-data-service {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
  padding: 2.25rem 2.5rem;
  border: 1px solid rgba(56,95,145,.16);
  border-radius: var(--radius);
  background: linear-gradient(120deg, #eaf4f7 0%, #f5f9fa 100%);
}
.home-data-service__mark {
  display: grid;
  width: 72px;
  height: 72px;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-size: 1.7rem;
}
.home-data-service .label { margin-bottom: .55rem; color: var(--teal-dim); }
.home-data-service h2 { margin-bottom: .55rem; color: var(--ink); font-size: clamp(1.35rem, 2vw, 1.8rem); }
.home-data-service p:last-child { max-width: 680px; color: #587087; line-height: 1.65; }

/* ── Timeline ────────────────────────────────────────────── */
.timeline-row {
  display: flex;
  gap: 0;
  border: 1px solid var(--border-d);
  border-radius: var(--radius);
  overflow: hidden;
  margin-top: 1.5rem;
}
.timeline-step {
  flex: 1;
  padding: 1.75rem 1.5rem;
  border-right: 1px solid var(--border-d);
  position: relative;
}
.timeline-step:last-child { border-right: none; }
.timeline-step.active { background: var(--ink-blue); color: var(--white); }
.timeline-step__year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.4rem;
}
.timeline-step.active .timeline-step__year { color: var(--white); }
.timeline-step__name { font-weight: 700; font-size: 1rem; }
.timeline-step__desc { font-size: 0.82rem; color: var(--muted); margin-top: 0.3rem; }
.timeline-step.active .timeline-step__desc { color: var(--on-blue); }

/* ── Quote ───────────────────────────────────────────────── */
.quote-section {
  background: var(--ink-blue);
  color: var(--white) !important;
  padding: 100px 2.5rem;
}
.quote-section__inner { max-width: 900px; margin: 0 auto; }
.quote-section__mark {
  font-size: 6rem;
  line-height: 1;
  color: var(--teal);
  font-family: Georgia, serif;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.quote-section__text {
  font-size: clamp(1.25rem, 2.5vw, 1.9rem);
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  margin-bottom: 2.5rem;
  opacity: 0.92;
}
.quote-section__author { font-weight: 700; color: var(--on-blue-accent); }
.quote-section__role   { font-size: 0.88rem; color: var(--on-blue); margin-top: 4px; }

/* ── Kantone ─────────────────────────────────────────────── */
.kanton-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.kanton-pill {
  padding: 8px 18px;
  border: 1.5px solid var(--border-d);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  transition: all var(--transition);
}
.kanton-pill:hover { background: var(--ink-blue); color: var(--white); border-color: var(--ink-blue); }
.reference-request {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 2rem;
  padding: 1.4rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  background: rgba(255,255,255,0.07);
}
.reference-request h3 { color: var(--white); font-size: 1rem; margin-bottom: 0.35rem; }
.reference-request p { color: var(--on-blue); font-size: 0.88rem; line-height: 1.55; max-width: 560px; }
.reference-request .btn { flex-shrink: 0; white-space: nowrap; }

/* ── News ────────────────────────────────────────────────── */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }

.news-item {
  background: var(--white);
  border: 1px solid rgba(12,14,20,0.08);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(12, 14, 20, 0.045);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}
.news-item:hover {
  border-color: rgba(27,176,206,0.28);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.news-item__date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.news-item h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.6rem;
  line-height: 1.35;
}
.news-item p { font-size: 0.88rem; color: #6b7280; line-height: 1.6; }

/* ── Aktuell auf der Startseite ─────────────────────────── */
.latest-news {
  background: linear-gradient(145deg, #edf4f7 0%, #f4f8fa 58%, #e8f1f5 100%);
  padding: 88px 0;
}
.latest-news__heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2.25rem;
}
.latest-news__heading .label { margin-bottom: 0.75rem; }
.latest-news__all {
  color: var(--ink-blue);
  font-size: 0.9rem;
  font-weight: 600;
  white-space: nowrap;
}
.latest-news__all:hover { color: var(--teal-dim); }
.latest-news__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.latest-news__item {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 0;
  background: var(--white);
  border: 1px solid rgba(56,95,145,0.16);
  border-top: 4px solid #b4c8da;
  border-radius: var(--radius);
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.latest-news__item:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}
.latest-news__item--featured {
  border-top-color: var(--ink-blue);
  background: linear-gradient(180deg, #f4f8fb 0%, #ffffff 100%);
}
.latest-news__content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1;
  padding: 1.75rem;
}
.latest-news__new {
  position: absolute;
  top: -17px;
  right: 1.25rem;
  padding: 5px 12px;
  color: var(--white);
  background: var(--ink-blue);
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.latest-news__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
  color: #587087;
  font-size: 0.8rem;
}
.latest-news__meta span {
  color: var(--ink-blue);
  background: rgba(76,116,163,0.12);
  border-radius: 50px;
  padding: 4px 11px;
  font-weight: 700;
}
.latest-news__content h3 {
  margin-bottom: 1rem;
  color: var(--ink);
  font-size: clamp(1.25rem, 2vw, 1.55rem);
  font-weight: 700;
  line-height: 1.18;
  letter-spacing: -0.02em;
}
.latest-news__content h3 a:hover { color: var(--teal); }
.latest-news__content > p {
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  margin-bottom: 1.5rem;
  color: #587087;
  font-size: 0.9rem;
  line-height: 1.65;
}
.latest-news__read {
  margin-top: auto;
  color: var(--ink-blue);
  font-size: 0.85rem;
  font-weight: 700;
}
.latest-news__visual {
  display: block;
  height: 190px;
  overflow: hidden;
}
.latest-news__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}
.latest-news__item:hover .latest-news__visual img { transform: scale(1.035); }
.latest-news__placeholder {
  width: 100%;
  height: 100%;
  min-height: 190px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 24% 24%, rgba(198,221,240,0.72), transparent 34%),
    linear-gradient(145deg, var(--ink-blue), var(--ink-2));
}
.latest-news__placeholder span {
  color: var(--white);
  font-size: clamp(2.75rem, 6vw, 4.5rem);
  filter: grayscale(1);
  opacity: 0.88;
}
@media (max-width: 760px) {
  .latest-news__heading { align-items: flex-start; flex-direction: column; }
  .latest-news__grid { grid-template-columns: 1fr; }
  .latest-news__visual { height: 220px; }
  .latest-news__placeholder { min-height: 220px; }
}

/* ── Support row ─────────────────────────────────────────── */
.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}
.support-card {
  background: var(--white);
  border: 1px solid rgba(12,14,20,0.08);
  border-radius: var(--card-radius);
  padding: 1.9rem 1.6rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(12, 14, 20, 0.045);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.support-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  border-radius: var(--card-radius) var(--card-radius) 0 0;
  background: linear-gradient(90deg, var(--teal), var(--blue));
}
.support-card:hover {
  border-color: rgba(27,176,206,0.28);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.support-card h3 { font-size: 1rem; font-weight: 700; color: var(--ink); margin-bottom: 0.5rem; }
.support-card p  { font-size: 0.88rem; color: #6b7280; line-height: 1.6; }
.support-card a  { color: var(--teal); font-weight: 600; }

/* ── CTA Banner ──────────────────────────────────────────── */
.cta-band {
  background: linear-gradient(135deg, #e8f4f7 0%, #dcecf3 100%);
  color: var(--ink);
  padding: 80px 2.5rem;
  text-align: center;
}
.cta-band h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.02em;
  max-width: 900px;
  margin: 0 auto 1rem;
}
.cta-band p { font-size: 1.05rem; color: #587087; max-width: 540px; margin: 0 auto 2.5rem; }

/* ── Testimonial-Slider (Kundenstimmen) ─────────────────────── */
/* Bewusst hell gehalten: liegt direkt nach dem dunklen "Referenzen"-Block,
   der Hell/Dunkel-Wechsel schafft die Abgrenzung zwischen Fakten und Zitat. */
.testimonial-slider {
  position: relative;
  background: #edf4f7;
  color: var(--ink);
  padding: 100px 2.5rem;
  overflow: hidden;
}
.testimonial-slider__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.5;
  transition: background-image 0.6s ease;
}
.testimonial-slider__scrim {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(243,248,250,0.78) 0%, rgba(235,243,247,0.68) 100%);
}
.testimonial-slider__viewport {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  min-height: 260px;
}
.testimonial-slide {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateX(48px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}
.testimonial-slide.active {
  position: relative;
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
.testimonial-slide.exit-left  { transform: translateX(-48px); }
.testimonial-slide.exit-right { transform: translateX(48px); }
.testimonial-slide__mark {
  font-family: Georgia, serif;
  font-size: 3.5rem;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 1rem;
}
.testimonial-slide__quote {
  font-size: clamp(1.1rem, 2.4vw, 1.5rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  max-width: 640px;
  margin: 0 auto 2rem;
}
.testimonial-slide__institution {
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 0.6rem;
}
.testimonial-slide__name { font-size: 0.92rem; font-weight: 700; color: var(--ink); }
.testimonial-slide__role { font-size: 0.82rem; color: var(--muted); }
.testimonial-slide__extra { font-size: 0.78rem; color: var(--muted); opacity: 0.8; margin-top: 0.15rem; }

.testimonial-slider__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
.testimonial-slider__arrow {
  background: rgba(12,14,20,0.04);
  border: 1.5px solid rgba(12,14,20,0.14);
  color: var(--ink);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s, border-color 0.2s;
}
.testimonial-slider__arrow:hover { background: rgba(27,176,206,0.1); border-color: var(--teal); }
.testimonial-slider__dots { display: flex; gap: 0.5rem; }
.testimonial-slider__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(12,14,20,0.18);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s, transform 0.2s;
}
.testimonial-slider__dot.active { background: var(--teal); transform: scale(1.2); }

@media (prefers-reduced-motion: reduce) {
  .testimonial-slide { transition: opacity 0.3s ease; transform: none !important; }
}
@media (max-width: 768px) {
  .testimonial-slider { padding: 70px 1.5rem; }
  .testimonial-slider__viewport { min-height: 340px; }
}

/* ── Interfaces ───────────────────────────────────────────── */
.interface-doc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  background: var(--white);
  border: 1px solid rgba(12,14,20,0.08);
  border-radius: var(--card-radius);
  padding: 1.25rem 1.4rem;
  box-shadow: 0 10px 30px rgba(12, 14, 20, 0.045);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.interface-doc:hover {
  border-color: rgba(27,176,206,0.28);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-3px);
}
.interface-doc strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  margin-bottom: 0.2rem;
}
.interface-doc small {
  display: block;
  color: #6b7280;
  font-size: 0.84rem;
  line-height: 1.5;
}
.interface-doc em {
  flex-shrink: 0;
  font-style: normal;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}
.interface-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 3rem;
}
.interface-item {
  background: var(--white);
  border: 1px solid rgba(12,14,20,0.08);
  border-radius: var(--card-radius);
  padding: 2rem 1.75rem;
  min-height: 250px;
  box-shadow: 0 10px 30px rgba(12, 14, 20, 0.045);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.interface-item:hover {
  border-color: rgba(27,176,206,0.28);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.interface-item span {
  display: block;
  color: var(--teal);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  margin-bottom: 1.2rem;
}
.interface-item h3 {
  font-size: 1rem;
  line-height: 1.35;
  margin-bottom: 0.7rem;
}
.interface-item p {
  color: #6b7280;
  font-size: 0.86rem;
  line-height: 1.65;
}
.interface-item a {
  display: inline-flex;
  margin-top: 1rem;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 800;
}

/* ── Migration chips ─────────────────────────────────────── */
.migration-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.migration-item {
  background: var(--white);
  border: 1px solid rgba(12,14,20,0.08);
  border-radius: var(--card-radius);
  padding: 2.25rem 1.75rem;
  box-shadow: 0 10px 30px rgba(12, 14, 20, 0.045);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.migration-item:hover {
  border-color: rgba(27,176,206,0.28);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.migration-item h3 { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.migration-item p  { font-size: 0.85rem; color: #6b7280; }

/* ── Datenzusammenlegung als Dienstleistung ─────────────── */
.data-service {
  background: linear-gradient(145deg, #e8f1f6 0%, #f4f8fa 52%, #e5eef5 100%);
}
.data-service__overview {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.data-service__panel {
  padding: clamp(2rem, 4vw, 3.25rem);
  border: 1px solid rgba(56,95,145,.16);
  border-radius: var(--radius);
  background: rgba(255,255,255,.88);
  box-shadow: var(--card-shadow);
}
.data-service__panel--blue {
  color: var(--white);
  border-color: transparent;
  background: linear-gradient(145deg, var(--ink-blue), var(--ink-2));
}
.data-service__panel .label { margin-bottom: .9rem; }
.data-service__panel--blue .label { color: var(--on-blue-accent); }
.data-service__panel h3,
.data-service__systems h3,
.data-service__cta h3 { font-size: 1.35rem; line-height: 1.3; margin-bottom: 1.25rem; }
.data-service__panel ul { list-style: none; display: grid; gap: .85rem; }
.data-service__panel li { position: relative; padding-left: 1.4rem; color: #4f6579; line-height: 1.55; }
.data-service__panel li::before { content: '✓'; position: absolute; left: 0; color: var(--teal); font-weight: 800; }
.data-service__panel--blue li { color: var(--on-blue); }
.data-service__panel--blue li::before { color: var(--on-blue-accent); }
.data-service__process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 1.25rem 0;
  overflow: hidden;
  border: 1px solid rgba(56,95,145,.16);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}
.data-service__step { padding: 2rem 1.5rem; border-right: 1px solid rgba(56,95,145,.13); }
.data-service__step:last-child { border-right: 0; }
.data-service__step span { display: block; margin-bottom: 1.25rem; color: var(--teal); font-size: .75rem; font-weight: 800; letter-spacing: .1em; }
.data-service__step h3 { margin-bottom: .65rem; color: var(--ink); font-size: 1rem; }
.data-service__step p { color: #587087; font-size: .86rem; line-height: 1.65; }
.data-service__systems {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 3rem;
  margin-top: 1.25rem;
  padding: clamp(2rem, 4vw, 3.25rem);
  border-radius: var(--radius);
  background: rgba(255,255,255,.72);
}
.data-service__systems > div > p:last-child { color: #587087; line-height: 1.7; }
.data-service__references { display: grid; gap: .65rem; }
.data-service__references .label { margin-bottom: .25rem; }
.data-service__references a { display: grid; grid-template-columns: 145px 1fr; gap: 1rem; padding: .85rem 0; border-bottom: 1px solid rgba(56,95,145,.14); }
.data-service__references a:last-child { border-bottom: 0; }
.data-service__references strong { color: var(--ink); }
.data-service__references span { color: #587087; font-size: .86rem; }
.data-service__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1.25rem;
  padding: 2rem 2.5rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--card-shadow);
}
.data-service__cta h3 { margin-bottom: .35rem; }
.data-service__cta p { color: #587087; }
@media (max-width: 900px) {
  .data-service__process { grid-template-columns: repeat(2, 1fr); }
  .data-service__step { border-bottom: 1px solid rgba(56,95,145,.13); }
  .data-service__systems { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 640px) {
  .data-service__overview,
  .data-service__process { grid-template-columns: 1fr; }
  .data-service__step { border-right: 0; }
  .data-service__references a { grid-template-columns: 1fr; gap: .25rem; }
  .data-service__cta { align-items: flex-start; flex-direction: column; padding: 1.75rem; }
}

/* ── Page header ─────────────────────────────────────────── */
.page-hero {
  background: var(--ink-blue);
  color: var(--white);
  padding: 140px 2.5rem 80px;
}
.page-hero--light {
  background:
    linear-gradient(135deg, rgba(27,176,206,0.09) 0%, rgba(245,245,240,0) 42%),
    var(--off-white);
  color: var(--ink);
}
.page-hero__inner {
  max-width: 1160px;
  margin: 0 auto;
  animation: soft-rise-in 1.08s cubic-bezier(.16,.84,.24,1) 0.18s both;
}
.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
}
.page-hero__title {
  max-width: 820px;
  margin-bottom: 2rem;
  font-size: clamp(3rem, 7vw, 6rem);
  font-weight: 700;
  line-height: 1.04;
  letter-spacing: -0.025em;
}
.page-hero p { font-size: 1.1rem; color: var(--on-blue); max-width: 520px; }
.page-hero--light p { color: #555; }

/* Vollbild-Variante (wie Home-Hero) */
.page-hero--full {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 2.5rem 100px;
}
.page-hero--full .page-hero__inner { width: 100%; }

/* ── Contact layout ──────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 5rem;
  align-items: start;
}

.contact-detail { display: flex; gap: 1.25rem; margin-bottom: 2rem; }
.contact-detail__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--teal);
  margin-top: 0.55rem;
  flex-shrink: 0;
}
.contact-detail__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
}
.contact-detail__value { font-size: 1rem; color: var(--ink); font-weight: 500; }
.contact-detail__value a { color: var(--teal); }

.contact-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}
.contact-card {
  background: var(--white);
  border: 1px solid rgba(12,14,20,0.08);
  border-radius: var(--card-radius);
  padding: 2rem;
  min-height: 210px;
  box-shadow: 0 10px 30px rgba(12, 14, 20, 0.045);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.contact-card:hover {
  border-color: rgba(27,176,206,0.28);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.contact-card__label {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1.75rem;
}
.contact-card h3 {
  color: var(--ink);
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  line-height: 1.25;
  margin-bottom: 0.75rem;
  word-break: break-word;
}
.contact-card p {
  color: #6b7280;
  font-size: 0.92rem;
  line-height: 1.65;
}
.contact-map-card {
  border: 1px solid rgba(12,14,20,0.08);
  border-radius: var(--card-radius);
  overflow: hidden;
  margin-top: 1.25rem;
  box-shadow: 0 16px 45px rgba(12, 14, 20, 0.075);
}
.contact-map-card iframe {
  display: block;
  width: 100%;
}

.legal-content {
  max-width: 920px;
  margin: 0 auto;
  color: #30343b;
}
.legal-meta {
  color: #6b7280;
  font-size: 0.88rem;
  margin-bottom: 2.25rem;
}
.legal-content h2 {
  color: var(--ink);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.25;
  margin: 2.65rem 0 0.85rem;
}
.legal-content h2:first-of-type {
  margin-top: 0;
}
.legal-content p,
.legal-content li {
  font-size: 1rem;
  line-height: 1.75;
}
.legal-content p {
  margin-bottom: 1rem;
}
.legal-content ul {
  margin: 0 0 1.25rem 1.2rem;
}
.legal-content li {
  margin-bottom: 0.45rem;
}
.legal-content a {
  color: var(--teal);
  font-weight: 700;
}

/* ── Form ────────────────────────────────────────────────── */
.form-card {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 3rem;
}
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-2col .span2 { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
}
.field input,
.field select,
.field textarea {
  background: var(--white);
  border: 1.5px solid var(--border-d);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--ink);
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  resize: vertical;
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(27,176,206,0.12);
}
.field textarea { min-height: 130px; }

/* ── Links section ───────────────────────────────────────── */
.links-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(420px, 0.92fr);
  gap: 0;
  align-items: center;
  position: relative;
}
.links-showcase__visual {
  min-height: 480px;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: 0 28px 70px rgba(12,14,20,0.10);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.links-showcase__visual::before {
  content: '';
  position: absolute;
  left: -12%;
  top: 8%;
  width: 28%;
  height: 84%;
  background: rgba(74,90,154,0.78);
  filter: blur(18px);
}
.links-showcase__visual img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
  position: relative;
}
.links-showcase__content {
  padding: 3rem;
  margin-left: -8rem;
  position: relative;
  z-index: 2;
}
.links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.links-grid--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-left: -1.5rem;
}
.links-item {
  background: var(--white);
  border: 1px solid rgba(12,14,20,0.08);
  border-radius: var(--card-radius);
  padding: 2.5rem;
  box-shadow: 0 10px 30px rgba(12, 14, 20, 0.045);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.links-item:hover {
  border-color: rgba(27,176,206,0.28);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.links-item__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(27,176,206,0.11);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.55rem;
  margin-bottom: 1.25rem;
}
.links-grid--compact .links-item {
  min-height: 220px;
  padding: 1.5rem 1.25rem;
  display: flex;
  flex-direction: column;
}
.links-grid--compact .links-item__icon {
  width: 40px;
  height: 40px;
  font-size: 1.35rem;
  margin-bottom: 1.25rem;
}
.links-item h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.links-item p  { font-size: 0.88rem; color: #6b7280; margin-bottom: 1.25rem; }
.links-grid--compact .links-item p { margin-bottom: 0; }

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: var(--white);
  color: #555;
  padding: 74px 2.5rem 0;
  border-top: 1px solid var(--border-d);
}
.footer-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 1.1fr) minmax(220px, 0.7fr) minmax(360px, 1.1fr);
  gap: clamp(3rem, 7vw, 7rem);
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border-d);
}
.footer-brand img {
  height: 112px;
  width: auto;
  margin-bottom: 2rem;
}
.footer-brand p {
  max-width: 520px;
  font-size: 0.96rem;
  line-height: 1.65;
  color: #30343b;
}

.footer-col h4 {
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 0.8rem;
}
.footer-accent {
  width: 54px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--blue), var(--teal));
  margin-bottom: 1.9rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  color: inherit;
  transition: color var(--transition);
}
.footer-col a:hover {
  color: var(--teal);
}
.footer-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: fit-content;
  margin-top: -0.35rem;
  padding: 14px 30px;
  border: 2px solid var(--teal);
  border-radius: 50px;
  background: var(--teal);
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: none;
  transition: all var(--transition);
}
.footer-contact-btn:hover {
  background: var(--teal-dim);
  border-color: var(--teal-dim);
  color: var(--white) !important;
}
.footer-col .footer-contact-btn,
.footer-col .footer-contact-btn:visited,
.footer-col .footer-contact-btn:hover,
.footer-col .footer-contact-btn:focus,
.footer-col .footer-contact-btn:active {
  color: var(--white) !important;
}
.footer-contact-btn::after {
  content: '→';
}
.footer-contact p {
  color: #30343b;
  font-size: 0.96rem;
  line-height: 1.6;
  margin-bottom: 1.65rem;
}
.footer-map iframe {
  display: block;
  width: 100%;
  height: 220px;
  border-radius: 2px;
  filter: saturate(0.9);
}

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: #6b7280;
}
.footer-bottom a {
  color: #5f6470;
  transition: color var(--transition);
}
.footer-bottom a:hover { color: var(--teal); }

/* Cookie- und Datenschutzhinweis */
.cookie-settings-link { appearance: none; padding: 0; border: 0; background: none; color: inherit; font: inherit; cursor: pointer; }
.cookie-settings-link:hover, .cookie-settings-link:focus-visible { color: var(--teal); }
.cookie-consent { position: fixed; z-index: 10000; right: 1.25rem; bottom: 1.25rem; left: 1.25rem; opacity: 0; transform: translateY(18px); transition: opacity .22s ease, transform .22s ease; }
.cookie-consent--visible { opacity: 1; transform: translateY(0); }
.cookie-consent__inner { display: flex; align-items: center; gap: 1.5rem; width: min(100%, 960px); margin: 0 auto; padding: 1.15rem 1.25rem; border: 1px solid rgba(64,103,153,.22); border-radius: 16px; background: rgba(247,251,253,.97); box-shadow: 0 18px 50px rgba(35,67,101,.2); backdrop-filter: blur(12px); }
.cookie-consent__copy { flex: 1; }
.cookie-consent__copy strong { display: block; margin-bottom: .25rem; color: var(--navy); font-size: 1rem; }
.cookie-consent__copy p { margin: 0; color: var(--text); font-size: .87rem; line-height: 1.55; }
.cookie-consent__copy a { color: var(--navy); text-decoration: underline; text-underline-offset: 2px; }
.cookie-consent__actions { display: flex; flex-shrink: 0; gap: .65rem; }
.cookie-consent__button { min-height: 42px; padding: .65rem 1.05rem; border: 1px solid var(--blue); border-radius: 999px; background: transparent; color: var(--blue); font: inherit; font-size: .82rem; font-weight: 700; cursor: pointer; }
.cookie-consent__accept { background: var(--blue); color: #fff; }
.cookie-consent__button:hover { transform: translateY(-1px); }
.cookie-consent__button:focus-visible { outline: 3px solid rgba(75,176,194,.35); outline-offset: 2px; }
@media (max-width: 680px) {
  .cookie-consent { right: .75rem; bottom: .75rem; left: .75rem; }
  .cookie-consent__inner { align-items: stretch; flex-direction: column; gap: .9rem; padding: 1rem; }
  .cookie-consent__actions { width: 100%; }
  .cookie-consent__button { flex: 1; }
}

/* ── Firma Timeline ──────────────────────────────────────── */
.firma-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin: 5rem 0;
}
.firma-timeline__item {
  background: var(--white);
  border: 1px solid rgba(12,14,20,0.08);
  border-radius: var(--card-radius);
  padding: 2.5rem 2rem;
  position: relative;
  box-shadow: 0 10px 30px rgba(12, 14, 20, 0.045);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.firma-timeline__item:hover {
  border-color: rgba(27,176,206,0.28);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.firma-timeline__item.highlight {
  background: var(--ink-blue);
  border-color: var(--ink-blue);
  color: var(--white);
}

.firma-timeline__year {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  color: var(--teal);
  margin-bottom: 0.75rem;
}
.firma-timeline__item.highlight .firma-timeline__year { color: var(--on-blue-accent); }
.firma-timeline__title { font-weight: 700; font-size: 1rem; margin-bottom: 0.4rem; }
.firma-timeline__item.highlight .firma-timeline__title { color: var(--white); }
.firma-timeline__desc { font-size: 0.85rem; color: #6b7280; line-height: 1.55; }
.firma-timeline__item.highlight .firma-timeline__desc { color: var(--on-blue); }

/* ── Gründer-Zitat ───────────────────────────────────────── */
.founder-quote {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 3.5rem;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
}
.founder-quote__left { border-right: 2px solid var(--border-d); padding-right: 3rem; }
.founder-quote__label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 1rem;
}
.founder-quote__placeholder {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin-bottom: 1.25rem;
  border: 2px dashed var(--border-d);
  color: var(--muted);
}
.founder-quote__name { font-weight: 700; color: var(--ink); font-size: 1rem; }
.founder-quote__role { font-size: 0.82rem; color: var(--muted); }
.founder-quote__text {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  font-style: italic;
  line-height: 1.6;
  color: var(--ink);
  position: relative;
  padding-left: 2rem;
}
.founder-quote__text::before {
  content: '«';
  position: absolute;
  left: 0; top: -0.25rem;
  font-size: 2.5rem;
  color: var(--teal);
  font-style: normal;
  font-family: Georgia, serif;
  line-height: 1;
}
.founder-quote__placeholder-text {
  font-style: italic;
  color: var(--muted);
  font-size: 0.9rem;
  border: 1.5px dashed var(--border-d);
  border-radius: var(--radius-sm);
  padding: 1.5rem;
}

/* ── Team Grid ───────────────────────────────────────────── */
.team-section {
  background: linear-gradient(145deg, #e8f1f6 0%, #f2f7fa 55%, #e5eef5 100%);
  border-top: 1px solid #d3e1ea;
}
.team-section__label {
  color: var(--ink-blue);
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 3rem;
}
.team-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfdff 100%);
  border: 1px solid rgba(56,95,145,0.16);
  border-top: 4px solid #7598c0;
  border-radius: var(--card-radius);
  padding: 2.25rem 2rem 2.5rem;
  box-shadow: 0 12px 32px rgba(41,71,101,0.09);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.team-card:hover {
  border-color: rgba(76,116,163,0.42);
  border-top-color: var(--ink-blue);
  box-shadow: var(--card-shadow-hover);
  transform: translateY(-4px);
}
.team-card__avatar {
  width: 180px; height: 180px;
  border-radius: 50%;
  background: rgba(27,176,206,0.11);
  border: 1px solid rgba(27,176,206,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  margin: 0 auto 2.1rem;
  color: var(--muted);
  overflow: hidden;
  position: relative;
}
.team-card__avatar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.team-card__initials {
  font-size: 2.65rem;
  font-weight: 700;
  color: rgba(41,71,101,0.58);
  letter-spacing: 0;
}
.team-card__name { font-weight: 700; font-size: 1.05rem; color: #213f5f; margin-bottom: 0.25rem; }
.team-card__role {
  font-size: 0.9rem;
  color: #4c74a3;
  font-weight: 500;
  line-height: 1.55;
  text-transform: none;
  letter-spacing: 0;
  margin-top: 0.3rem;
  margin-bottom: 0.75rem;
}
.team-card__bio  { font-size: 0.85rem; color: #6b7280; line-height: 1.55; }
.team-card--collective {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(240px, .7fr) 1.3fr;
  align-items: center;
  gap: 2rem;
  padding: 1.6rem 2rem;
  border-top-width: 1px;
  background: rgba(255,255,255,.62);
  box-shadow: none;
}
.team-card--collective:hover { transform: none; box-shadow: none; }
.team-card--collective .team-card__name { margin: 0; }
.team-card--collective .team-card__role { margin: 0; color: #587087; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero__inner      { grid-template-columns: 1fr; gap: 3rem; }
  .hero__visual     { --hero-pack-size: clamp(170px, 32vw, 250px); --hero-platform-height: clamp(145px, 25vw, 210px); max-width: 560px; width: 100%; }
  .links-showcase   { grid-template-columns: 1fr; }
  .links-showcase__content { margin-left: 0; margin-top: -3rem; }
  .feat-grid         { grid-template-columns: repeat(2,1fr); }
  .support-grid      { grid-template-columns: repeat(2,1fr); }
  .migration-grid    { grid-template-columns: repeat(2,1fr); }
  .interface-grid    { grid-template-columns: repeat(2,1fr); }
  .news-grid         { grid-template-columns: repeat(2,1fr); }
  .footer-inner      { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .footer-brand      { grid-column: 1 / -1; }
  .footer-brand img  { height: 90px; }
  .stats-strip__inner { grid-template-columns: repeat(3,1fr); }
  .section-intro     { grid-template-columns: 1fr; gap: 2rem; }
  .reference-request { align-items: flex-start; }
  .contact-card-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .timeline-row      { flex-direction: column; }
  .timeline-step     { border-right: none; border-bottom: 1px solid var(--border-d); }
  .timeline-step:last-child { border-bottom: none; }
  .firma-timeline    { grid-template-columns: repeat(2,1fr); }
  .team-grid         { grid-template-columns: repeat(2,1fr); }
  .founder-quote     { grid-template-columns: 1fr; gap: 2rem; }
  .founder-quote__left { border-right: none; padding-right: 0; border-bottom: 2px solid var(--border-d); padding-bottom: 2rem; }
}

@media (max-width: 768px) {
  .nav__logo { padding: 16px 22px; left: 1.25rem; }
  .nav__logo::before { inset: 8px; filter: blur(24px); }
  .nav__logo img { height: 56px; }
  .nav.scrolled .nav__logo { padding: 6px 10px; }
  .nav.scrolled .nav__logo::before { opacity: 0; }
  .nav.scrolled .nav__logo img { height: 40px; }
  .nav__links { display: none; flex-direction: column; position: fixed; top: 68px; left: 0; right: 0; background: rgba(243,248,250,0.96); box-shadow: 0 14px 30px rgba(41,71,101,0.12); padding: 2rem; gap: 1.25rem; }
  .nav__links.open { display: flex; }
  .nav--light .nav__links.open a { color: rgba(41,71,101,0.78); }
  .nav--light .nav__links.open a:hover,
  .nav--light .nav__links.open a.active { color: var(--ink); }
  .nav__toggle { display: flex; }
  .hero__headline { font-size: clamp(2.2rem, 8vw, 3.5rem); }
  .hero { min-height: auto; padding-bottom: 60px; }
  .hero__visual { --hero-pack-size: clamp(150px, 40vw, 210px); --hero-platform-height: clamp(125px, 34vw, 180px); --hero-pack-lift: clamp(26px, 7vw, 42px); }
  .product-row { grid-template-columns: 1fr; }
  .product-row.flip { direction: ltr; }
  .home-data-service { grid-template-columns: 64px 1fr; }
  .home-data-service .btn { grid-column: 2; justify-self: start; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .contact-card-grid { grid-template-columns: 1fr; }
  .form-2col { grid-template-columns: 1fr; }
  .links-grid { grid-template-columns: 1fr; }
  .links-grid--compact { grid-template-columns: 1fr; }
  .links-showcase__visual,
  .links-showcase__visual img { min-height: 340px; }
  .links-showcase__content { padding: 2rem; }
  .news-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr 1fr; }
  .support-grid { grid-template-columns: 1fr 1fr; }
  .migration-grid { grid-template-columns: 1fr 1fr; }
  .interface-grid { grid-template-columns: 1fr 1fr; }
  .stats-strip__inner { grid-template-columns: repeat(2,1fr); }
  section { padding: 70px 0; }
}

@media (max-width: 480px) {
  .feat-grid { grid-template-columns: 1fr; }
  .team-card--collective { grid-template-columns: 1fr; gap: .45rem; }
  .home-data-service { grid-template-columns: 1fr; padding: 1.75rem; }
  .home-data-service__mark { width: 56px; height: 56px; }
  .home-data-service .btn { grid-column: 1; }
  .support-grid { grid-template-columns: 1fr; }
  .migration-grid { grid-template-columns: 1fr; }
  .interface-grid { grid-template-columns: 1fr; }
  .interface-doc { align-items: flex-start; flex-direction: column; gap: 0.75rem; }
  .stats-strip__inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  footer { padding: 44px 1.5rem 0; }
  .footer-brand { grid-column: auto; }
  .footer-brand img { height: 74px; }
  .footer-map iframe,
  .footer-map .map-static { height: 190px; }
  .footer-map .map-static img { height: 190px; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 0.5rem; }
  .hero { padding: 120px 1.5rem 70px; }
  .hero__inner { gap: 2rem; }
  .hero__sub { margin-bottom: 2rem; }
  .hero__visual { --hero-pack-size: clamp(135px, 44vw, 175px); --hero-platform-height: clamp(110px, 38vw, 155px); --hero-pack-lift: 24px; }
  .hero__scroll { display: none; }
  .container, .container--wide { padding: 0 1.25rem; }
  .firma-timeline { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .team-card { padding: 2rem 1.25rem; }
  .team-card__avatar { width: 132px; height: 132px; }
}
/* ── Statische Karte ────────────────────────────────────── */
.map-static {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-sm);
  display: block;
}
.map-static img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}
.map-static--footer img {
  height: 220px;
  border-radius: 0;
}
.map-static__link {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(255,255,255,0.95);
  color: var(--ink) !important;
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.18);
  text-decoration: none !important;
  transition: background var(--transition);
  white-space: nowrap;
}
.map-static__link:hover { background: #fff; }

/* ── Blog ────────────────────────────────────────────────── */
.blog-section { padding: 72px 0 100px; }

/* Filter tabs */
.blog-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 3.5rem;
}
.blog-filter__btn {
  background: transparent;
  border: 1.5px solid var(--border-d);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #6b7280;
  cursor: pointer;
  transition: all var(--transition);
}
.blog-filter__btn:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.blog-filter__btn.active {
  background: var(--ink-blue);
  border-color: var(--ink-blue);
  color: var(--white);
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

/* Blog card */
.blog-card {
  background: var(--white);
  border: 1px solid rgba(12,14,20,0.07);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--card-shadow);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), opacity var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--card-shadow-hover);
  border-color: rgba(27,176,206,0.22);
}
.blog-card--hidden {
  opacity: 0;
  pointer-events: none;
}

/* Card image */
.blog-card__img-wrap {
  display: block;
  flex-shrink: 0;
}
.blog-card__img {
  width: 100%;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.blog-card__img--placeholder {
  background: var(--ink-blue);
}
.blog-card__img-icon {
  font-size: 3rem;
  line-height: 1;
  opacity: 0.85;
}

/* Card body */
.blog-card__body {
  padding: 1.75rem 1.75rem 2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.blog-card__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  background: rgba(27,176,206,0.1);
  padding: 3px 10px;
  border-radius: 50px;
}
.blog-card__date {
  font-size: 0.75rem;
  color: var(--muted);
}
.blog-card__title {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: -0.01em;
  margin-bottom: 0.85rem;
}
.blog-card__title a {
  color: var(--ink);
  transition: color var(--transition);
}
.blog-card__title a:hover { color: var(--teal); }
.blog-card__excerpt {
  font-size: 0.88rem;
  color: #6b7280;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  flex: 1;
}
.blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--teal);
  letter-spacing: 0.01em;
  transition: gap var(--transition);
  align-self: flex-start;
}
.blog-card__link:hover { gap: 0.55rem; }

/* Blog responsive */
@media (max-width: 1024px) {
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .blog-grid { grid-template-columns: 1fr; }
  .blog-filter { gap: 0.4rem; }
}

/* ── Blog list (Zeilen-Layout) ───────────────────────────── */
.blog-list {
  display: flex;
  flex-direction: column;
}
.blog-load-status {
  display: block;
  margin: 2.5rem auto 0;
  padding: 10px 22px;
  border: 1px solid var(--border-d);
  border-radius: 50px;
  color: var(--ink-blue);
  background: var(--off-white);
  font: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
}
.blog-load-status:hover:not(:disabled) { border-color: var(--ink-blue); }
.blog-load-status.is-complete {
  border-color: transparent;
  color: var(--muted);
  background: transparent;
  cursor: default;
}

.blog-row {
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border-d);
  transition: opacity var(--transition);
}
.blog-row:first-child { border-top: 1px solid var(--border-d); }

.blog-row__img-link { display: block; flex-shrink: 0; }
.blog-row__img {
  width: 230px;
  height: 230px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.blog-row__img-link:hover .blog-row__img {
  transform: translateY(-4px);
  box-shadow: 0 22px 50px rgba(12,14,20,0.16);
}
.blog-row__icon {
  font-size: 5.25rem;
  line-height: 1;
  filter: drop-shadow(0 7px 12px rgba(24,48,72,0.16));
}
.blog-row__img--photo { background: var(--off-white); padding: 0; overflow: hidden; }
.blog-row__img--photo img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s ease; }
.blog-row__img-link:hover .blog-row__img--photo img { transform: scale(1.04); }

.blog-row__body { min-width: 0; }

.blog-row__meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.blog-row__tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
}
.blog-row__date {
  font-size: 0.75rem;
  color: var(--muted);
}

.blog-row__title {
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.blog-row__title a {
  color: var(--ink);
  transition: color var(--transition);
}
.blog-row__title a:hover { color: var(--teal); }

.blog-row__excerpt {
  font-size: 0.96rem;
  color: #6b7280;
  line-height: 1.7;
  margin-bottom: 1.75rem;
  max-width: 560px;
}

.blog-row__read {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--off-white);
  border: 1.5px solid var(--border-d);
  padding: 9px 22px;
  border-radius: 50px;
  transition: all var(--transition);
}
.blog-row__read:hover {
  background: var(--ink-blue);
  color: var(--white);
  border-color: var(--ink-blue);
}

@media (max-width: 860px) {
  .blog-row {
    grid-template-columns: 200px 1fr;
    gap: 2rem;
    padding: 2.5rem 0;
  }
  .blog-row__img { width: 200px; height: 200px; }
}
@media (max-width: 600px) {
  .blog-row {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 2rem 0;
  }
  .blog-row__img { width: 100%; height: 220px; }
}

/* ── Mobile Feinschliff ─────────────────────────────────── */
@media (max-width: 600px) {
  html,
  body { max-width: 100%; overflow-x: hidden; }
  body:has(.nav__links.open) { overflow: hidden; }
  body { font-size: 16px; }

  .container,
  .container--wide { width: 100%; padding-inline: 1.25rem; }
  .section-intro > *,
  .section-intro--full,
  .product-row > *,
  .contact-layout > *,
  .data-service > *,
  .footer-inner > * { min-width: 0; }
  h1, h2, h3, p, a, span, strong, em { overflow-wrap: anywhere; }

  section { padding: 56px 0; }
  section.tight { padding: 44px 0; }
  .section-intro,
  .section-intro--full { gap: 1.4rem; margin-bottom: 2.5rem !important; }
  .reference-request { flex-direction: column; padding: 1.25rem; }
  .headline { font-size: clamp(1.9rem, 9vw, 2.5rem); }
  .body-lg { font-size: 1rem; }

  .nav { height: 64px; padding: 0 1.25rem; }
  .nav__logo { top: calc(50% + 18px); left: .7rem; z-index: 203; padding: 10px 12px; }
  .nav__logo img { height: 48px; }
  .nav__toggle { position: relative; right: 0; z-index: 203; }
  .nav__links {
    z-index: 202;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    height: 100svh;
    max-height: none;
    overflow-y: auto;
    align-items: stretch;
    gap: 0;
    padding: 82px 1.25rem 2rem;
    background: linear-gradient(160deg, #f7fbfc 0%, #edf5f8 100%);
    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
  }
  .nav__links.open { animation: mobile-menu-in .22s ease both; }
  .nav__links li {
    width: 100%;
    max-width: 420px;
    margin-inline: auto;
    border-bottom: 1px solid rgba(56,95,145,.12);
  }
  .nav__links li:last-child { padding-top: .5rem; border-bottom: 0; }
  .nav__links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 46px;
    padding: .65rem .85rem;
    border-radius: 9px;
    font-size: .94rem;
    text-align: left;
  }
  .nav__links a:not(.nav__cta)::after {
    content: '›';
    color: #91a7ba;
    font-size: 1.2rem;
    font-weight: 400;
  }
  .nav__links a:hover,
  .nav__links a.active { background: rgba(76,116,163,.09); }
  .nav__links .nav__cta {
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin: 0;
    padding: .65rem 1rem;
    color: #fff !important;
    background: var(--ink-blue);
    border-radius: 9px;
  }
  .nav:has(.nav__links.open) .nav__toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav:has(.nav__links.open) .nav__toggle span:nth-child(2) { opacity: 0; }
  .nav:has(.nav__links.open) .nav__toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .hero { padding: 108px 1.25rem 48px; }
  .hero__inner { gap: 1.25rem; }
  .hero__eyebrow { margin-bottom: 1.1rem; }
  .hero__headline { font-size: clamp(1.85rem, 8.8vw, 2.35rem); line-height: 1.08; }
  .hero__sub { font-size: 1rem; line-height: 1.65; margin-bottom: 1.6rem; }
  .hero__actions { gap: .75rem; }
  .hero__actions .btn { min-height: 48px; padding: 12px 22px; }
  .hero__visual {
    min-height: 245px;
    --hero-pack-size: clamp(125px, 41vw, 160px);
    --hero-platform-height: clamp(105px, 34vw, 135px);
  }

  .stats-strip__inner {
    width: 100%;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .stats-strip__item {
    min-width: 0;
    padding: 1.8rem 1.1rem;
    border-bottom: 1px solid var(--border);
  }
  .stats-strip__item:nth-child(even) { border-right: 0; }
  .stats-strip__item:last-child {
    grid-column: 1 / -1;
    border-bottom: 0;
    border-right: 0;
  }
  .stats-strip__num { font-size: 2.25rem; }
  .stats-strip__label {
    font-size: .66rem;
    line-height: 1.45;
    letter-spacing: .055em;
    overflow-wrap: anywhere;
  }

  .latest-news { padding-block: 56px; }
  .latest-news__heading { gap: 1rem; margin-bottom: 2rem; }
  .latest-news__item { border-radius: 9px; }
  .latest-news__item {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr);
    min-height: 142px;
  }
  .latest-news__content { padding: 1rem 1rem 1.05rem; }
  .latest-news__visual,
  .latest-news__placeholder { height: 100%; min-height: 142px; }
  .latest-news__placeholder span { font-size: 2.15rem; }
  .latest-news__new { top: 8px; right: 8px; padding: 3px 8px; font-size: .58rem; }
  .latest-news__meta { gap: .45rem; margin-bottom: .55rem; font-size: .68rem; }
  .latest-news__meta span { padding: 2px 7px; }
  .latest-news__content h3 { margin: 0 0 .65rem; font-size: 1.02rem; line-height: 1.22; }
  .latest-news__content > p { display: none; }
  .latest-news__read { font-size: .72rem; }

  .product-row { min-height: 0; margin-bottom: 2rem; }
  .product-row__visual { min-height: 285px; padding: 2rem 1.25rem; }
  .product-row__visual img.product-row__pack { width: min(82%, 310px); }
  .product-row__visual img.product-row__pack { transform: translateY(14px); }
  .product-row__body { padding: 2rem 1.35rem 2.25rem; }
  .product-row__label {
    top: 1rem;
    left: 1.25rem;
    right: 1.25rem;
    max-width: calc(100% - 2.5rem);
    font-size: .66rem;
    line-height: 1.35;
  }
  .check-list li { font-size: .88rem; }
  .home-data-service { margin-top: 2rem; }
  .interface-doc { width: 100%; min-width: 0; }
  .interface-doc > * { min-width: 0; max-width: 100%; }

  .feat-grid,
  .support-grid,
  .interface-grid,
  .migration-grid,
  .firma-timeline { gap: .75rem; margin-top: 1.5rem; }
  .feat-grid__item {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    column-gap: .9rem;
    padding: 1.15rem 1rem;
  }
  .feat-grid__icon {
    grid-row: 1 / span 2;
    width: 42px;
    height: 42px;
    margin: 0;
    font-size: 1.2rem;
  }
  .feat-grid__item h3 { margin: 0 0 .25rem; }
  .feat-grid__item p { font-size: .82rem; line-height: 1.5; }

  .support-card { padding: 1.15rem 1rem; }
  .support-card h3 { margin-bottom: .25rem; }
  .support-card p { font-size: .82rem; line-height: 1.5; }

  .interface-item,
  .migration-item {
    min-height: 0;
    padding: 1.15rem 1rem;
  }
  .interface-item span { margin-bottom: .4rem; font-size: .68rem; }
  .interface-item h3 { margin-bottom: .35rem; }
  .interface-item p { font-size: .8rem; line-height: 1.5; }
  .interface-item a { margin-top: .6rem; }

  .firma-timeline { margin-block: 2rem; }
  .firma-timeline__item {
    display: grid;
    grid-template-columns: 72px minmax(0, 1fr);
    column-gap: .9rem;
    padding: 1.1rem 1rem;
  }
  .firma-timeline__year {
    grid-row: 1 / span 2;
    margin: 0;
    font-size: 1.65rem;
  }
  .firma-timeline__title { margin-bottom: .2rem; }
  .firma-timeline__desc { font-size: .8rem; line-height: 1.45; }

  .page-hero,
  .page-hero--full { padding: 112px 1.25rem 58px; }
  .page-hero--full {
    min-height: auto;
    justify-content: flex-start;
  }
  .page-hero--full .page-hero__inner { margin-top: 0; }
  .page-hero h1,
  .page-hero__title { font-size: clamp(1.85rem, 8.8vw, 2.35rem); line-height: 1.08; }
  .page-hero p { font-size: 1rem; line-height: 1.65; }

  .data-service__panel { padding: 1.25rem 1.1rem; }
  .data-service__panel h3 { margin-bottom: .8rem; font-size: 1.12rem; }
  .data-service__panel ul { gap: .55rem; }
  .data-service__panel li { font-size: .84rem; line-height: 1.45; }
  .data-service__step {
    display: grid;
    grid-template-columns: 38px minmax(0, 1fr);
    column-gap: .75rem;
    padding: 1.1rem 1rem;
  }
  .data-service__step span { grid-row: 1 / span 2; margin: .15rem 0 0; }
  .data-service__step h3 { margin-bottom: .25rem; }
  .data-service__step p { line-height: 1.5; }
  .data-service__systems { padding: 1.6rem 1.35rem; }
  .data-service__cta { padding: 1.5rem 1.35rem; }

  .blog-section { padding: 48px 0 70px; }
  .blog-filter { margin-bottom: 2rem; }
  .blog-filter__btn { padding: 7px 14px; font-size: .72rem; }
  .blog-row { gap: 1.2rem; padding: 1.75rem 0; }
  .blog-row__img { height: 190px; border-radius: 9px; }
  .blog-row__meta { flex-wrap: wrap; margin-bottom: .75rem; }
  .blog-row__title { font-size: 1.35rem; }
  .blog-row__excerpt { font-size: .9rem; margin-bottom: 1.25rem; }

  .team-grid { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
  .team-card { padding: 1.15rem 1rem 1.25rem; }
  .team-card:has(.team-card__avatar) {
    display: grid;
    grid-template-columns: 82px minmax(0, 1fr);
    column-gap: 1rem;
    align-items: center;
  }
  .team-card__avatar {
    grid-row: 1 / span 3;
    width: 82px;
    height: 82px;
    margin: 0;
  }
  .team-card__name { align-self: end; }
  .team-card__role { margin-bottom: .25rem; font-size: .82rem; line-height: 1.4; }
  .team-card__bio { align-self: start; font-size: .78rem; }
  .team-card--collective { display: block; padding: 1.1rem 1rem; }

  .contact-layout { gap: 2.5rem; }
  .contact-card {
    min-height: 0;
    padding: 1.15rem 1rem;
    justify-content: flex-start;
  }
  .contact-card__label { margin-bottom: .4rem; font-size: .66rem; }
  .contact-card h3 { margin-bottom: .3rem; font-size: 1rem; }
  .contact-card p { font-size: .82rem; line-height: 1.5; }
  .contact-map-card { min-height: 280px; }

  .links-grid--compact { gap: .75rem; margin-left: 0; }
  .links-grid--compact .links-item,
  .links-item {
    display: grid;
    grid-template-columns: 40px minmax(0, 1fr);
    column-gap: .85rem;
    min-height: 0;
    padding: 1.05rem 1rem;
  }
  .links-item__icon,
  .links-grid--compact .links-item__icon {
    grid-row: 1 / span 2;
    width: 40px;
    height: 40px;
    margin: 0;
    font-size: 1.15rem;
  }
  .links-item h3 { margin-bottom: .2rem; }
  .links-item p { margin: 0; font-size: .8rem; line-height: 1.45; }

  .testimonial-slider { padding: 58px 1.25rem; }
  .testimonial-slider__viewport { min-height: 380px; }
  .testimonial-slide__quote { font-size: 1.08rem; line-height: 1.65; }

  .cta-band { padding: 58px 1.25rem; }
  .cta-band h2 { font-size: 1.8rem; }
  .cta-band .btn { width: 100%; max-width: 310px; justify-content: center; }

  footer { padding-inline: 1.25rem; }
  .footer-inner { gap: 2.25rem; }
}
