/* ---------------------------------------------------
   FONTS
--------------------------------------------------- */


    /* source-serif-4-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/source-serif-4-v14-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* source-serif-4-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Source Serif 4';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/source-serif-4-v14-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}

/* ibm-plex-sans-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ibm-plex-sans-v23-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ibm-plex-sans-500 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/ibm-plex-sans-v23-latin-500.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
/* ibm-plex-sans-600 - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 600;
  src: url('../fonts/ibm-plex-sans-v23-latin-600.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}


/* ---------------------------------------------------
   ROOT
--------------------------------------------------- */

    :root{
      --primary:#1f4b7a;
      --text:#666666;
      --dark:#0b1f36;
      --brand-soft: rgba(31,75,122,.07);

      --surface:#ffffff;
      --surface-2:#f6f7f9;
      --ink:#142033;
      --line: rgba(10,20,30,.10);
    }
    
   html{ scroll-behavior:smooth; }

    body{
      font-family:"IBM Plex Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
      color: var(--text);
    }

    /* ==========================
       TYPO: Serif-Akzent (Headlines)
       ========================== */
    .hero h1,
    .hiring-title,
    .service-title,
    .info-teaser-title,
    .footer-title{
      font-family: "Source Serif 4", ui-serif, Georgia, serif;
      font-weight: 600;
    }

    /* Buttons */
    .btn-primary{
      --bs-btn-bg: var(--primary);
      --bs-btn-border-color: var(--primary);
      --bs-btn-hover-bg: #1a416a;
      --bs-btn-hover-border-color: #1a416a;
    }
    .btn-outline-primary{
      --bs-btn-color: var(--primary);
      --bs-btn-border-color: var(--primary);
      --bs-btn-hover-bg: var(--primary);
      --bs-btn-hover-border-color: var(--primary);
    }
    
    
    .logo-link {
  display: block;
  overflow: hidden;
  text-align: center;
}

.site-logo {
  display: block;
  width: 100%;
  height: auto;
}

