:root{
  --brand:#00446b; --brand-600:#3f87b0; --brand-700:#376f90; --brand-soft:#e9f3f9; --brand-ink-on:#ffffff;
  --ink:#314049; --ink-2:#475569; --line:#e5e7eb; --panel:#fff; --bg:#f5fbfe;
  --wa1:#25d366; --wa2:#1fb253;
  --shadow:0 8px 24px rgba(15,76,100,.10),0 2px 6px rgba(15,76,100,.06);
  --shadow-soft:0 6px 18px rgba(15,76,100,.08);
  --radius:18px;
}
*{box-sizing:border-box}
html,body{margin:0;background:var(--bg);color:var(--ink);font:400 16px/1.55 "Inter",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial}
img{max-width:100%;display:block;height:auto}
a{color:var(--brand);text-decoration:none}
h1{font:800 clamp(28px,5vw,44px)/1.1 Inter,system-ui}
h2{font:800 clamp(22px,3.2vw,32px)/1.15 Inter,system-ui;margin:0 0 18px;color:var(--brand)}
h3{font:800 20px/1.2 Inter,system-ui;margin:0 0 8px}
p{margin:0 0 10px}
section{padding:48px 20px}
.container{max-width:1180px;margin:0 auto}
section[aria-label], footer { content-visibility:auto; contain-intrinsic-size:800px; }
@media (prefers-reduced-motion: reduce){
  *{animation-duration:.001ms !important;animation-iteration-count:1 !important;transition:none !important;scroll-behavior:auto !important}
}

/* ===== HEADER / MENU (ERWEITERT FÜR MEHRERE MENÜS) ===== */
.header{
  position:sticky;top:0;z-index:50;background:#fff;
  border-bottom:1px solid rgba(0,0,0,.06);
  backdrop-filter:saturate(180%) blur(6px)
}
.header .inner{
  max-width:1180px;margin:0 auto;display:flex;align-items:center;
  gap:14px;padding:10px 20px;min-height:66px
}
.brand{display:flex;align-items:center;gap:10px}
.brand img{height:40px;width:auto}
.main-nav{
  margin-left:auto;display:flex;gap:20px;align-items:center
}
.nav-link{
  color:var(--ink);font-weight:700;letter-spacing:-.01em;
  padding:10px 12px;border-radius:12px;
  transition:background-color .18s ease, box-shadow .18s ease, color .18s ease
}
.nav-link:hover{
  background:rgba(15,76,100,.06);box-shadow:0 6px 14px rgba(15,76,100,.08)
}
.menu-trigger{
  display:none;margin-left:auto;border:1px solid var(--line);
  background:#fff;border-radius:12px;padding:9px 12px;font-weight:700;
  cursor:pointer
}
.menu-panel{
  display:none;position:absolute;left:16px;right:16px;top:66px;
  z-index:40;background:#fff;border:1px solid var(--line);
  border-radius:14px;box-shadow:var(--shadow-soft);padding:12px;gap:8px;
  grid-template-columns:1fr
}
.menu-panel a{
  display:block;padding:10px 12px;border-radius:10px
}
.menu-panel.open{display:grid}

/* RESPONSIVE */
@media (max-width:900px){
  .main-nav{display:none}.menu-trigger{display:inline-flex}
}
@media (min-width:901px){
  .main-nav{display:flex!important}.menu-panel{display:none!important}
}

/* ===== BUTTONS ===== */
.btn{
  display:inline-flex;align-items:center;gap:10px;padding:12px 16px;
  border-radius:14px;font-weight:800;border:1px solid transparent;
  cursor:pointer;box-shadow:0 6px 16px rgba(15,76,100,.08);
  transition:transform .08s ease, filter .18s ease
}
.btn:active{transform:translateY(1px)}
.btn.primary{background:linear-gradient(180deg,var(--brand),var(--brand));border-color:var(--brand);color:#fff}
.btn.ghost{background:#fff;border-color:rgba(0,0,0,.12);color:var(--brand)}
.btn.wa{background:linear-gradient(180deg,var(--wa1),var(--wa2));border-color:var(--wa2);color:#fff;
  box-shadow:inset 0 1px 0 rgba(255,255,255,.22),0 10px 22px rgba(21,135,85,.28)}
.cta{display:flex;flex-wrap:wrap;gap:12px}

/* ===== HERO ===== */
.hero{
  position:relative;overflow:hidden;min-height:420px;color:#fff;
  background:linear-gradient(rgba(73,147,189,.55),rgba(73,147,189,.55)),
             url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=1600&auto=format&fit=crop');
  background-size:cover;background-position:center top;
}
.hero::after{content:'';position:absolute;left:0;right:0;bottom:0;height:90px;
  background:linear-gradient(to bottom,rgba(245,251,254,0),var(--bg))}
.hero .wrap{max-width:1180px;margin:0 auto;padding:26px 20px 32px}

.badge,.pill{
  display:inline-flex;align-items:center;gap:8px;
  padding:10px 14px;border-radius:9px;font-weight:700;color:var(--brand);
  background:rgba(255,255,255,.58);border:1px solid rgba(255,255,255,.35);
  backdrop-filter:saturate(160%) blur(10px);-webkit-backdrop-filter:saturate(160%) blur(10px);
  box-shadow:0 6px 18px rgba(15,76,100,.08), inset 0 1px 0 rgba(255,255,255,.35);
}

/* ===== CARDS / GRIDS ===== */
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:18px}
@media (max-width:900px){.grid-3,.grid-2{grid-template-columns:1fr}}
.card{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);padding:18px}

