.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin: 56px 0 0;
}
.svc {
  background: radial-gradient(120% 90% at 30% 6%, var(--bg), var(--bg-strong) 78%);
  padding: 34px 30px 40px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}
.svc:nth-child(3n + 2) {
  background: radial-gradient(120% 90% at 70% 6%, var(--bg), var(--bg-strong) 78%);
}
.svc:hover,
.svc.is-on {
  box-shadow: 0 44px 84px rgba(0, 0, 0, 0.2);
}
/* Reihenfolge: Subtitel → Titel → Animation → Text (HTML unverändert, nur per order) */
.svc .tag {
  order: 0;
}
.svc h3 {
  order: 1;
}
.svc .ico {
  order: 2;
  margin: 6px 0 20px;
}
.svc p {
  order: 3;
}
.svc .endP {
  order: 4;
}
.svc .ico svg {
  width: 100%;
  max-width: 120px;
  height: auto;
  overflow: visible;
}
.svc .ico svg [id$="Stage"] rect {
  opacity: 0 !important;
}
.svc .tag {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.svc .tag div {
  background: linear-gradient(transparent 62%, var(--mark) 62%);
  display: inline-block;
}
.svc h3 {
  font-family: "Lyon Text", Georgia, serif;
  font-size: 23px;
  margin: 8px 0 14px;
  font-weight: 700;
  line-height: 1.2;
}
.svc p {
  color: var(--ink-soft);
  font-size: 15px;
  margin: 0;
}
/* Kein Dimmen mehr: Tag, Titel, Text und Icon sind immer voll sichtbar –
   die aktive Karte hebt sich nur über den Schatten (:hover/.is-on) ab. */
.svc .endP {
  height: 1px;
}

.cta-band {
  margin: 70px 0 0;
  background: var(--card);
  border-radius: 0;
  padding: 48px 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}
.cta-band h2 {
  font-family: "Lyon Text", Georgia, serif;
  font-size: 30px;
  margin: 0;
  max-width: 560px;
}
/* .cta-band a{background:var(--accent);color:#0d3540;text-decoration:none;font-weight:600;
  padding:15px 28px;border-radius:40px;font-size:15px;white-space:nowrap;transition:transform .15s;}
.cta-band a:hover{transform:translateY(-2px);} */
.cta-band a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ink);
  font-size: 16px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 2px;
  white-space: nowrap;
  transition: gap 0.2s;
  margin-top: 26px;
}

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