/* Mobile / Burger-Ansicht */
@media (max-width: 991.98px) {
  .logo-link {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .site-logo {
    width: auto;
    height: 60px;
    max-width: none;
    flex-shrink: 0;
  }
}

    /* ===== HEADER ===== */
    .site-header{ background:#fff; }

    /* Brand bar */
    .brand-bar{
     /* background: linear-gradient(90deg, #163557 0%, var(--primary) 55%, #163557 100%); 
      padding: 18px 0 14px; */
    }
    .brand-bar .brand-placeholder{
      color:#fff;
      text-align:center;
      font-family: "Source Serif 4", ui-serif, Georgia, serif;
      font-weight:600;
      letter-spacing:.12em;
      text-transform:uppercase;
      font-size:1.15rem;
      line-height:1.1;
    }
    .brand-bar .brand-sub{
      color:rgba(255,255,255,.88);
      text-align:center;
      font-family: "IBM Plex Sans", system-ui, sans-serif;
      font-weight:500;
      letter-spacing:.18em;
      text-transform:uppercase;
      font-size:.85rem;
      margin-top:.25rem;
    }

    /* ===== NAV (modern, edel): Uppercase, weniger fett, nur Underline ===== */
    .nav-shell{
      background: rgba(255,255,255,.92);
      backdrop-filter: blur(10px);
      -webkit-backdrop-filter: blur(10px);
      box-shadow: 0 14px 28px rgba(0,0,0,.06);
      border-top: 1px solid rgba(255,255,255,.35);
    }
    .navbar{
      padding-top: .25rem;
      padding-bottom: .25rem;
    }
    .navbar .nav-link{
      color: rgba(20,32,51,.78);
      font-family: "IBM Plex Sans", system-ui, sans-serif;
      font-weight: 500;
      font-size: 1.15rem;

      text-transform: uppercase;
      letter-spacing: .03em;

      padding: 1.05rem .95rem;
      margin: 0 .35rem;

      background: transparent !important;
      border-radius: .65rem;

      position: relative;
      transition: color .28s ease;
    }
    .navbar .nav-link:hover{
      color: var(--primary);
      background: transparent !important;
    }
    .navbar .nav-link.active{
      color: var(--primary);
      background: transparent !important;
    }

    @media (min-width: 992px){
      .navbar .nav-link::after{
        content:"";
        position:absolute;
        left: .95rem;
        right: .95rem;
        bottom: .6rem;
        height: 2px;
        border-radius: 999px;
        background: var(--primary);

        transform: scaleX(0);
        transform-origin: left;
        transition: transform .3s cubic-bezier(.4,0,.2,1);
      }

      .navbar .nav-link:hover::after,
      .navbar .nav-link.active::after{
        transform: scaleX(1);
      }
    }

    @media (min-width: 1200px){
      .navbar .navbar-nav{ gap: .25rem; }
    }

    /* Dropdown Styles (bleiben drin, falls später wieder genutzt) */
    .dropdown-menu{
      border: 1px solid rgba(0,0,0,.08);
      border-radius: 1rem;
      padding: .55rem;
      box-shadow: 0 18px 48px rgba(0,0,0,.12);
    }
    .dropdown-item{
      border-radius: .75rem;
      padding: .65rem .85rem;
      font-weight: 700;
      color: #2b2b2b;
    }
    .dropdown-item:hover{
      background: rgba(31,75,122,.06);
      color: var(--primary);
    }
    @media (min-width: 992px){
      .navbar .dropdown:hover > .dropdown-menu{ display:block; }
      .navbar .dropdown-menu{ margin-top: 0; }
    }

/* ===== HERO ===== */
.hero {
  --heroParallax: 0px;

  position: relative;
  z-index: 1;

  min-height: clamp(360px, 46vw, 520px);
  display: flex;
  align-items: center;

  color: #fff;
  overflow: hidden;

  background: none;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;

  background-image: url("/media/banner_start.jpg");
  background-size: cover;
  background-position: center calc(50% + var(--heroParallax));
  background-repeat: no-repeat;

  transform: scaleX(-1);

  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(0, 45, 85, .58) 0%,
    rgba(0, 45, 85, .42) 38%,
    rgba(0, 45, 85, .20) 68%,
    rgba(0, 45, 85, .08) 100%
  );

  pointer-events: none;
  z-index: 1;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .kicker {
  display: inline-block;
  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-weight: 600;
  letter-spacing: .02em;
  text-transform: uppercase;
  font-size: .85rem;
  color: rgba(255, 255, 255, .92);
}

.hero h1 {
  letter-spacing: -0.03em;
  text-shadow: 0 12px 36px rgba(0, 0, 0, .28);
}

.hero .lead {
  font-weight: 400;
  color: rgba(255, 255, 255, .92);
  max-width: 58ch;
}

/* Tablet */
@media (max-width: 991.98px) {
  .hero {
    min-height: 430px;
    background-position: center center;
  }

  .hero h1 {
    font-size: clamp(2rem, 6vw, 3rem);
  }
}

/* Smartphone */
@media (max-width: 575.98px) {
  .hero {
    min-height: 380px;
    align-items: flex-end;
    padding-bottom: 2rem;

    background-position: center center;
  }

  .hero::before {
    background: linear-gradient(
      180deg,
      rgba(0, 45, 85, .10) 0%,
      rgba(0, 45, 85, .38) 42%,
      rgba(0, 45, 85, .72) 100%
    );
  }

  .hero::after {
    display: none;
  }

  .hero .lead {
    font-size: 1rem;
  }

  .hero .btn {
    width: 100%;
  }
}

    /* ===== INFO / WIR SUCHEN ===== */
    .hiring{
      padding: 22px 0 64px;
      background: linear-gradient(180deg, var(--brand-soft) 0%, #fff 55%);
      position: relative;
      z-index: 5;
    }

    .hiring-card{
      position: relative;
      border-radius: 1.5rem;
      background: #fff;

      border: 1px solid rgba(10, 20, 30, .07);
      box-shadow:
        0 12px 34px rgba(10, 20, 30, .08),
        0 1px 0 rgba(255,255,255,.65) inset;

      padding: 26px;
      margin-top: -44px;
    }
    .hiring-card::before{
      content:"";
      position:absolute;
      left: 18px;
      right: 18px;
      top: 0;
      height: 1px;
      background: linear-gradient(90deg,
        rgba(31,75,122,0) 0%,
        rgba(31,75,122,.18) 25%,
        rgba(31,75,122,.10) 75%,
        rgba(31,75,122,0) 100%
      );
      border-radius: 999px;
      pointer-events:none;
      opacity:.9;
    }

    /* ===== SERVICES ===== */
    .section{ padding: 90px 0; }

    .service-block{
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, var(--surface-2) 0%, #ffffff 100%);
    }
    .service-block:nth-of-type(even){
      background: linear-gradient(180deg, #ffffff 0%, var(--surface-2) 100%);
    }
    .service-block + .service-block{
      border-top: 1px solid rgba(10,20,30,.06);
      box-shadow: none;
    }

    .service-title{
      letter-spacing: -0.01em;
      margin-bottom: .6rem;

      position: relative;
      display: inline-block;
      padding-bottom: .55rem;

      color: var(--primary);
    }
    .service-title::after{
      content:"";
      position:absolute;
      left:0;
      bottom:0;
      width: 56px;
      height: 2px;
      background: rgba(31,75,122,.55);
      border-radius: 999px;
      opacity: .95;
    }
    .service-desc{
      color: rgba(20,32,51,.78);
      font-weight: 400;
      line-height: 1.6;
      max-width: 56ch;
      margin-bottom:0;
    }

    .service-wrap{
      border-radius: 1.6rem;
      padding: 32px;
      position: relative;
      overflow: hidden;
      cursor: pointer;

      background:
        radial-gradient(900px 420px at 18% 12%, rgba(31,75,122,.06), transparent 55%),
        linear-gradient(180deg, #ffffff 0%, #fbfbfc 100%);

      border: 1px solid rgba(10,20,30,.10);
      box-shadow: 0 12px 30px rgba(10,20,30,.08);

      transition: box-shadow .18s ease, border-color .18s ease;
    }
    .service-wrap::before{
      content:"";
      position:absolute;
      inset:-60px;
      background: radial-gradient(600px 260px at 70% 35%, rgba(31,75,122,.07), transparent 60%);
      pointer-events:none;
      opacity:1;
    }
    .service-wrap > *{ position: relative; z-index: 3; }

    /* Hover: kein Movement */
    .service-wrap:hover{
      transform: none;
      border-color: rgba(10,20,30,.10);
      box-shadow: 0 16px 38px rgba(10,20,30,.10);
    }

    .service-link{
      position:absolute;
      inset:0;
      z-index:5;
      border-radius:1.6rem;
      display: block;
      text-decoration: none;
    }

    .icon-list{
      list-style:none;
      padding-left:0;
      margin:0;
    }
    .icon-list li{
      display:flex;
      gap:.65rem;
      align-items:flex-start;
      margin-bottom:.6rem;
      color: rgba(20,32,51,.80);
      font-weight:400;
    }
    .icon-list li:last-child{ margin-bottom:0; }
    .icon-list i{
      margin-top:.2rem;
      color: var(--primary);
    }

    .service-cta{
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      font-weight:600;
      color: var(--primary);
      text-decoration:none;
      position:relative;
      z-index:3;
      font-family: "IBM Plex Sans", system-ui, sans-serif;
    }
    .service-wrap:hover .service-cta{
      text-decoration:underline;
    }









    /* ===== Info-Teaser ===== */
    .info-teaser{
      background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
      border-top: 1px solid rgba(0,0,0,.06);
      border-bottom: 1px solid rgba(0,0,0,.06);
      padding: 70px 0;
    }
    .info-teaser-card{
      position: relative;
      border-radius: 1.75rem;
      background: #ffffff;
      border: 1px solid rgba(0,0,0,.06);
      box-shadow: 0 22px 55px rgba(0,0,0,.06);
      overflow: hidden;
      transition: transform .2s ease, box-shadow .2s ease;
    }
    .info-teaser-card:hover{
      transform: translateY(-4px);
      box-shadow: 0 30px 70px rgba(0,0,0,.10);
    }
    .info-teaser-card::after{
      content:"";
      position:absolute;
      top:0;
      right:0;
      width:40%;
      height:100%;
      background: linear-gradient(135deg, rgba(31,75,122,.08), rgba(31,75,122,.03));
      pointer-events:none;
    }
    .info-teaser-content{
      padding: 40px;
      position: relative;
      z-index: 2;
    }
    .info-teaser-text{
      font-weight: 400;
      color: var(--text);
      margin-bottom: 1.25rem;
      max-width: 52ch;
    }
    .info-teaser-cta{
      font-weight: 600;
      color: var(--primary);
      text-decoration:none;
      display:inline-flex;
      align-items:center;
      gap:.5rem;
      font-family: "IBM Plex Sans", system-ui, sans-serif;
    }
    .info-teaser-card:hover .info-teaser-cta{ text-decoration: underline; }
    .info-teaser-image{
      height: 100%;
      min-height: 260px;
      background-size: cover;
      background-position: center;
      position: relative;
      z-index: 2;
    }
    .info-teaser-link{
      position:absolute;
      inset:0;
      z-index:3;
      border-radius: 1.75rem;
    }

    /* ===== Reveal ===== */
    .reveal{
      opacity:0;
      transform: translateY(20px);
      transition: opacity 1.2s ease, transform 1.2s ease;
    }
    .reveal.is-visible{
      opacity:1;
      transform: translateY(0);
    }
    @media (prefers-reduced-motion: reduce){
      html{ scroll-behavior:auto; }
      .reveal{ opacity:1; transform:none; transition:none; }
      .service-wrap, .info-teaser-card{ transition:none; }
    }

    /* Footer */
    footer{
      background: var(--primary);
      color: rgba(255,255,255,.92);
    }
    footer a{ color: rgba(255,255,255,.95); text-decoration:none; }
    footer a:hover{ color:#fff; text-decoration:underline; }
    .footer-title{ color:#fff; letter-spacing:-0.01em; }
footer hr{
  border-color: rgba(255,255,255,.25);
}
    /* ===== Floating tools ===== */
    .quick-actions{
      position: fixed;
      right: 18px;
      top: 50%;
      transform: translateY(-50%);
      display: grid;
      gap: 10px;
      z-index: 1050;
    }
    .quick-actions a{
      width: 46px;
      height: 46px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      text-decoration: none;
      background: rgba(255,255,255,.92);
      border: 1px solid rgba(0,0,0,.10);
      box-shadow: 0 14px 28px rgba(0,0,0,.12);
      color: var(--primary);
      transition: transform .15s ease, box-shadow .15s ease;
    }
    .quick-actions a:hover{
      transform: translateY(-2px);
      box-shadow: 0 18px 40px rgba(0,0,0,.16);
    }

    .back-to-top{
      position: fixed;
      right: 18px;
      bottom: 18px;
      width: 48px;
      height: 48px;
      border-radius: 999px;
      display: grid;
      place-items: center;
      background: var(--primary);
      color:#fff;
      border:0;
      box-shadow: 0 18px 40px rgba(0,0,0,.18);
      opacity:0;
      pointer-events:none;
      transform: translateY(8px);
      transition: opacity .2s ease, transform .2s ease;
      z-index:1050;
    }
    .back-to-top.show{
      opacity:1;
      pointer-events:auto;
      transform: translateY(0);
    }

    @media (max-width: 420px){
      .quick-actions{ right:12px; }
      .back-to-top{ right:12px; bottom:12px; }
    }


/* ===== SERVICES INTRO ===== */
.services-intro {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: #fff;
}

.section-kicker {
  display: inline-block;
  margin-bottom: .6rem;

  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #3aa6b9;
}

.services-intro-title {
  margin: 0 0 .9rem;

  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;

  color: #002d55;
}

.services-intro-text {
  max-width: 760px;
  margin: 0 auto;

  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;

  color: rgba(0, 45, 85, .78);
}

.services-jumpnav {
  margin-top: 1.75rem;
}

/* Mobile */
@media (max-width: 575.98px) {
  .services-intro {
    padding-top: 2.75rem;
  }

  .services-intro-title {
    font-size: 2rem;
  }

  .services-jumpnav {
    justify-content: stretch !important;
  }

  .services-jumpnav .btn {
    width: 100%;
    justify-content: center;
  }
}





/* ===== SERVICE DETAIL SECTIONS ===== */
.service-detail-section {
  scroll-margin-top: 140px;
  padding: 1.25rem 0;
  background: #fff;
}

.service-detail-section + .service-detail-section {
  padding-top: 1.5rem;
}

.service-detail-card {
  position: relative;
  overflow: hidden;

  padding: clamp(1.5rem, 3vw, 2.5rem);

  border: 1px solid rgba(0, 45, 85, .10);
  border-radius: 1.5rem;

  background:
    linear-gradient(135deg, rgba(58, 166, 185, .08) 0%, rgba(255, 255, 255, 0) 45%),
    #fff;

  box-shadow: 0 18px 50px rgba(0, 45, 85, .08);
}

.service-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;

  width: 5px;

  background: linear-gradient(
    180deg,
    #3aa6b9 0%,
    #002d55 100%
  );
}

.service-detail-kicker {
  display: inline-block;
  margin-bottom: .6rem;

  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #3aa6b9;
}

.service-detail-title {
  margin: 0 0 .9rem;

  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.035em;

  color: #002d55;
}

.service-detail-text {
  max-width: 720px;
  margin-bottom: 1.35rem;

  font-size: 1.05rem;
  line-height: 1.7;

  color: rgba(0, 45, 85, .78);
}
.service-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .9rem 1rem;

  margin: 0;
  padding: 0;

  list-style: none;
}

.service-detail-list > li {
  padding: .85rem .95rem;

  border-radius: .9rem;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(0, 45, 85, .08);

  color: rgba(0, 45, 85, .86);
  font-weight: 500;
  line-height: 1.45;
}

.service-detail-list-main {
  display: flex;
  align-items: flex-start;
  gap: .6rem;
}

.service-detail-list-main i {
  flex: 0 0 auto;
  margin-top: .1rem;

  color: #3aa6b9;
  font-size: 1.05rem;
}

.service-detail-sublist {
  margin: .65rem 0 0 1.65rem;
  padding: 0;

  list-style: none;
}

.service-detail-sublist li {
  display: flex;
  align-items: flex-start;
  gap: .35rem;

  margin-top: .35rem;

  font-size: .95rem;
  font-weight: 400;
  line-height: 1.45;

  color: rgba(0, 45, 85, .72);
}

.service-detail-sublist i {
  flex: 0 0 auto;
  margin-top: .05rem;

  color: #3aa6b9;
  font-size: 1rem;
}

@media (max-width: 991.98px) {
  .service-detail-list {
    grid-template-columns: 1fr;
  }
}

.service-detail-image-wrap {
  position: relative;
  overflow: hidden;

  height: 300px;
  max-height: 300px;

  border-radius: 1.25rem;
  background: rgba(0, 45, 85, .06);
}

.service-detail-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(0, 45, 85, .08) 0%,
    rgba(58, 166, 185, .10) 100%
  );

  pointer-events: none;
}

.service-detail-image {
  width: 100%;
  height: 100%;
  min-height: 300px;
filter:
    grayscale(10%)
    saturate(80%)
    contrast(90%)
    brightness(104%);
  object-fit: cover;
  object-position: center center;

  display: block;
}

/* Tablet */
@media (max-width: 991.98px) {
  .service-detail-section {
    scroll-margin-top: 110px;
  }

  .service-detail-image-wrap,
  .service-detail-image {
    height: 260px;
    max-height: 260px;
  }

  .service-detail-list {
    grid-template-columns: 1fr;
  }
}

/* Smartphone */
@media (max-width: 575.98px) {
  .service-detail-section {
    padding: .9rem 0;
    scroll-margin-top: 95px;
  }

  .service-detail-card {
    padding: 1.25rem;
    border-radius: 1.1rem;
  }

  .service-detail-card::before {
    width: 4px;
  }

  .service-detail-title {
    font-size: 1.75rem;
  }

  .service-detail-text {
    font-size: 1rem;
  }
.service-detail-text p {
  margin: 0 0 .85rem;
}

.service-detail-text p:last-child {
  margin-bottom: 0;
}
  .service-detail-image-wrap,
  .service-detail-image {
    min-height: 220px;
  }
}

@media (max-width: 575.98px) {
  .service-detail-image-wrap {
    height: 220px;
    max-height: 220px;
  }

  .service-detail-image {
    max-height: 220px;
  }
  }



/* ===== SERVICE AREA INTRO ===== */
.service-area-intro {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: #fff;
}

.section-kicker {
  display: inline-block;
  margin-bottom: .6rem;

  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #3aa6b9;
}

.service-area-intro-title {
  margin: 0 0 .9rem;

  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;

  color: #002d55;
}

.service-area-intro-text {
  max-width: 760px;
  margin: 0 auto;

  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;

  color: rgba(0, 45, 85, .78);
}

@media (max-width: 575.98px) {
  .service-area-intro {
    padding-top: 2.75rem;
  }

  .service-area-intro-title {
    font-size: 2rem;
  }
}


.service-area-jumpnav {
  margin-top: 1.75rem;
}

@media (max-width: 575.98px) {
  .service-area-jumpnav {
    justify-content: stretch !important;
  }

  .service-area-jumpnav .btn {
    width: 100%;
    justify-content: center;
  }
}





/* ===== CLIENT LETTER / MANDANTENBRIEF ===== */
.client-letter-section {
  padding: 1.25rem 0;
  background: #fff;
}

.client-letter-card {
  position: relative;
  overflow: hidden;

  padding: clamp(1.5rem, 3vw, 2.5rem);

  border: 1px solid rgba(0, 45, 85, .10);
  border-radius: 1.5rem;

  background:
    linear-gradient(135deg, rgba(58, 166, 185, .08) 0%, rgba(255, 255, 255, 0) 45%),
    #fff;

  box-shadow: 0 18px 50px rgba(0, 45, 85, .08);
}

.client-letter-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;

  width: 5px;

  background: linear-gradient(
    180deg,
    #3aa6b9 0%,
    #002d55 100%
  );
}

.client-letter-kicker {
  display: inline-block;
  margin-bottom: .6rem;

  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #3aa6b9;
}

.client-letter-title {
  margin: 0 0 .9rem;

  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.035em;

  color: #002d55;
}

.client-letter-text {
  max-width: 760px;

  font-size: 1.05rem;
  line-height: 1.7;

  color: rgba(0, 45, 85, .78);
}

.client-letter-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.client-letter-download {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  min-height: 100%;
  padding: 1rem;

  border: 1px solid rgba(0, 45, 85, .08);
  border-radius: 1.1rem;

  background: rgba(255, 255, 255, .82);

  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.client-letter-download:hover {
  border-color: rgba(58, 166, 185, .28);
  background: rgba(255, 255, 255, .95);
  box-shadow: 0 8px 22px rgba(0, 45, 85, .06);
}

/* PDF Thumbnail */
.client-letter-preview {
  position: relative;
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: center;

  aspect-ratio: 4 / 5;
  border: 1px solid rgba(0, 45, 85, .08);
  border-radius: .9rem;

  background: #fff;

  text-decoration: none;
}

.client-letter-preview img {
  display: block;

  width: auto;
  height: auto;
  max-width: 76%;
  max-height: 76%;

  object-fit: contain;
  object-position: center center;

  background: #fff;
  box-shadow: 0 6px 14px rgba(0, 45, 85, .07);
}

.client-letter-preview-badge {
  position: absolute;
  left: .75rem;
  bottom: .75rem;

  display: inline-flex;
  align-items: center;
  gap: .35rem;

  padding: .35rem .55rem;

  border-radius: 999px;

  background: rgba(255, 255, 255, .94);
  color: #002d55;

  font-size: .78rem;
  font-weight: 700;
  line-height: 1;

  box-shadow: 0 8px 22px rgba(0, 45, 85, .12);
}

.client-letter-preview-badge i {
  color: #3aa6b9;
}

/* Fallback / altes Icon, falls noch irgendwo verwendet */
.client-letter-download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 46px;
  height: 46px;

  border-radius: 999px;

  background: rgba(58, 166, 185, .12);
  color: #3aa6b9;

  font-size: 1.45rem;
}

.client-letter-download-body {
  flex: 1 1 auto;
}

.client-letter-download h3 {
  margin: 0 0 .45rem;

  font-size: 1.08rem;
  line-height: 1.3;
  font-weight: 700;

  color: #002d55;
}

.client-letter-download-meta {
  font-size: .92rem;
  line-height: 1.45;

  color: rgba(0, 45, 85, .62);
}

.client-letter-download .btn {
  align-self: flex-start;
}

/* Tablet */
@media (max-width: 991.98px) {
  .client-letter-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Smartphone */
@media (max-width: 575.98px) {
  .client-letter-section {
    padding: .9rem 0;
  }

  .client-letter-card {
    padding: 1.25rem;
    border-radius: 1.1rem;
  }

  .client-letter-card::before {
    width: 4px;
  }

  .client-letter-title {
    font-size: 1.75rem;
  }

  .client-letter-text {
    font-size: 1rem;
  }

  .client-letter-grid {
    grid-template-columns: 1fr;
  }

  .client-letter-download {
    min-height: auto;
  }

  .client-letter-preview {
    aspect-ratio: 16 / 10;
  }

  .client-letter-preview img {
    max-width: 68%;
    max-height: 68%;
  }

  .client-letter-download .btn {
    width: 100%;
    justify-content: center;
  }
}





/* ===== SERVICE LINKBOX ===== */
.service-link-section {
  padding: 1.25rem 0;
  background: #fff;
}

.service-link-card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;

  padding: clamp(1.5rem, 3vw, 2.5rem);

  border: 1px solid rgba(0, 45, 85, .10);
  border-radius: 1.5rem;

  background: #fff;
  box-shadow: 0 18px 50px rgba(0, 45, 85, .08);
}

.service-link-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;

  width: 5px;

  background: linear-gradient(
    180deg,
    #3aa6b9 0%,
    #002d55 100%
  );
}

.service-link-card-highlight {
  background:
    linear-gradient(135deg, rgba(58, 166, 185, .12) 0%, rgba(255, 255, 255, 0) 48%),
    #fff;
}

.service-link-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 64px;
  height: 64px;

  border-radius: 999px;

  background: rgba(58, 166, 185, .12);
  color: #3aa6b9;

  font-size: 1.9rem;
}