.btn.primary.glass{
  background:linear-gradient(180deg,rgba(15,76,100,.60),rgba(15,76,100,.60));
  border-color:rgba(15,76,100,.65);color:#fff;
  backdrop-filter:saturate(160%) blur(10px);-webkit-backdrop-filter:saturate(160%) blur(10px);
  box-shadow:0 10px 22px rgba(15,76,100,.18), inset 0 1px 0 rgba(255,255,255,.22);
}
.btn.primary.glass:hover{filter:brightness(.98)}
.btn.primary.glass:focus{outline:none;box-shadow:0 0 0 3px rgba(15,76,100,.25)}

/* ===== PROCESS ===== */
#process .step{display:flex;gap:14px;align-items:flex-start}
#process .icon{width:44px;height:44px;border-radius:12px;border:1px solid var(--line);background:#f8fbfd;
  display:grid;place-items:center;font-size:22px;flex:0 0 44px}
#process .card h3{margin:0 0 6px}

/* ===== KONTAKT ===== */
#kontakt .cards{display:grid;grid-template-columns:1fr 1fr;gap:18px}
#kontakt .contact-card{background:var(--panel);border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);padding:18px}
#kontakt input,#kontakt textarea,#kontakt select{
  width:100%;border:1px solid var(--line);border-radius:12px;padding:12px;background:#fff;color:var(--ink);
  transition:box-shadow .18s ease,border-color .18s ease;font:inherit
}
#kontakt input:focus,#kontakt textarea:focus,#kontakt select:focus{
  border-color:#b8d7e6;box-shadow:0 0 0 3px rgba(15,76,100,.13);outline:0
}
#kontakt .cta{margin-top:12px}
@media (max-width:900px){#kontakt .cards{grid-template-columns:1fr}}

/* ===== FOOTER ===== */
footer{margin-top:24px;background:#4993bd;color:#eaf5f8}
footer a{color:#eaf5f8}
.foot-grid{display:grid;gap:5px;grid-template-columns:2fr 1fr 1fr;max-width:1180px;margin:0 auto;padding:16px 10px}
.foot-sm{display:flex;gap:10px;flex-wrap:wrap;margin-top:10px}
.license{border-top:1px solid rgba(255,255,255,.12);padding:12px 20px;color:#cde6ee;max-width:1180px;margin:0 auto}
footer .btn.ghost{background:#fff;border-color:rgba(255,255,255,.3);color:var(--brand)}
@media (max-width:840px){.foot-grid{grid-template-columns:1fr}}

/* ===== FLOATING WHATSAPP ===== */
.wa-float{
  position:fixed;right:18px;bottom:18px;width:60px;height:60px;border-radius:999px;
  background:linear-gradient(180deg,var(--wa1),var(--wa2));display:grid;place-items:center;
  box-shadow:0 12px 30px rgba(21,135,85,.35),inset 0 1px 0 rgba(255,255,255,.22);z-index:70
}
.wa-float svg{width:28px;height:28px;fill:#fff}

/* ===== FAQ ===== */
.faq .faq-list{display:grid;gap:10px;margin-top:10px}
.faq-item{background:#fff;border:1px solid var(--line);border-radius:14px;box-shadow:var(--shadow-soft);overflow:hidden}
.faq-item summary{list-style:none;cursor:pointer;display:flex;align-items:center;justify-content:space-between;
  gap:16px;padding:14px 16px;font-weight:800;color:var(--ink)}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary svg{width:20px;height:20px;flex:0 0 20px;opacity:.65;transition:transform .2s ease}
.faq-item[open] summary svg{transform:rotate(180deg)}
.faq-item .answer{padding:0 16px 14px;color:var(--ink-2);border-top:1px solid var(--line);background:#fbfeff}
.faq-item a{font-weight:700}

/* ===== UTIL: SQUARE CORNERS ===== */
.square-cards .card,.square-cards .tile,.square-cards .hero-card,.square-cards .heroimg,
#leistungen.square .card,#leistungen.square .tile,#leistungen.square .hero-card,#leistungen.square .heroimg{
  border-radius:0 !important
}

.icon { width:28px; height:28px; color:#0e2f3e; }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700&display=swap');

/* ===== 2025: Exact Original Look – Sharp + Diagonal Accent ===== */
#leistungen-vcards {
  --vcard-1: #4993bd;
  --vcard-2: #4a9d6b;
  --vcard-3: #2c3e50;

  --vglass: rgba(255, 255, 255, 0.88);
  --vborder-base: rgba(73, 147, 189, 0.2);
  --vshadow: rgba(7, 35, 53, 0.11);
  --vink: #0b2f3e;
  --vink2: #3c5461;

  padding: 50px 0;
  background: linear-gradient(135deg, #f9fcff 0%, #f2f8ff 100%);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  isolation: isolate;
  box-sizing: border-box;
}

#leistungen-vcards * { box-sizing: border-box; }

#leistungen-vcards .vwrap { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

#leistungen-vcards .vgrid {
  display: grid;
  gap: 34px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  #leistungen-vcards .vgrid { grid-template-columns: repeat(3, 1fr); }
}

/* Card – sharp corners, same as original */
#leistungen-vcards .vcard {
  position: relative;
  background: var(--vglass);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1.5px solid var(--vborder-base);
  border-radius: 0; /* SHARP */
  padding: 40px 32px 48px;
  box-shadow: 0 12px 32px var(--vshadow), 0 0 0 1px rgba(255,255,255,.2) inset;
  transition: all .4s cubic-bezier(.2,.8,.2,1);
  overflow: hidden;
  z-index: 1;
}
#leistungen-vcards .vcard:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 24px 56px var(--vshadow), 0 0 0 1px rgba(255,255,255,.3) inset;
  border-color: var(--accent);
  border-width: 2.5px;
}

/* Diagonal stripe – exactly like your last approved version */
#leistungen-vcards .vstripe {
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-bottom: 90px solid var(--accent);
  border-left: 90px solid transparent;
  opacity: .6;
  transform: translate(30px,30px) scale(.7);
  transition: all .6s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  z-index: 2;
}
#leistungen-vcards .vcard:hover .vstripe {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

/* Title underline – same animation */
#leistungen-vcards .vtitle-line {
  position: absolute;
  left: 32px; right: 32px;
  height: 3px;
  background: linear-gradient(90deg,transparent,var(--accent),transparent);
  border-radius: 2px;
  bottom: 0;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s ease;
  z-index: 2;
}
#leistungen-vcards .vcard:hover .vtitle-line { transform: scaleX(1); }

/* Content */
#leistungen-vcards .vinner { position: relative; z-index: 3; }

#leistungen-vcards .vcard h3 {
  margin: 0 0 18px;
  font-size: 20px;
  font-weight: 700;
  color: var(--vink);
  letter-spacing: -0.03em;
  line-height: 1.25;
  position: relative;
  padding-bottom: 16px;
}
#leistungen-vcards .vcard h3::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 40px; height: 3px;
  background: var(--accent);
  border-radius: 2px;
  transition: width .4s ease;
}
#leistungen-vcards .vcard:hover h3::after { width: 80px; }

#leistungen-vcards .vcard ul {
  margin: 0 0 24px; padding: 0; list-style: none;
  font-size: 14.8px; color: var(--vink2); line-height: 1.65;
  display: grid; gap: 9px; font-weight: 500;
}
#leistungen-vcards .vcard li { padding-left: 2px; transition: color .3s ease; }
#leistungen-vcards .vcard:hover li { color: var(--vink); }

