:root {
    --primary-color: #2c3e50;
    --secondary-color: #34495e;
    --accent-color: #3498db;
    --success-color: #27ae60;
    --warning-color: #f39c12;
    --dark-color: #1a252f;
    --light-color: #f8f9fa;
    --gray-100: #f5f6fa;
    --gray-200: #e9ecef;
    --gray-300: #dee2e6;
    --gray-400: #ced4da;
    --gray-600: #6c757d;
    --gradient-subtle: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    --gradient-tech: linear-gradient(135deg, #2c3e50 0%, #34495e 50%, #3498db 100%);
    --shadow-light: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-medium: 0 4px 16px rgba(0,0,0,0.12);
    --shadow-heavy: 0 8px 32px rgba(0,0,0,0.16);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--dark-color);
    overflow-x: hidden;
}

.container {
    max-width: 1080px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Tech Background Elements */
.tech-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.05;
   // pointer-events: none;
    background-image: 
        radial-gradient(circle at 25% 25%, var(--accent-color) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--primary-color) 1px, transparent 1px);
    background-size: 60px 60px;
}

.circuit-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.03;
    background-image: 
        linear-gradient(90deg, var(--accent-color) 1px, transparent 1px),
        linear-gradient(0deg, var(--accent-color) 1px, transparent 1px);
    background-size: 40px 40px;
}

/* Header */
header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-medium);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-container {
    position: relative;
    width: 100px;
    height: 100px;
}

.logo-icon {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    position: relative;
    border: 1px solid var(--gray-200);
}


.logo-text h1 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: -3px;
}

.logo-text .tagline {
    font-size: 0.8rem;
    color: var(--gray-600);
    font-weight: 400;
}

.logo-text .powered-by {
    font-size: 0.7rem;
    color: var(--gray-500);
    font-weight: 400;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: var(--gradient-subtle);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: white;
    border: 1px solid var(--gray-300);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 2rem;
    box-shadow: var(--shadow-light);
}

.hero-badge::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--success-color);
    border-radius: 50%;
}

.hero h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    color: var(--primary-color);
}

.hero .subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--gray-600);
    font-weight: 400;
}

.hero-description {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
    color: var(--secondary-color);
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
    min-width: 160px; /* Gleiche Mindestbreite */
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--accent-color);
}

.btn-secondary {
    background: transparent;
    color: white; /* Weiße Schrift für dunklen Hintergrund */
    border: 2px solid white;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

/* Tech Graphics */
.tech-graphic {
    position: absolute;
    opacity: 0.1;
  //  pointer-events: none;
}

.server-icon {
    top: 20%;
    right: 10%;
    width: 60px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 4px;
}

.server-icon::before,
.server-icon::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    height: 8px;
    background: var(--accent-color);
    border-radius: 2px;
}

.server-icon::before {
    top: 12px;
}

.server-icon::after {
    top: 28px;
}

.network-node {
    bottom: 30%;
    left: 8%;
    width: 12px;
    height: 12px;
    background: var(--accent-color);
    border-radius: 50%;
    position: relative;
}

.network-node::before,
.network-node::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 2px;
    height: 40px;
    background: var(--accent-color);
    transform: translate(-50%, -50%);
}

.network-node::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.network-node::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

/* Services Section */
.services {
    padding: 80px 0;
    background: white;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-badge {
    display: inline-block;
    background: var(--gray-100);
    color: var(--gray-600);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 1rem;
    border: 1px solid var(--gray-200);
}

.section-title {
    font-size: 2.4rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.section-description {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 1.5rem;
}

.service-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-tech);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-color);
}

.service-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.service-icon {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    background: var(--gray-100);
    color: var(--primary-color);
    border: 1px solid var(--gray-200);
    font-weight: 600;
}

.service-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--primary-color);
}

.service-card p {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    margin-bottom: 1.5rem;
}

.service-features li {
    padding: 4px 0;
    color: var(--gray-600);
    position: relative;
    padding-left: 20px;
    font-size: 0.95rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 600;
    font-size: 0.9rem;
}

.service-link {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.service-link:hover {
    color: var(--primary-color);
}

/* Stats Section */
.stats {
    background: var(--primary-color);
    color: white;
    padding: 50px 0;
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 1rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 80px 0;
    background: var(--gray-100);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text h3 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
    font-weight: 600;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--gray-600);
    font-size: 1.05rem;
    line-height: 1.7;
}

.about-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 2rem;
}

.highlight-item {
    background: white;
    padding: 1.2rem;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--gray-200);
}

.highlight-number {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent-color);
}

.highlight-text {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.about-visual {
    position: relative;
}

.tech-dashboard {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: var(--shadow-light);
}

.dashboard-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-200);
}

.status-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--success-color);
}

.dashboard-title {
    font-size: 1rem;
    font-weight: 500;
    color: var(--primary-color);
}

.metric-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--gray-100);
}

.metric-label {
    font-size: 0.9rem;
    color: var(--gray-600);
}

.metric-value {
    font-weight: 600;
    color: var(--success-color);
}