.service-link-kicker {
  display: inline-block;
  margin-bottom: .45rem;

  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #3aa6b9;
}

.service-link-title {
  margin: 0 0 .55rem;

  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;

  color: #002d55;
}

.service-link-text {
  max-width: 720px;

  font-size: 1.05rem;
  line-height: 1.7;

  color: rgba(0, 45, 85, .78);
}

.service-link-action {
  justify-self: end;
}

/* Tablet */
@media (max-width: 991.98px) {
  .service-link-card {
    grid-template-columns: auto 1fr;
  }

  .service-link-action {
    grid-column: 2;
    justify-self: start;
  }
}

/* Smartphone */
@media (max-width: 575.98px) {
  .service-link-section {
    padding: .9rem 0;
  }

  .service-link-card {
    grid-template-columns: 1fr;
    gap: 1rem;

    padding: 1.25rem;
    border-radius: 1.1rem;
  }

  .service-link-card::before {
    width: 4px;
  }

  .service-link-icon {
    width: 54px;
    height: 54px;
    font-size: 1.55rem;
  }

  .service-link-title {
    font-size: 1.6rem;
  }

  .service-link-text {
    font-size: 1rem;
  }

  .service-link-action {
    grid-column: auto;
    width: 100%;
  }

  .service-link-action .btn {
    width: 100%;
    justify-content: center;
  }
}