/* CTA – glass pill */
#leistungen-vcards .vmore {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13.8px; font-weight: 600; color: var(--accent);
  text-decoration: none; padding: 9px 18px; border-radius: 50px;
  background: rgba(255,255,255,.7); backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.5);
  transition: all .3s ease; position: relative; overflow: hidden; z-index: 3;
}
#leistungen-vcards .vmore::before {
  content: ""; position: absolute; inset: 0;
  background: var(--accent gallo); opacity: 0; transition: opacity .3s ease; z-index: -1;
}
#leistungen-vcards .vmore span,
#leistungen-vcards .vmore svg { position: relative; z-index: 1; transition: color .3s ease; }
#leistungen-vcards .vmore:hover::before { opacity: 1; }
#leistungen-vcards .vmore:hover span,
#leistungen-vcards .vmore:hover svg { color: #fff; }
#leistungen-vcards .vmore svg {
  width: 15px; height: 15px; stroke-width: 2; transition: transform .3s ease;
}
#leistungen-vcards .vmore:hover svg { transform: translateX(4px); }

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&display=swap');

/* ===== 2025 Branchen Tiles – Mobile-First, Full-Bleed, Bigger ===== */
#branchen.branchen-tiles {
  --b-brand: #4993bd;
  --b-ink: #0b2f3e;
  --b-ink-light: #3c5461;
  --b-glass: rgba(255, 255, 255, 0.85);
  --b-border: rgba(73, 147, 189, 0.15);
  --b-shadow: rgba(7, 35, 53, 0.09);

  padding: 90px 0 0 0; /* ← No side padding on mobile */
  background: linear-gradient(135deg, #f9fcff 0%, #f2f8ff 100%);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  isolation: isolate;
}

#branchen .b-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0;
}

#branchen .b-title {
  text-align: left;
  margin: 0 0 56px;
  padding: 0 20px; /* ← Only title has padding */
  font-weight: 800;
  font-size: clamp(28px, 4vw, 36px);
  color: var(--b-ink);
  letter-spacing: -0.04em;
  line-height: 1.2;
  position: relative;
}

#branchen .b-title::after {
  content: "";
  position: absolute;
  left: 20px;
  bottom: -14px;
  width: 70px;
  height: 4px;
  background: var(--b-brand);
  border-radius: 2px;
}

/* GRID – MOBILE: 1 COL, NO GAP */
#branchen .b-grid {
  display: grid;
  gap: 0; /* ← NO GAP */
  grid-template-columns: 1fr;
}

/* MOBILE: BIGGER TILES */
@media (max-width: 559px) {
  #branchen .b-grid {
    gap: 0;
  }

  #branchen .b-tile {
    height: 360px; /* ← BIGGER */
    border-left: 0;
    border-right: 0;
    border-top: 0;
    border-bottom: 1.5px solid var(--b-border);
    box-shadow: none; /* ← Clean stack */
  }

  #branchen .b-tile:first-child {
    border-top: 1.5px solid var(--b-border);
  }

  #branchen .b-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  }

  #branchen .b-label {
    left: 20px;
    right: 20px;
    bottom: 28px;
  }

  #branchen .b-label h3 {
    font-size: 1.8rem; /* ← BIGGER */
    margin-bottom: 10px;
  }

  #branchen .b-label p {
    font-size: 1.1rem; /* ← BIGGER */
    line-height: 1.55;
  }

  #branchen .b-arrow {
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
  }
}