/* Contact CTA */
.contact-cta {
    background: var(--gradient-tech);
    padding: 60px 0;
    text-align: center;
    color: white;
    position: relative;
}

.contact-cta h3 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* Footer */
footer {
    background: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p,
.footer-section a {
    color: #bbb;
    text-decoration: none;
    line-height: 1.8;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--accent-color);
}

.footer-company {
    max-width: 300px;
}

.footer-company .company-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.footer-company .company-logo svg {
    width: 40px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.footer-company .company-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white;
}

.footer-company .company-tagline {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 1rem;
}

.contact-info {
    margin-bottom: 1.5rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 0.5rem;
}

.contact-icon {
    width: 16px;
    height: 16px;
    background: var(--accent-color);
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    font-weight: bold;
}

.service-links {
    list-style: none;
}

.service-links li {
    margin-bottom: 0.8rem;
}

.service-links a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
}

.service-links a::before {
    content: '→';
    color: var(--accent-color);
    font-weight: bold;
}

.legal-links {
    list-style: none;
}

.legal-links li {
    margin-bottom: 0.8rem;
}

.legal-links a {
    display: block;
    padding: 4px 0;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom-left {
    color: #888;
    font-size: 0.9rem;
}

.footer-bottom-right {
    display: flex;
    gap: 1rem;
}

.footer-bottom-right a {
    color: #888;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-bottom-right a:hover {
    color: var(--accent-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }

    .hero h1 {
        font-size: 2.4rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

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

    .about-highlights {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .footer-company {
        max-width: none;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }


}
/* Logo-Styles für logo-black.png */
.logo-icon {
    width: 100%;
    height: 100%;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-light);
    position: relative;
    border: 1px solid var(--gray-200);
    padding: 5px; /* Kleiner Abstand um das Logo */
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Logo behält Proportionen bei */
    max-width: 100%;
    max-height: 100%;
}

/* Alternative: Logo ohne weißen Hintergrund */
.logo-icon-transparent {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Kein Hintergrund oder Rahmen */
}

/* Für das Footer-Logo (weiße Version) */
.footer-company .company-logo img {
    width: 40px;
    height: auto;
    filter: brightness(0) invert(1); /* Macht schwarzes Logo weiß */
.logo-icon {
    background: transparent; /* Kein Hintergrund */
    border: none;           /* Kein Rahmen */
    box-shadow: none;       /* Kein Schatten */
}


/* Logo ohne Rahmen und Hintergrund */
.logo-icon {
    width: 100%;
    height: 100%;
    background: transparent;  /* Kein Hintergrund */
    border: none;            /* Kein Rahmen */
    box-shadow: none;        /* Kein Schatten */
    border-radius: 0;        /* Keine abgerundeten Ecken */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;              /* Kein Innenabstand */
}

.logo-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-width: 100%;
    max-height: 100%;
}

/* Optional: Logo-Container-Größe anpassen */
.logo-container {
    width: 100px;   /* Anpassen nach Bedarf */
    height: 100px;  /* Anpassen nach Bedarf */
}
/* Einheitliche Button-Styles für alle Email/Contact Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: center;
    min-width: 160px; /* Gleiche Mindestbreite */
}

.btn-primary {
    background: var(--accent-color);
    color: white;
    box-shadow: var(--shadow-light);
    border: 1px solid var(--accent-color);
}

.btn-secondary {
    background: transparent;
    color: white; /* Weiße Schrift für dunklen Hintergrund */
    border: 2px solid white;
}
/* Spezielle Styles für Contact CTA Section (dunkler Hintergrund) */
.contact-cta .btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.contact-cta .btn-primary {
    background: var(--accent-color);
    color: white;
    border: 2px solid var(--accent-color);
}

/* Hover-Effekte */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-primary:hover {
    background: #2980b9; /* Etwas dunkler als accent-color */
    border-color: #2980b9;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary-color);
}

/* Spezielle Hover-Effekte für Contact CTA */
.contact-cta .btn-secondary:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.contact-cta .btn-primary:hover {
    background: #2980b9;
    border-color: #2980b9;
}

/* Responsive Anpassung */
@media (max-width: 768px) {
    .btn {
        width: 100%;
        max-width: 280px;
        margin: 0.5rem 0;
    }
    
    .hero-buttons,
    .contact-cta .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
}
.service-link { position: relative; z-index: 2; }

}
/* Overlay unter Inhalt halten */
.service-card::before {
  z-index: 0;            /* ausdrücklich ganz nach unten */
}

/* Link sichtbar über dem Overlay & klar klickbar */
.service-link {
  position: relative;
  z-index: 1;            /* über dem ::before */
  // pointer-events: auto;  /* falls irgendwo vererbt wurde */
  display: inline-flex;  /* schöneres Layout */
  align-items: center;
  gap: .35rem;
  text-decoration: none; /* dein ursprünglicher Stil bleibt */
}