/* ===== PRIVACY DOWNLOAD / DATENSCHUTZERKLÄRUNG ===== */
.privacy-download-section {
  padding: 1.25rem 0 clamp(3rem, 5vw, 5rem);
  background: #fff;
}

.privacy-download-card {
  position: relative;
  overflow: hidden;

  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.25rem;

  padding: clamp(1.5rem, 3vw, 2.5rem);

  border: 1px solid rgba(0, 45, 85, .10);
  border-radius: 1.5rem;

  background:
    linear-gradient(135deg, rgba(58, 166, 185, .08) 0%, rgba(255, 255, 255, 0) 48%),
    #fff;

  box-shadow: 0 18px 50px rgba(0, 45, 85, .08);
}

.privacy-download-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;

  width: 5px;

  background: linear-gradient(
    180deg,
    #3aa6b9 0%,
    #002d55 100%
  );
}

.privacy-download-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 64px;
  height: 64px;

  border-radius: 999px;

  background: rgba(58, 166, 185, .12);
  color: #3aa6b9;

  font-size: 1.9rem;
}

.privacy-download-kicker {
  display: inline-block;
  margin-bottom: .45rem;

  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #3aa6b9;
}

.privacy-download-title {
  margin: 0 0 .55rem;

  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;

  color: #002d55;
}