/* TABLET: 2 COL */
@media (min-width: 560px) and (max-width: 899px) {
  #branchen .b-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 0 12px;
  }

  #branchen .b-tile {
    height: 300px;
    border: 1.5px solid var(--b-border);
  }
}

/* DESKTOP: 4 COL */
@media (min-width: 900px) {
  #branchen .b-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding: 0 12px;
  }

  #branchen .b-tile {
    height: 280px;
    border: 1.5px solid var(--b-border);
  }
}

/* Tile – SHARP + DEEP SHADOW (Desktop/Tablet) */
#branchen .b-tile {
  position: relative;
  background: center/cover no-repeat;
  border-radius: 0;
  overflow: hidden;
  display: block;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 1;
}

#branchen .b-tile:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow:
    0 36px 72px var(--b-shadow),
    0 14px 28px rgba(0, 0, 0, 0.08),
    0 0 0 1px var(--b-brand);
  border-color: var(--b-brand);
  border-width: 2.5px;
}

/* Dark overlay */
#branchen .b-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,47,62,0.4), rgba(11,47,62,0.7));
  transition: opacity 0.4s ease;
  z-index: 1;
}

#branchen .b-tile:hover .b-overlay {
  opacity: 0.85;
}

/* Glass panel */
#branchen .b-glass {
  position: absolute;
  inset: 0;
  background: var(--b-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  opacity: 0;
  transition: opacity 0.4s ease;
  z-index: 2;
}

#branchen .b-tile:hover .b-glass {
  opacity: 1;
}

/* Diagonal Stripe */
#branchen .b-stripe {
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-bottom: 70px solid var(--b-brand);
  border-left: 70px solid transparent;
  opacity: 0.6;
  transform: translate(24px, 24px) scale(0.7);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 3;
}

#branchen .b-tile:hover .b-stripe {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Label */
#branchen .b-label {
  position: absolute;
  left: 24px;
  bottom: 24px;
  right: 24px;
  z-index: 4;
  transform: translateY(8px);
  transition: transform 0.4s ease;
}

#branchen .b-tile:hover .b-label {
  transform: translateY(0);
}

#branchen .b-label h3 {
  margin: 0 0 8px;
  font-weight: 700;
  font-size: 1.35rem;
  color: #ffffff;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
  letter-spacing: -0.03em;
  line-height: 1.25;
}

#branchen .b-label p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
  font-weight: 500;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

/* Sharp Arrow */
#branchen .b-arrow {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 36px;
  height: 36px;
  background: var(--b-brand);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 600;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 30% 50%);
  opacity: 0;
  transform: translateX(10px) scale(0.8);
  transition: all 0.4s ease;
  z-index: 4;
}

#branchen .b-tile:hover .b-arrow {
  opacity: 1;
  transform: translateX(0) scale(1);
}

/* Load animation */
#branchen .b-tile {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

#branchen .b-tile:nth-child(1) { animation-delay: 0.1s; }
#branchen .b-tile:nth-child(2) { animation-delay: 0.15s; }
#branchen .b-tile:nth-child(3) { animation-delay: 0.2s; }
#branchen .b-tile:nth-child(4) { animation-delay: 0.25s; }
#branchen .b-tile:nth-child(5) { animation-delay: 0.3s; }
#branchen .b-tile:nth-child(6) { animation-delay: 0.35s; }
#branchen .b-tile:nth-child(7) { animation-delay: 0.4s; }
#branchen .b-tile:nth-child(8) { animation-delay: 0.45s; }

/* ===== LEISTUNGEN SLIDER ===== */
#leistungen-slider.leistungen-one {
  padding: 80px 20px;
  background: #f8fafc;
}

#leistungen-slider .container {
  max-width: 1200px;
  margin: 0 auto;
}

#leistungen-slider h2 {
  text-align: left;
  margin-bottom: 16px;
  color: #0b2f3e;
  font-weight: 700;
  font-size: 2.5rem;
}

#leistungen-slider .subhead {
  text-align: left;
  margin: 0 0 50px;
  color: #3c5461;
  font-size: 1.1rem;
  max-width: 600px;
  line-height: 1.6;
}

#leistungen-slider .viewport {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
}

#leistungen-slider .rail {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  padding: 10px 0 30px;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

#leistungen-slider .rail::-webkit-scrollbar {
  display: none;
}

#leistungen-slider .card {
  flex: 0 0 clamp(300px, 32%, 380px);
  height: 320px;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  border: none;
  background: #e7eef3 center/cover no-repeat;
  scroll-snap-align: start;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

#leistungen-slider .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

#leistungen-slider .card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.7) 100%);
  pointer-events: none;
  transition: all 0.3s ease;
}

#leistungen-slider .card:hover::after {
  background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.8) 100%);
}

#leistungen-slider .label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: transparent;
  color: #fff;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  letter-spacing: 0;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

#leistungen-slider .card:hover .label {
  transform: translateY(-8px);
}

#leistungen-slider .label span {
  font-size: 1.2rem;
  line-height: 1.3;
}

#leistungen-slider .label svg {
  width: 20px;
  height: 20px;
  opacity: 0;
  flex: 0 0 20px;
  fill: #fff;
  transform: translateX(-10px);
  transition: all 0.3s ease;
}

#leistungen-slider .card:hover .label svg {
  opacity: 1;
  transform: translateX(0);
}

#leistungen-slider .nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