/* falls etwas anderes in der Card z-index > 1 setzt */
.service-card { position: relative; }
}
/* === Dropdown "Produkte" === */
.has-submenu { position: relative; }
.submenu-toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; border: 0; font: inherit; color: inherit; cursor: pointer;
  padding: .5rem .75rem; border-radius: .5rem;
}
.submenu-toggle:focus-visible { outline: 2px solid rgba(0,0,0,.3); outline-offset: 2px; }

.has-submenu .chev { transition: transform .2s ease; }
.has-submenu[aria-expanded="true"] .chev,
.has-submenu.open .chev { transform: rotate(180deg); }

/* Dropdown-Layer */
.submenu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  margin-top: .35rem; padding: .5rem;
  background: #fff; border: 1px solid rgba(0,0,0,.08); border-radius: .6rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  opacity: 0; visibility: hidden; transform: translateY(6px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s;
  z-index: 1000;
}
.has-submenu:hover > .submenu,
.has-submenu:focus-within > .submenu,
.has-submenu.open > .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.submenu li { list-style: none; }
.submenu a {
  display: block; padding: .55rem .65rem; border-radius: .4rem;
  color: inherit; text-decoration: none; white-space: nowrap;
}
.submenu a:hover { background: rgba(0,0,0,.05); }

/* Mobile: wenn deine Hauptnav aufklappt & vertikal ist */
@media (max-width: 900px) {
  .submenu {
    position: static; margin: .25rem 0 .5rem; box-shadow: none; border: 0;
    transform: none; opacity: 1; visibility: visible; padding: 0;
    display: none;            /* per JS ein/aus */
  }
  .has-submenu.open > .submenu { display: block; }
}
/* === Dropdown (dynamisch, mit Height-Animation) === */
.has-submenu.dyn { position: relative; }
.submenu-toggle {
  display: inline-flex; align-items: center; gap: .4rem;
  background: transparent; border: 0; font: inherit; color: inherit; cursor: pointer;
  padding: .5rem .75rem; border-radius: .5rem;
}
.submenu-toggle:focus-visible { outline: 2px solid rgba(0,0,0,.3); outline-offset: 2px; }
.has-submenu.dyn .chev { transition: transform .2s ease; }
.has-submenu.dyn.open .chev { transform: rotate(180deg); }

/* Layer-Box */
.has-submenu.dyn .submenu {
  position: absolute; top: 100%; left: 0; min-width: 220px;
  margin-top: .35rem; padding: .25rem; border-radius: .6rem;
  background: #fff; border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 10px 30px rgba(0,0,0,.08);
  z-index: 1500;

  /* Animations-Setup */
  height: 0; overflow: hidden;
  opacity: 0; transform: translateY(6px);
  transition: height .22s ease, opacity .18s ease, transform .18s ease;
}

/* sichtbarer Zustand – die eigentliche Endhöhe setzt JS inline */
.has-submenu.dyn.open .submenu {
  opacity: 1; transform: translateY(0);
}

/* Einträge */
.has-submenu.dyn .submenu li { list-style: none; }
.has-submenu.dyn .submenu a {
  display: block; padding: .55rem .65rem; border-radius: .4rem;
  color: inherit; text-decoration: none; white-space: nowrap;
}
.has-submenu.dyn .submenu a:hover { background: rgba(0,0,0,.05); }

/* Mobile: statisch untereinander, aber weiterhin sanft auf/zu */
@media (max-width: 900px) {
  .has-submenu.dyn .submenu {
    position: static; margin: .25rem 0 .5rem; box-shadow: none; border: 0;
    transform: none;
  }
}

/* Barrierefreiheit: deaktiviert Animation für Nutzer mit reduzierter Bewegung */
@media (prefers-reduced-motion: reduce) {
  .has-submenu.dyn .submenu { transition: none; }
}
/* 3 Spalten ab Desktop */
@media (min-width: 1024px) {
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem; /* bleibt wie gehabt */
  }
}

  a.link--soft{
    color: hsl(var(--link));
    text-decoration-line: underline;
    text-decoration-thickness: 2px;
    text-underline-offset: .18em;
    text-decoration-color: hsl(var(--link) / 0.45);
    text-decoration-skip-ink: auto;
    transition: color var(--dur) var(--ease),
                text-decoration-color var(--dur) var(--ease);
    outline: none;
  }
  a.link--soft:hover{
    color: hsl(var(--link-contrast));
    text-decoration-color: currentColor;
  }
  a.link--soft:visited{
    color: hsl(var(--link-visited));
    text-decoration-color: hsl(var(--link-visited) / 0.45);
  }
  a.link--soft:focus-visible{
    outline: 3px solid var(--ring);
    outline-offset: 2px;
    border-radius: .25rem;       /* weicher Fokusrahmen */
    background: var(--link-bg);  /* leichtes Fokus-Highlight */
  }

  /* Fallback, falls ältere Browser die Unterstreichungs-Props nicht können */
  @supports not (text-decoration-thickness: 2px){
    a.link--soft{
      text-decoration: none;
      border-bottom: 2px solid hsl(var(--link) / 0.45);
      padding-bottom: 1px;
    }
    a.link--soft:hover{ border-bottom-color: currentColor; }
  }
.service-link{ pointer-events:auto; display:inline-flex; }