.privacy-download-text {
  max-width: 720px;

  font-size: 1.05rem;
  line-height: 1.7;

  color: rgba(0, 45, 85, .78);
}

.privacy-download-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem .75rem;

  margin-top: .8rem;

  font-size: .92rem;
  color: rgba(0, 45, 85, .62);
}

.privacy-download-meta span + span::before {
  content: "·";
  margin-right: .75rem;
}

.privacy-download-action {
  justify-self: end;
}

/* Tablet */
@media (max-width: 991.98px) {
  .privacy-download-card {
    grid-template-columns: auto 1fr;
  }

  .privacy-download-action {
    grid-column: 2;
    justify-self: start;
  }
}

/* Smartphone */
@media (max-width: 575.98px) {
  .privacy-download-section {
    padding: .9rem 0 3rem;
  }

  .privacy-download-card {
    grid-template-columns: 1fr;
    gap: 1rem;

    padding: 1.25rem;
    border-radius: 1.1rem;
  }

  .privacy-download-card::before {
    width: 4px;
  }

  .privacy-download-icon {
    width: 54px;
    height: 54px;
    font-size: 1.55rem;
  }

  .privacy-download-title {
    font-size: 1.6rem;
  }

  .privacy-download-text {
    font-size: 1rem;
  }

  .privacy-download-action {
    grid-column: auto;
    width: 100%;
  }

  .privacy-download-action .btn {
    width: 100%;
    justify-content: center;
  }
}


/* GLOBAL */

.client-letter-section,
.service-link-section,
.privacy-download-section {
  scroll-margin-top: 140px;
}






/* ===== CONTACT INTRO ===== */
.contact-intro {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(1.75rem, 4vw, 3rem);
  background: #fff;
}

.contact-intro-title {
  margin: 0 0 .9rem;

  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;

  color: #002d55;
}

.contact-intro-text {
  max-width: 760px;
  margin: 0 auto;

  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;

  color: rgba(0, 45, 85, .78);
}

.contact-compass-wrap {
  margin-top: clamp(1.75rem, 4vw, 2.75rem);

  overflow: hidden;
  border: 1px solid rgba(0, 45, 85, .10);
  border-radius: 1.1rem;

  background: #fff;
  box-shadow: 0 14px 40px rgba(0, 45, 85, .07);
}

.contact-compass-img {
  display: block;

  width: 100%;
  height: clamp(70px, 10vw, 110px);

  object-fit: cover;
  object-position: center center;
}

@media (max-width: 575.98px) {
  .contact-intro {
    padding-top: 2.75rem;
  }

  .contact-intro-title {
    font-size: 2rem;
  }

  .contact-compass-wrap {
    border-radius: .9rem;
  }

  .contact-compass-img {
    height: 72px;
  }
}