#leistungen-slider .btn-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 0;
  border: none;
  background: #fff;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  cursor: pointer;
  pointer-events: auto;
  transition: all 0.3s ease;
}

#leistungen-slider .btn-nav:hover {
  background: #4993bd;
}

#leistungen-slider .btn-nav:hover svg {
  stroke: #fff;
}

#leistungen-slider .prev {
  left: -25px;
}

#leistungen-slider .next {
  right: -25px;
}

#leistungen-slider .btn-nav svg {
  width: 24px;
  height: 24px;
  stroke: #0b2f3e;
  transition: stroke 0.3s ease;
}

#leistungen-slider .dots {
  display: flex;
  gap: 12px;
  justify-content: center;
  margin-top: 30px;
  flex-wrap: wrap;
}

#leistungen-slider .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #cbd5e0;
  cursor: pointer;
  transition: all 0.3s ease;
}

#leistungen-slider .dot.active {
  background: #4993bd;
  transform: scale(1.2);
}

@media (max-width: 900px) {
  #leistungen-slider .btn-nav {
    display: none;
  }

  #leistungen-slider .card {
    flex: 0 0 min(85vw, 380px);
    height: 280px;
  }

  #leistungen-slider .label {
    padding: 20px;
  }

  #leistungen-slider .label span {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  #leistungen-slider.leistungen-one {
    padding: 60px 20px;
  }

  #leistungen-slider h2 {
    font-size: 2rem;
  }

  #leistungen-slider .subhead {
    font-size: 1rem;
    margin-bottom: 40px;
  }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&display=swap');

#vorteile-modern {
  --vbrand: #4993bd;
  --vink: #0b2f3e;
  --vink-light: #3c5461;
  --vline: #e2e8f0;
  --vbg: #f9fcff;

  padding: 100px 20px;
  background: var(--vbg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  isolation: isolate;
}

#vorteile-modern .v-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
}

#vorteile-modern .v-head {
  text-align: left;
  margin: 0 0 64px;
}

#vorteile-modern .v-title {
  font-size: clamp(26px, 4.5vw, 38px);
  font-weight: 800;
  color: var(--vink);
  letter-spacing: -0.05em;
  line-height: 1.1;
  margin: 0 0 16px;
}

#vorteile-modern .v-subtitle {
  font-size: 1.15rem;
  color: var(--vink-light);
  font-weight: 500;
  max-width: 720px;
  line-height: 1.65;
}

/* Staggered Grid */
#vorteile-modern .v-grid {
  display: grid;
  gap: 40px 32px;
  grid-template-columns: repeat(1, 1fr);
}

@media (min-width: 640px) {
  #vorteile-modern .v-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  #vorteile-modern .v-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 48px 36px;
  }
}

/* Card – Minimal, Sharp, Animated Line */
#vorteile-modern .v-card {
  position: relative;
  padding-left: 48px;
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#vorteile-modern .v-card:hover {
  transform: translateY(-8px);
}

/* Number + Animated Line */
#vorteile-modern .v-num {
  position: absolute;
  left: 0;
  top: 4px;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--vbrand);
  opacity: 0.2;
  transition: all 0.4s ease;
}

#vorteile-modern .v-card:hover .v-num {
  opacity: 1;
  transform: scale(1.3);
}

#vorteile-modern .v-line {
  position: absolute;
  left: 18px;
  top: 32px;
  width: 2px;
  height: 0;
  background: var(--vbrand);
  transition: height 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#vorteile-modern .v-card:hover .v-line {
  height: 60px;
}

/* Icon */
#vorteile-modern .v-ico {
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  color: var(--vbrand);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease;
}

#vorteile-modern .v-card:hover .v-ico {
  opacity: 1;
  transform: translateY(0);
}

#vorteile-modern .v-ico svg {
  width: 100%;
  height: 100%;
  stroke: currentColor;
  stroke-width: 2.2;
  fill: none;
}

/* Text */
#vorteile-modern .v-card h3 {
  margin: 0 0 12px;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--vink);
  letter-spacing: -0.03em;
  line-height: 1.3;
}

#vorteile-modern .v-card p {
  margin: 0;
  font-size: 1rem;
  color: var(--vink-light);
  line-height: 1.65;
  font-weight: 500;
}

/* Stagger animation on load */
#vorteile-modern .v-card {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

#vorteile-modern .v-card:nth-child(1) { animation-delay: 0.1s; }
#vorteile-modern .v-card:nth-child(2) { animation-delay: 0.2s; }
#vorteile-modern .v-card:nth-child(3) { animation-delay: 0.3s; }
#vorteile-modern .v-card:nth-child(4) { animation-delay: 0.4s; }
#vorteile-modern .v-card:nth-child(5) { animation-delay: 0.5s; }
#vorteile-modern .v-card:nth-child(6) { animation-delay: 0.6s; }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&display=swap');

/* ===== 2025 Next Steps: Horizontal Timeline + Premium Depth ===== */
#next-steps.steps-v2 {
  --brand: #4993bd;
  --ink: #0b2f3e;
  --ink-light: #475569;
  --line: rgba(73, 147, 189, 0.2);
  --shadow: rgba(7, 35, 53, 0.08);
  --bg: linear-gradient(135deg, #f9fcff 0%, #f2f8ff 100%);

  padding: 100px 20px;
  background: var(--bg);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  isolation: isolate;
}

#next-steps .s-wrap {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 12px;
}

#next-steps .s-title {
  text-align: left;
  margin: 0 0 72px;
  font-weight: 800;
  font-size: clamp(22px, 4vw, 30px);
  color: var(--ink);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

/* Horizontal Timeline Container */
#next-steps .s-timeline {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

#next-steps .s-line {
  flex: 1;
  height: 4px;
  background: linear-gradient(to right, var(--line), var(--brand), var(--line));
  border-radius: 2px;
  position: relative;
}

#next-steps .s-line::before {
  content: "";
  position: absolute;
  top: -8px; left: 0; right: 0;
  height: 20px;
  background: linear-gradient(to right, transparent, var(--brand), transparent);
  opacity: 0;
  transition: opacity 0.6s ease;
}

#next-steps:hover .s-line::before {
  opacity: 0.6;
}

/* Step Markers */
#next-steps .s-marker {
  width: 56px;
  height: 56px;
  background: var(--brand);
  color: white;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-weight: 800;
  font-size: 20px;
  box-shadow:
    0 12px 24px rgba(73, 147, 189, 0.3),
    0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 2;
  position: relative;
}

#next-steps .s-marker::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  border: 2px solid var(--line);
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.4s ease;
}

#next-steps .s-card:hover + .s-timeline .s-marker,
#next-steps .s-timeline:hover .s-marker {
  transform: scale(1.1);
  box-shadow:
    0 20px 40px rgba(73, 147, 189, 0.4),
    0 8px 16px rgba(0, 0, 0, 0.15);
}

#next-steps .s-card:hover ~ .s-timeline .s-marker::after,
#next-steps .s-timeline:hover .s-marker::after {
  opacity: 1;
}

/* Grid */
#next-steps .s-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

@media (max-width: 1000px) {
  #next-steps .s-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  #next-steps .s-timeline {
    display: none; /* Hide timeline on mobile for cleaner look */
  }
}

/* Card */
#next-steps .s-card {
  position: relative;
  background: white;
  border: 1px solid var(--line);
  border-radius: 0; /* Sharp edges */
  padding: 40px 24px;
  text-align: center;
  box-shadow:
    0 20px 40px var(--shadow),
    0 8px 16px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeUp 0.6s ease forwards;
}

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

#next-steps .s-card:nth-child(1) { animation-delay: 0.1s; }
#next-steps .s-card:nth-child(2) { animation-delay: 0.2s; }
#next-steps .s-card:nth-child(3) { animation-delay: 0.3s; }

#next-steps .s-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 40px 80px var(--shadow),
    0 16px 32px rgba(0, 0, 0, 0.08),
    0 0 0 1px var(--brand);
  border-color: var(--brand);
}

/* Diagonal Stripe Animation */
#next-steps .s-stripe {
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-bottom: 80px solid var(--brand);
  border-left: 80px solid transparent;
  opacity: 0.6;
  transform: translate(20px, 20px) scale(0.7);
  transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
  z-index: 1;
}

#next-steps .s-card:hover .s-stripe {
  opacity: 1;
  transform: translate(0, 0) scale(1);
}

/* Content */
#next-steps .s-card h3 {
  margin: 0 0 16px;
  font-weight: 800;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.3;
}

#next-steps .s-card p {
  margin: 0;
  color: var(--ink-light);
  font-size: 0.95rem;
  line-height: 1.6;
  font-weight: 500;
}

/* Mobile adjustments */
@media (max-width: 1000px) {
  #next-steps .s-card {
    text-align: left;
    padding: 32px 24px;
  }
}

/* ===== QUALICHECK ===== */
#qualicheck{padding:28px 0}
#qualicheck .wrap{max-width:1180px;margin:0 auto;padding:0 20px}
#qualicheck .card{position:relative;background:#fff;border:1px solid #e7eef3;border-radius:14px;box-shadow:0 8px 24px rgba(9,38,59,.06);padding:28px}
#qualicheck .grid{display:grid;grid-template-columns:420px 1fr;gap:32px;align-items:center}
@media (max-width:1000px){#qualicheck .grid{grid-template-columns:1fr;gap:18px}}
#qualicheck .imgwrap{position:relative}
#qualicheck .imgwrap::before{content:"";position:absolute;left:-28px;top:-24px;bottom:-24px;width:88px;background:#1f4361;border-radius:10px;z-index:0;opacity:.95}
#qualicheck .img{position:relative;z-index:1;height:280px;border-radius:10px;overflow:hidden;background:#e7eef3 center/cover no-repeat;border:1px solid #d9e6ef}
@media (max-width:600px){#qualicheck .img{height:220px}}
#qualicheck .eyebrow{display:inline-block;margin-bottom:6px;font-size:12px;letter-spacing:.12em;text-transform:uppercase;color:#6a8090}
#qualicheck h2{margin:0 0 8px;font-weight:800;letter-spacing:-.01em;color:#0b2f3e}
#qualicheck .lead{margin:0 0 14px;color:#506879;font-size:15.5px;line-height:1.6}
#qualicheck .card::after{content:"";display:block;height:3px;border-radius:2px;background:linear-gradient(90deg,#1f4361,#3f6f95 55%, #9cc4dc);margin-top:18px;opacity:.85}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&display=swap');

#intro-servitech.intro-hero {
  --h-brand: #4993bd;
  --h-ink: #0b2f3e;
  --h-ink-light: #3c5461;
  --h-glass: rgba(255, 255, 255, 0.90);
  --h-border: rgba(73, 147, 189, 0.22);
  --h-shadow: rgba(7, 35, 53, 0.12);

  padding: 40px 20px 50px;
  background: linear-gradient(135deg, #f9fcff 0%, #e8f4ff 100%);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  isolation: isolate;
  position: relative;
  overflow: hidden;
}

#intro-servitech::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 30px,
    rgba(73,147,189,0.03) 30px,
    rgba(73,147,189,0.03) 60px
  );
  opacity: 0.4;
  animation: drift 40s linear infinite;
  pointer-events: none;
}