/* ===== CONTACT DETAILS ===== */
.contact-details-section {
  padding: 1.25rem 0 clamp(3rem, 5vw, 5rem);
  background: #fff;
}

.contact-info-card,
.contact-map-card,
.contact-hours-card {
  position: relative;
  overflow: hidden;

  height: 100%;

  border: 1px solid rgba(0, 45, 85, .10);
  border-radius: 1.5rem;

  background:
    linear-gradient(135deg, rgba(58, 166, 185, .08) 0%, rgba(255, 255, 255, 0) 45%),
    #fff;

  box-shadow: 0 18px 50px rgba(0, 45, 85, .08);
}

.contact-info-card,
.contact-hours-card {
  padding: clamp(1.5rem, 3vw, 2.5rem);
}

.contact-info-card::before,
.contact-map-card::before,
.contact-hours-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;

  width: 5px;

  background: linear-gradient(
    180deg,
    #3aa6b9 0%,
    #002d55 100%
  );
}

.contact-info-card {
  display: flex;
  gap: 1.25rem;
}

.contact-card-icon,
.contact-hours-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  flex: 0 0 auto;

  width: 58px;
  height: 58px;

  border-radius: 999px;

  background: rgba(58, 166, 185, .12);
  color: #3aa6b9;

  font-size: 1.65rem;
}

.contact-card-kicker {
  display: inline-block;
  margin-bottom: .45rem;

  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #3aa6b9;
}

.contact-card-title {
  margin: 0 0 .8rem;

  font-size: clamp(1.45rem, 2.5vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.03em;

  color: #002d55;
}

.contact-address {
  margin: 0 0 1.2rem;

  font-style: normal;
  line-height: 1.6;

  color: rgba(0, 45, 85, .78);
}

.contact-data-list {
  display: grid;
  gap: .65rem;
}

.contact-data-list a,
.contact-data-list div {
  display: inline-flex;
  align-items: center;
  gap: .55rem;

  color: rgba(0, 45, 85, .82);
  text-decoration: none;
  line-height: 1.45;
}

.contact-data-list i {
  color: #3aa6b9;
}

.contact-data-list a:hover {
  color: #002d55;
}

.contact-map-card {
  display: grid;
  grid-template-rows: auto 300px auto;
}

.contact-map-content {
  padding: 1.5rem;
}

.contact-map-content p {
  margin: 0;

  font-size: 1.05rem;
  line-height: 1.7;

  color: rgba(0, 45, 85, .78);
}

.contact-map-placeholder {
  min-height: 300px;
padding: 0 1.5rem 1.5rem 1.5rem;
}

.contact-map-placeholder .mymapclass,
.contact-map-placeholder .leaflet-container {
  width: 100%;
  height: 300px;
  min-height: 300px;
}

.contact-map-compass {
  overflow: hidden;
  margin-top: 12px;
  border-top: 1px solid rgba(0, 45, 85, .10);
  background: #fff;
}

.contact-map-compass img {
  display: block;

  width: 100%;
  height: clamp(64px, 9vw, 96px);

  object-fit: cover;
  object-position: center center;
}

.contact-hours-card {
  display: flex;
  gap: 1.1rem;
}

.contact-hours-card h3 {
  margin: 0 0 .75rem;

  font-size: 1.35rem;
  color: #002d55;
}

.contact-hours-card ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.contact-hours-card li {
  position: relative;

  padding-left: 1.25rem;
  margin-bottom: .35rem;

  line-height: 1.55;
  color: rgba(0, 45, 85, .78);
}

.contact-hours-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .65em;

  width: .45rem;
  height: .45rem;

  border-radius: 999px;
  background: #3aa6b9;
}

/* Mobile */


@media (max-width: 575.98px) {
  .contact-map-compass img {
    height: 68px;
  }
}

@media (max-width: 575.98px) {
  .contact-details-section {
    padding: .9rem 0 3rem;
  }

  .contact-info-card,
  .contact-map-card,
  .contact-hours-card {
    border-radius: 1.1rem;
  }

  .contact-info-card,
  .contact-hours-card {
    padding: 1.25rem;
  }

  .contact-info-card,
  .contact-hours-card {
    flex-direction: column;
  }

  .contact-info-card::before,
  .contact-map-card::before,
  .contact-hours-card::before {
    width: 4px;
  }

  .contact-card-icon,
  .contact-hours-icon {
    width: 54px;
    height: 54px;
    font-size: 1.55rem;
  }

  .contact-card-title {
    font-size: 1.6rem;
  }

  .contact-map-placeholder,
  .contact-map-placeholder-inner {
    min-height: 220px;
  }

  .contact-info-card .btn {
    width: 100%;
    justify-content: center;
  }
}





/* ===== DATENSCHUTZ DOWNLOAD LINKS ===== */
.ds-box {
  position: relative;
  overflow: hidden;

  display: grid;
  gap: .85rem;

  margin: 2rem 0;
  padding: clamp(1.25rem, 3vw, 2rem);

  border: 1px solid rgba(0, 45, 85, .10);
  border-radius: 1.25rem;

  background:
    linear-gradient(135deg, rgba(58, 166, 185, .08) 0%, rgba(255, 255, 255, 0) 45%),
    #fff;

  box-shadow: 0 18px 50px rgba(0, 45, 85, .08);
}

.ds-box::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;

  width: 5px;

  background: linear-gradient(
    180deg,
    #3aa6b9 0%,
    #002d55 100%
  );
}

.ds-box p {
  margin: 0;
}

.ds-link {
  position: relative;

  display: flex;
  align-items: center;
  gap: .75rem;

  padding: .95rem 1rem .95rem 3.25rem;

  border: 1px solid rgba(0, 45, 85, .08);
  border-radius: .95rem;

  background: rgba(255, 255, 255, .82);

  color: #002d55;
  font-weight: 600;
  line-height: 1.4;
  text-decoration: none;

  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background-color .2s ease;
}

.ds-link::before {
  content: "\F63D";
  position: absolute;
  left: 1rem;
  top: 50%;

  transform: translateY(-50%);

  font-family: "bootstrap-icons";
  font-size: 1.35rem;
  line-height: 1;

  color: #3aa6b9;
}

.ds-link::after {
  content: "\F30A";
  margin-left: auto;

  font-family: "bootstrap-icons";
  font-size: 1.1rem;
  line-height: 1;

  color: rgba(0, 45, 85, .45);

  transition: transform .2s ease, color .2s ease;
}