@keyframes drift { 0% { transform: translateX(0); } 100% { transform: translateX(-60px); } }

/* WIDER + COMPACT CARD */
#intro-servitech .h-card {
  max-width: 1120px; /* ← WIDER */
  margin: 0 auto;
  background: var(--h-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 2px solid var(--h-border);
  border-radius: 0;
  padding: 28px 32px; /* ← 28px top/bottom, 32px left/right */
  text-align: center;
  position: relative;
  box-shadow:
    0 32px 64px var(--h-shadow),
    0 16px 32px rgba(0,0,0,0.06),
    inset 0 1px 0 rgba(255,255,255,0.8);
  transition: all .5s cubic-bezier(.2,.8,.2,1);
  z-index: 2;
}

#intro-servitech .h-card:hover {
  transform: translateY(-16px);
  box-shadow:
    0 48px 96px var(--h-shadow),
    0 24px 48px rgba(0,0,0,0.1),
    0 0 0 1px var(--h-brand),
    inset 0 1px 0 rgba(255,255,255,0.9);
}

/* Stripe – fits wider card */
#intro-servitech .h-stripe {
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 0;
  border-bottom: 100px solid var(--h-brand);
  border-left: 100px solid transparent;
  opacity: .7;
  transform: translate(34px,34px) scale(.7);
  transition: all .7s cubic-bezier(.2,.8,.2,1);
  pointer-events: none;
  z-index: 1;
}

#intro-servitech .h-card:hover .h-stripe {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

/* TEXT – NORMAL & BALANCED */
#intro-servitech .h-title {
  margin: 0 0 14px;
  font-weight: 800;
  font-size: clamp(20px, 4.5vw, 30px);
  color: var(--h-ink);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

#intro-servitech .h-lead {
  margin: 0 auto 14px;
  font-size: clamp(17px, 2.6vw, 19px);
  color: var(--h-ink-light);
  max-width: 900px;
  line-height: 1.65;
  font-weight: 500;
}

#intro-servitech .h-lead strong {
  color: var(--h-ink);
  font-weight: 700;
}

#intro-servitech .h-sub {
  margin: 0 auto 18px;
  font-size: clamp(15px, 2.2vw, 17px);
  color: var(--h-ink);
  line-height: 1.7;
  font-weight: 500;
  max-width: 800px;
}

#intro-servitech .h-sub strong {
  color: var(--h-brand);
  font-weight: 700;
}

/* CTA – Balanced */
#intro-servitech .h-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 22px;
  flex-wrap: wrap;
}

#intro-servitech .h-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all .3s ease;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.h-btn.primary {
  background: var(--h-brand);
  color: white;
  border: 2.2px solid var(--h-brand);
  box-shadow: 0 8px 20px rgba(73,147,189,.3);
}

.h-btn.primary:hover {
  background: #3a7ea3;
  border-color: #3a7ea3;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(73,147,189,.4);
}

.h-btn.ghost {
  background: transparent;
  color: var(--h-brand);
  border: 2.2px solid var(--h-brand);
}

.h-btn.ghost:hover {
  background: var(--h-brand);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(73,147,189,.25);
}

.h-btn svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform .3s ease;
}

.h-btn:hover svg { transform: translateX(4px); }

/* Mobile – Full-Width, Clean */
@media (max-width: 640px) {
  #intro-servitech { padding: 100px 16px 80px; }
  #intro-servitech .h-card {
    padding: 24px 20px;
    border-left:0; border-right:0; border-radius:0;
    max-width: 100%;
  }
  #intro-servitech .h-title { font-size: clamp(26px, 6vw, 34px); margin-bottom: 12px; }
  #intro-servitech .h-lead { margin-bottom: 12px; max-width: 100%; }
  #intro-servitech .h-sub { margin-bottom: 16px; max-width: 100%; }
  #intro-servitech .h-cta { flex-direction: column; align-items: center; gap: 12px; }
  #intro-servitech .h-btn { width: 100%; max-width: 300px; justify-content: center; padding: 11px 22px; font-size: 0.92rem; }
}

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500;600;700;800&display=swap');

/* ===== 2025 About – Sharp, Glass CTA, Mobile-First ===== */
#about-servitech {
  --a-brand: #4993bd;
  --a-ink: #0b2f3e;
  --a-ink-light: #3c5461;
  --a-glass: rgba(255, 255, 255, 0.90);
  --a-border: rgba(73, 147, 189, 0.18);
  --a-shadow: rgba(7, 35, 53, 0.10);

  padding: 100px 20px;
  background: linear-gradient(135deg, #f9fcff 0%, #f2f8ff 100%);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  isolation: isolate;
}

#about-servitech .a-wrap {
  max-width: 1150px;
  margin: 0 auto;
  display: grid;
  gap: 40px;
  align-items: center;
}

/* Mobile: 1 column */
@media (min-width: 960px) {
  #about-servitech .a-wrap {
    grid-template-columns: 1.1fr 1fr;
  }
}

/* Text */
#about-servitech .a-text h2 {
  margin: 0 0 18px;
  font-weight: 800;
  font-size: clamp(28px, 3.5vw, 38px);
  color: var(--a-ink);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