.ds-link:hover,
.ds-link:focus {
  border-color: rgba(58, 166, 185, .35);
  background: #fff;

  color: #002d55;
  transform: translateY(-2px);

  box-shadow: 0 14px 34px rgba(0, 45, 85, .10);
}

.ds-link:hover::after,
.ds-link:focus::after {
  color: #3aa6b9;
  transform: translateX(3px);
}

@media (max-width: 575.98px) {
  .ds-box {
    margin: 1.5rem 0;
    padding: 1.1rem;
    border-radius: 1.1rem;
  }

  .ds-box::before {
    width: 4px;
  }

  .ds-link {
    padding: .9rem .9rem .9rem 3rem;
    font-size: .98rem;
  }
}




/* ===== PRACTICE INTRO ===== */
.practice-intro {
  padding: clamp(3rem, 5vw, 4.5rem) 0 clamp(2rem, 4vw, 3rem);
  background: #fff;
}

.practice-intro-title {
  margin: 0 0 .9rem;

  font-size: clamp(1.9rem, 3.6vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.035em;

  color: #002d55;
}

.practice-intro-text {
  max-width: 760px;
  margin: 0 auto;

  font-size: clamp(1rem, 1.6vw, 1.15rem);
  line-height: 1.7;

  color: rgba(0, 45, 85, .78);
}

.practice-jumpnav {
  margin-top: 1.75rem;
}

@media (max-width: 575.98px) {
  .practice-intro {
    padding-top: 2.75rem;
  }

  .practice-intro-title {
    font-size: 2rem;
  }

  .practice-jumpnav {
    justify-content: stretch !important;
  }

  .practice-jumpnav .btn {
    width: 100%;
    justify-content: center;
  }
}




/* ===== PRACTICE DETAIL SECTIONS ===== */
.practice-detail-section {
  scroll-margin-top: 140px;
  padding: 1.25rem 0;
  background: #fff;
}

.practice-detail-section + .practice-detail-section {
  padding-top: 1.5rem;
}

.practice-detail-card {
  position: relative;
  overflow: hidden;

  padding: clamp(1.5rem, 3vw, 2.5rem);

  border: 1px solid rgba(0, 45, 85, .10);
  border-radius: 1.5rem;

  background:
    linear-gradient(135deg, rgba(58, 166, 185, .08) 0%, rgba(255, 255, 255, 0) 45%),
    #fff;

  box-shadow: 0 18px 50px rgba(0, 45, 85, .08);
}

.practice-detail-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;

  width: 5px;

  background: linear-gradient(
    180deg,
    #3aa6b9 0%,
    #002d55 100%
  );
}

.practice-detail-kicker {
  display: inline-block;
  margin-bottom: .6rem;

  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #3aa6b9;
}

.practice-detail-title {
  margin: 0 0 .9rem;

  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.035em;

  color: #002d55;
}

.practice-detail-text {
  max-width: 760px;
  margin-bottom: 1.35rem;

  font-size: 1.05rem;
  line-height: 1.7;

  color: rgba(0, 45, 85, .78);
}

.practice-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .75rem 1rem;

  margin: 0;
  padding: 0;

  list-style: none;
}

.practice-detail-list li {
  display: flex;
  align-items: flex-start;
  gap: .6rem;

  padding: .75rem .85rem;

  border-radius: .9rem;
  background: rgba(255, 255, 255, .78);
  border: 1px solid rgba(0, 45, 85, .08);

  color: rgba(0, 45, 85, .86);
  font-weight: 500;
  line-height: 1.45;
}

.practice-detail-list i {
  flex: 0 0 auto;
  margin-top: .1rem;

  color: #3aa6b9;
  font-size: 1.05rem;
}

.practice-detail-image-wrap {
  position: relative;
  overflow: hidden;

  min-height: 320px;
  height: 100%;

  border-radius: 1.25rem;
  background: rgba(0, 45, 85, .06);
}

.practice-detail-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;

  background: linear-gradient(
    135deg,
    rgba(0, 45, 85, .06) 0%,
    rgba(58, 166, 185, .08) 100%
  );

  pointer-events: none;
}

.practice-detail-image {
  width: 100%;
  height: 100%;
  min-height: 320px;

  object-fit: cover;
  object-position: center center;

  display: block;
}

/* Tablet */
@media (max-width: 991.98px) {
  .practice-detail-section {
    scroll-margin-top: 110px;
  }

  .practice-detail-image-wrap,
  .practice-detail-image {
    min-height: 260px;
  }

  .practice-detail-list {
    grid-template-columns: 1fr;
  }
}

/* Smartphone */
@media (max-width: 575.98px) {
  .practice-detail-section {
    padding: .9rem 0;
    scroll-margin-top: 95px;
  }

  .practice-detail-card {
    padding: 1.25rem;
    border-radius: 1.1rem;
  }

  .practice-detail-card::before {
    width: 4px;
  }

  .practice-detail-title {
    font-size: 1.75rem;
  }

  .practice-detail-text {
    font-size: 1rem;
  }

  .practice-detail-image-wrap,
  .practice-detail-image {
    min-height: 200px;
  }
}




/* ===== PRACTICE TIMELINE ===== */
.practice-timeline-section {
  scroll-margin-top: 140px;
  padding: 1.25rem 0;
  background: #fff;
}

.practice-timeline-card {
  position: relative;
  overflow: hidden;

  padding: clamp(1.5rem, 3vw, 2.5rem);

  border: 1px solid rgba(0, 45, 85, .10);
  border-radius: 1.5rem;

  background:
    linear-gradient(135deg, rgba(58, 166, 185, .08) 0%, rgba(255, 255, 255, 0) 45%),
    #fff;

  box-shadow: 0 18px 50px rgba(0, 45, 85, .08);
}

.practice-timeline-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;

  width: 5px;

  background: linear-gradient(
    180deg,
    #3aa6b9 0%,
    #002d55 100%
  );
}

.practice-timeline-kicker {
  display: inline-block;
  margin-bottom: .6rem;

  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #3aa6b9;
}

.practice-timeline-title {
  margin: 0 0 .9rem;

  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.035em;

  color: #002d55;
}

.practice-timeline-text {
  max-width: 760px;

  font-size: 1.05rem;
  line-height: 1.7;

  color: rgba(0, 45, 85, .78);
}

.practice-timeline {
  position: relative;

  display: grid;
  gap: 1rem;

  margin-top: 1.5rem;
  padding-left: 2rem;
}