#about-servitech .a-text p {
  margin: 0 0 16px;
  font-size: clamp(16px, 2vw, 18px);
  color: var(--a-ink-light);
  line-height: 1.7;
  font-weight: 500;
}

#about-servitech .a-text p:last-of-type {
  margin-bottom: 0;
}

/* CTA – Glass Pill + Underline Animation */
#about-servitech .a-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  padding: 12px 24px;
  font-size: 0.98rem;
  font-weight: 600;
  color: var(--a-brand);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid var(--a-border);
  border-radius: 50px;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  z-index: 1;
}

#about-servitech .a-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--a-brand);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

#about-servitech .a-cta span,
#about-servitech .a-cta svg {
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

#about-servitech .a-cta:hover::before {
  opacity: 1;
}

#about-servitech .a-cta:hover span,
#about-servitech .a-cta:hover svg {
  color: white;
}

#about-servitech .a-cta svg {
  width: 17px;
  height: 17px;
  stroke: currentColor;
  stroke-width: 2;
  transition: transform 0.3s ease;
}

#about-servitech .a-cta:hover svg {
  transform: translateX(4px);
}

/* Underline on hover */
#about-servitech .a-cta::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: white;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

#about-servitech .a-cta:hover::after {
  width: 60%;
}

/* Image */
#about-servitech .a-image {
  border-radius: 0; /* ← SHARP */
  overflow: hidden;
  box-shadow:
    0 24px 48px var(--a-shadow),
    0 12px 24px rgba(0,0,0,0.06);
  transition: all 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}

#about-servitech .a-image img {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
}

#about-servitech .a-image:hover img {
  transform: scale(1.04);
}

/* Mobile Optimizations */
@media (max-width: 959px) {
  #about-servitech {
    padding: 80px 16px;
  }

  #about-servitech .a-wrap {
    gap: 32px;
  }

  #about-servitech .a-text h2 {
    font-size: clamp(26px, 5vw, 34px);
  }

  #about-servitech .a-cta {
    width: 100%;
    max-width: 300px;
    justify-content: center;
  }
}

.svt-blog-grid{display:grid;gap:14px;grid-template-columns:1fr}
@media(min-width:720px){.svt-blog-grid{grid-template-columns:1fr 1fr 1fr}}
.svt-card{border:1px solid #e5e7eb;background:#fff;border-radius:10px;overflow:hidden;box-shadow:0 8px 22px rgba(7,35,53,.08)}
.svt-thumb{height:150px;background:#e7eef3 center/cover no-repeat}
.svt-body{padding:12px}
.svt-meta{color:#64748b;font-size:.9rem;margin:2px 0 4px}
.svt-title{margin:0 0 6px;font-size:1.02rem;line-height:1.25}
.svt-title a{color:#0b2f3e;text-decoration:none}
.svt-excerpt{margin:0 0 8px;color:#3c5461;line-height:1.55}
.svt-more{font-weight:800;color:#4993bd;text-decoration:none}
.svt-skel{height:210px;border-radius:10px;background:linear-gradient(90deg,#eef3f7 25%,#f6fafc 37%,#eef3f7 63%);animation:sh 1.2s infinite; border:1px solid #e5e7eb}
@keyframes sh{0%{background-position:-200px 0}100%{background-position:calc(200px + 100%) 0}}
@media (prefers-color-scheme: dark){
  .svt-card{background:#0f1f2a;border-color:#1f3a4a;box-shadow:none}
  .svt-thumb{background-color:#162837}
  .svt-title a{color:#eaf5f8}
  .svt-excerpt{color:#cde6ee}
  .svt-meta{color:#9fb6c2}
  .svt-skel{background:linear-gradient(90deg,#142532 25%,#0f1f2a 37%,#142532 63%); border-color:#1f3a4a}
}

#vorteile-modern{padding:36px 20px;background:#f4fafc}
#vorteile-modern .container{max-width:1200px;margin:0 auto}
#vorteile-modern h2{margin:0 0 18px;color:#0b2f3e;letter-spacing:.2px}
#vorteile-modern{--brand:#4993bd; --ink:#0b2f3e; --ink-2:#3e5b69; --line:#e3eef4; --card:#ffffff; --shadow:0 6px 20px rgba(13,54,77,.06); --radius:10px; --icon-bg:#eef6fb}
#vorteile-modern .grid{display:grid;gap:16px;grid-template-columns:repeat(3,1fr)}
@media (max-width:1000px){#vorteile-modern .grid{grid-template-columns:repeat(2,1fr)}}
@media (max-width:640px){#vorteile-modern .grid{grid-template-columns:1fr}}
#vorteile-modern .card{display:grid;grid-template-columns:auto 1px 1fr;align-items:flex-start;gap:16px;padding:18px;background:var(--card);border:1px solid var(--line);border-radius:var(--radius);box-shadow:var(--shadow);transition:.18s ease}
#vorteile-modern .ico{width:54px;height:54px;border-radius:12px;background:var(--icon-bg);border:1px solid var(--line);display:grid;place-items:center;color:var(--brand)}
#vorteile-modern .sep{width:1px;height:100%;background:var(--line)}
#vorteile-modern .title{margin:0 0 6px;color:var(--ink);font-weight:800;letter-spacing:.2px}
#vorteile-modern .text{margin:0;color:var(--ink-2);line-height:1.45}
#vorteile-modern .card:hover{box-shadow:0 10px 26px rgba(13,54,77,.11);transform:translateY(-1px)}
#vorteile-modern svg{width:24px;height:24px}