.practice-timeline::before {
  content: "";
  position: absolute;
  left: .45rem;
  top: .5rem;
  bottom: .5rem;

  width: 2px;

  background: linear-gradient(
    180deg,
    rgba(58, 166, 185, .85) 0%,
    rgba(0, 45, 85, .30) 100%
  );
}

.practice-timeline-item {
  position: relative;

  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 1rem;

  padding: 1rem;

  border: 1px solid rgba(0, 45, 85, .08);
  border-radius: 1.1rem;

  background: rgba(255, 255, 255, .84);
}

.practice-timeline-item::before {
  content: "";
  position: absolute;
  left: -1.92rem;
  top: 1.35rem;

  width: .85rem;
  height: .85rem;

  border: 3px solid #fff;
  border-radius: 999px;

  background: #3aa6b9;
  box-shadow: 0 0 0 1px rgba(58, 166, 185, .45);
}

.practice-timeline-year {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  align-self: start;

  min-height: 42px;
  padding: .45rem .75rem;

  border-radius: 999px;

  background: rgba(58, 166, 185, .12);
  color: #002d55;

  font-weight: 800;
  line-height: 1;
}

.practice-timeline-content h3 {
  margin: 0 0 .45rem;

  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 700;

  color: #002d55;
}

.practice-timeline-content p {
  margin: 0;

  font-size: 1rem;
  line-height: 1.65;

  color: rgba(0, 45, 85, .76);
}

/* Tablet */
@media (max-width: 991.98px) {
  .practice-timeline-section {
    scroll-margin-top: 110px;
  }

  .practice-timeline-item {
    grid-template-columns: 100px 1fr;
  }
}

/* Smartphone */
@media (max-width: 575.98px) {
  .practice-timeline-section {
    padding: .9rem 0;
    scroll-margin-top: 95px;
  }

  .practice-timeline-card {
    padding: 1.25rem;
    border-radius: 1.1rem;
  }

  .practice-timeline-card::before {
    width: 4px;
  }

  .practice-timeline-title {
    font-size: 1.75rem;
  }

  .practice-timeline-text {
    font-size: 1rem;
  }

  .practice-timeline {
    padding-left: 1.5rem;
  }

  .practice-timeline::before {
    left: .25rem;
  }

  .practice-timeline-item {
    grid-template-columns: 1fr;
    gap: .75rem;
    padding: .95rem;
  }

  .practice-timeline-item::before {
    left: -1.58rem;
    top: 1.15rem;
  }

  .practice-timeline-year {
    justify-self: start;
  }
}

/* ===== PRACTICE COOPERATIONS ===== */
.practice-coop-section {
  scroll-margin-top: 140px;
  padding: 1.25rem 0 clamp(3rem, 5vw, 5rem);
  background: #fff;
}

.practice-coop-card {
  position: relative;
  overflow: hidden;

  padding: clamp(1.5rem, 3vw, 2.5rem);

  border: 1px solid rgba(0, 45, 85, .10);
  border-radius: 1.5rem;

  background:
    linear-gradient(135deg, rgba(58, 166, 185, .08) 0%, rgba(255, 255, 255, 0) 45%),
    #fff;

  box-shadow: 0 18px 50px rgba(0, 45, 85, .08);
}

.practice-coop-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;

  width: 5px;

  background: linear-gradient(
    180deg,
    #3aa6b9 0%,
    #002d55 100%
  );
}

.practice-coop-kicker {
  display: inline-block;
  margin-bottom: .6rem;

  font-family: "IBM Plex Sans", system-ui, sans-serif;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;

  color: #3aa6b9;
}

.practice-coop-title {
  margin: 0 0 .9rem;

  font-size: clamp(1.65rem, 3vw, 2.45rem);
  line-height: 1.12;
  letter-spacing: -0.035em;

  color: #002d55;
}

.practice-coop-text {
  max-width: 760px;

  font-size: 1.05rem;
  line-height: 1.7;

  color: rgba(0, 45, 85, .78);
}

/* Grid */
.practice-coop-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

/* Einzelne Karte */
.practice-coop-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  min-height: 100%;
  padding: 1.15rem;

  border: 1px solid rgba(0, 45, 85, .08);
  border-radius: 1.15rem;

  background: rgba(255, 255, 255, .86);

  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.practice-coop-item:hover {
  border-color: rgba(58, 166, 185, .28);
  background: rgba(255, 255, 255, .96);
  box-shadow: 0 8px 22px rgba(0, 45, 85, .06);
}

/* Logo- und Icon-Bereich */
.practice-coop-logo,
.practice-coop-icon {
  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  height: 96px;
  padding: 1rem;

  border: 1px solid rgba(0, 45, 85, .08);
  border-radius: .95rem;

  background: #f6f7f8;
}

.practice-coop-logo img {
  display: block;

  width: auto;
  height: auto;

  max-width: 82%;
  max-height: 56px;

  object-fit: contain;
}

.practice-coop-icon i {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 58px;
  height: 58px;

  border-radius: 999px;

  background: rgba(58, 166, 185, .12);
  color: #3aa6b9;

  font-size: 1.65rem;
}

/* Inhalt */
.practice-coop-body {
  flex: 1 1 auto;
}

.practice-coop-body h3 {
  margin: 0 0 .55rem;

  font-size: 1.14rem;
  line-height: 1.3;
  font-weight: 700;

  color: #002d55;
}

.practice-coop-body p {
  margin: 0;

  font-size: 1rem;
  line-height: 1.65;

  color: rgba(0, 45, 85, .76);
}

.practice-coop-item .btn {
  align-self: flex-start;
  margin-top: auto;
}

/* Tablet */
@media (max-width: 991.98px) {
  .practice-coop-section {
    scroll-margin-top: 110px;
  }

  .practice-coop-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Smartphone */
@media (max-width: 575.98px) {
  .practice-coop-section {
    padding: .9rem 0 3rem;
    scroll-margin-top: 95px;
  }

  .practice-coop-card {
    padding: 1.25rem;
    border-radius: 1.1rem;
  }

  .practice-coop-card::before {
    width: 4px;
  }

  .practice-coop-title {
    font-size: 1.75rem;
  }

  .practice-coop-text {
    font-size: 1rem;
  }

  .practice-coop-grid {
    grid-template-columns: 1fr;
  }

  .practice-coop-logo,
  .practice-coop-icon {
    height: 86px;
  }

  .practice-coop-logo img {
    max-height: 50px;
  }

  .practice-coop-icon i {
    width: 54px;
    height: 54px;
    font-size: 1.55rem;
  }

  .practice-coop-item .btn {
    width: 100%;
    justify-content: center;
  }
}