.service-card-title h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin: 0;
    font-weight: 700;
    width: 100%;
    text-align: center;
    min-height: 3.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    box-sizing: border-box;
}
.service-card-desc {
    min-height: 4.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    margin-top: 0;
}
.service-card-desc p {
    color: var(--text-color);
    margin: 0 0 1.5rem 0;
    line-height: 1.7;
    opacity: 0.95;
    width: 100%;
    text-align: center;
}
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2563eb;
    --secondary-color: #0ea5e9;
    --dark-color: #1e293b;
    --light-color: #f8fafc;
    --text-color: #334155;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
    overflow-x: hidden;
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: var(--shadow-lg);
}

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

.logo h1 {
    font-size: 1.8rem;
    color: var(--primary-color);
    font-weight: 700;
}

.logo a {
    display: flex;
    align-items: center;
}

.logo img {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

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

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

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary-color);
}

.btn-contact {
    background: var(--primary-color);
    color: white !important;
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-contact::after {
    display: none;
}

.btn-contact:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    width: 100%;
    height: 100vh; /* volle Höhe des Viewports */
    overflow: hidden;
    background: #0e1a2b; /* dunkler Hintergrund, damit das Netz sichtbar ist */
}

/* Canvas für Netz */
#plexusCanvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

/* Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* optional für Abdunkelung */
    z-index: 1;
}

/* Hero Content */
.hero-content {
     position: relative;
    width: 100%;
    height: 100vh; /* volle Höhe des Viewports */
    display: flex; /* Flexbox aktivieren */
    justify-content: center; /* horizontal zentrieren */
    align-items: center;     /* vertikal zentrieren */
    overflow: hidden;
}
    
.hero .container {
    position: relative;
    z-index: 2; /* sicherstellen, dass der Text über Canvas/Overlay liegt */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.3);
    z-index: 1;
}

.hero-content {
     display: flex;
    flex-direction: column; /* vertikal anordnen */
    align-items: center;    /* horizontal zentrieren */
    justify-content: center; /* vertikal zentrieren, falls hero volle Höhe hat */
    text-align: center;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    color: white;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}


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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
}

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

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

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

/* Section Styles */
.services-section {
  padding: 5rem 0;
  background: #f8fafc;
}

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

.section-header h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-color);
    opacity: 0.8;
    margin-top: 1rem;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--light-color);
    position: relative;
    z-index: 2;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 2.5rem;
    justify-items: stretch;
    align-items: stretch;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-color);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-card p {
    color: var(--text-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-link:hover {
    gap: 0.5rem;
    color: var(--secondary-color);
}

/* Enhanced service card styles (images, bullets, CTAs) */
.service-card {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    overflow: hidden;
    min-height: 480px;
}

/* Reveal state added by JS observer */
.service-card.in-view {
    opacity: 1 !important;
    transform: translateY(0) scale(1) !important;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.service-card-icon {
    font-size: 3rem;
    color: #2563eb;
    margin-bottom: 1rem;
    text-align: center;
}

.service-card-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.service-card:hover .service-card-image img {
    transform: scale(1.05);
}

/* Image overlay and caption */
.service-card-image {
    position: relative;
}

.service-card-image::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 40%;
    background: linear-gradient(180deg, rgba(0,0,0,0) 0%, rgba(0,0,0,0.45) 100%);
    transition: height 0.3s ease;
}

.service-card:hover .service-card-image::after {
    height: 50%;
}

.service-card-content h3 {
    color: var(--dark-color);
    margin-top: 0.5rem;
}

.service-card-content p {
    color: var(--text-color);
    opacity: 0.95;
}

.service-card .service-cta .btn-primary {
    background: var(--primary-color);
    color: white;
}

.service-card .service-cta .btn {
    background: transparent;
    border: 1px solid rgba(0,0,0,0.06);
}

.service-card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2.5rem 2.5rem 2rem 2.5rem;
}

.service-title-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    min-height: 60px;
    margin-bottom: 0.7rem;
    width: 100%;
}
.service-title-row h3 {
    margin: 0;
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 700;
    flex: 1;
    line-height: 1.2;
    display: flex;
    align-items: center;
}

.service-bullets {
    list-style: none;
    padding: 0;
    margin: 0.75rem 0;
    display: grid;
    gap: 0.5rem;
}

.service-bullets li {
    padding-left: 1.25rem;
    position: relative;
}

.service-bullets li::before {
    content: '';
}

.service-cta {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
}

.service-cta .btn {
    padding: 0.6rem 1rem;
    border-radius: 8px;
}

@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .service-card {
        grid-template-columns: 1fr;
        border-radius: 12px;
        background: white;
        box-shadow: var(--shadow);
        transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
}

/* Why Us Section */
.why-us {
    padding: 5rem 0;
    background: white;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-item {
    text-align: center;
    padding: 2rem;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Modern animations and visuals for Why-Us */
@keyframes wc-slideUp {
    from { opacity: 0; transform: translateY(28px) scale(0.995); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes wc-float {
    0% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
    100% { transform: translateY(0); }
}

.why-us .benefit-item {
    background: linear-gradient(180deg,#ffffff,#fbfdff);
    border-radius: 14px;
    box-shadow: 0 8px 20px rgba(15,23,42,0.06);
    padding: 1.8rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.6rem;
    min-height: 190px;
    justify-content: flex-start;
    transform-origin: center;
    transition: transform 320ms cubic-bezier(.2,.9,.2,1), box-shadow 220ms ease;
    will-change: transform, opacity;
}

.why-us .benefit-icon{
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(14,165,233,0.06));
}
.why-us .benefit-icon svg{ width:40px; height:40px; }
.why-us .benefit-icon { animation: wc-float 4.5s ease-in-out infinite; }

.why-us .benefit-item:hover{ transform: translateY(-8px) rotateX(0.6deg) rotateY(1deg) scale(1.01); box-shadow: 0 18px 40px rgba(15,23,42,0.12);} 

/* Reveal class added by JS */
.why-us .benefit-item{ opacity: 0; transform: translateY(28px) scale(0.995); }
.why-us .benefit-item.in-view{ opacity: 1; transform: translateY(0) scale(1); animation: wc-slideUp 700ms cubic-bezier(.2,.9,.2,1) both; }

/* tilt using CSS variables set by JS */
.why-us .benefit-item.tilt{ transform: translateY(-6px) rotateX(var(--tilt-x,0deg)) rotateY(var(--tilt-y,0deg)) scale(1.01); }

@media (max-width: 600px){
    .why-us .benefit-icon{ width:52px; height:52px; }
    .why-us .benefit-item{ min-height: auto; padding: 1rem; }
    .why-us .benefit-icon{ animation: none; }
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--light-color);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 3rem;
    justify-items: center; /* center the form */
}

.contact-info h3 {
    font-size: 2rem;
    color: var(--dark-color);
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.contact-item h4 {
    color: var(--dark-color);
    margin-bottom: 0.3rem;
}

.contact-item p {
    color: var(--text-color);
    line-height: 1.6;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    width: 100%;
    max-width: 720px; /* limit width for better readability */
}

/* Make the contact form submit button blue and prominent */
.contact-form .btn-primary {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
}
.contact-form .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Inline field error */
.form-error {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 0.45rem;
}

/* Consent row styling */
.consent-row {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1rem;
}
.consent-row input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 4px;
}
.consent-row label {
    font-size: 0.95rem;
    color: var(--text-color);
}
.consent-row a {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Cookie consent banner */
.cookie-consent {
    position: fixed;
    left: 20px;
    right: 20px;
    bottom: 20px;
    background: rgba(255,255,255,0.98);
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(2,6,23,0.12);
    padding: 1rem;
    z-index: 2000;
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: space-between;
}
.cookie-consent .cookie-inner { flex: 1; }
.cookie-consent p { margin: 0 0 0.5rem 0; color: var(--text-color); }
.cookie-actions { display: flex; gap: 0.5rem; }
.cookie-settings-panel { display: none; margin-top: 0.75rem; }
.cookie-consent.show { opacity: 1; transform: translateY(0); }
.cookie-consent.hidden { opacity: 0; transform: translateY(12px); pointer-events: none; }
.cookie-settings-panel { margin-left: 1rem; }
.cookie-settings-panel h3 { margin: 0 0 0.5rem 0; }
.cookie-setting { margin-bottom: 0.5rem; }
.cookie-settings-actions { display: flex; gap: 0.5rem; margin-top: 0.5rem; }

@media (max-width: 720px) {
    .cookie-consent { flex-direction: column; left: 12px; right: 12px; bottom: 12px; }
    .cookie-settings-panel { width: 100%; margin-left: 0; }
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.contact-form button {
    width: 100%;
    border: none;
    font-size: 1rem;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

/* Align footer columns to the top so headings and logo start at the same height */
.footer-content {
    align-items: start;
}

/* Footer logo sizing and alignment */
.footer-logo-col {
    display: flex;
    align-items: flex-start;
}
.footer-logo-link {
    display: inline-block;
}
.footer-logo {
    height: 60px;
    width: auto;
    display: block;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 1rem;
    color: white;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Legal links inside Dienstleistungen column */
.legal-links {
    list-style: none;
    margin-top: 0.5rem;
}
.legal-links li {
    margin-bottom: 0.4rem;
}
.legal-links li a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 0.95rem;
}
.legal-links li a:hover { color: var(--secondary-color); }

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #0a2d6f 100%);
    padding: 8rem 0 4rem;
    margin-top: 80px;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.page-header-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.page-header p {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    margin-top: 0;
    min-height: 3.5rem;
    align-items: center;

/* Service Intro */
.service-intro {
    padding: 5rem 0;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text h2 {
    font-size: 2.5rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
}

.intro-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.intro-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    animation: float 3s ease-in-out infinite;
}

.intro-icon-large svg {
    width: 100px;
    height: 100px;
    color: white;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Services Detail Grid */
.services-list {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.service-detail-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-card-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  background-color: #fff !important; /* sichtbare Kartenfarbe */
  padding: 20px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.service-card-fade.in-view {
  opacity: 1;
  transform: translateY(0);
  background-color: #fff !important; /* sichtbare Kartenfarbe */
}

.service-detail-icon {
  font-size: 2rem;
  color: #2a9d8f;
  margin-bottom: 15px;
}

.service-detail-card.in-view {
  opacity: 1 !important;
  transform: translateY(0);
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.service-detail-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
}

.service-detail-icon svg {
    width: 30px;
    height: 30px;
    color: white;
}

.service-detail-card h3 {
    font-size: 1.4rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.service-detail-card ul {
    list-style: none;
    padding: 0;
}

.service-detail-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.service-detail-card ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
}

.service-detail-card h4 {
    font-size: 1.1rem;
    color: var(--dark-color);
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    font-weight: 600;
}

.service-intro-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.benefit-list {
    background: #f8fafc;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.benefit-list li {
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-highlight-box {
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    padding: 1.2rem;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    margin-top: 1.5rem;
}

.service-highlight-box strong {
    display: block;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.service-highlight-box p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.service-card-featured {
    position: relative;
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, #ffffff, #f0f9ff);
}

.service-badge-top {
    position: absolute;
    top: -12px;
    right: 20px;
    background: linear-gradient(135deg, var(--accent-color), #ea580c);
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Hero Section for Akquise Page */
.hero-akquise {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.95), rgba(14, 165, 233, 0.9)),
                url('https://images.pexels.com/photos/3182812/pexels-photo-3182812.jpeg?auto=compress&cs=tinysrgb&w=1920&h=1080&dpr=2') center/cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
    padding: 6rem 0 4rem 0;
    overflow: hidden;
}

.hero-akquise::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content-akquise {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease;
}

.hero-content-akquise h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0.95;
}

.hero-stats-inline {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.stat-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number-hero {
    font-size: 3rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-label-hero {
    font-size: 0.95rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-hero {
    padding: 1rem 3rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.btn-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.4);
}

/* Intro Section with Visual Image */
.intro-section-visual {
    padding: 6rem 0;
    background: #f8fafc;
}

.intro-grid-visual {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.intro-text-visual h2 {
    font-size: 2.2rem;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.intro-text-visual p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

.intro-checklist {
    list-style: none;
    padding: 0;
    margin-top: 2rem;
}

.intro-checklist li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    color: var(--text-color);
}

.intro-checklist li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: bold;
    font-size: 1.3rem;
}

.intro-image-visual {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.intro-image-visual:hover {
    transform: scale(1.02);
}

.intro-image-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Service Cards with Images */
.service-card-with-image {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(37,99,235,0.10), 0 1.5px 6px rgba(30,41,59,0.08);
    transition: box-shadow 0.3s cubic-bezier(.4,0,.2,1), transform 0.25s cubic-bezier(.4,0,.2,1);
    position: relative;
    margin-bottom: 2.5rem;
    border: 1.5px solid #e0e7ef;
}

.service-card-with-image:hover {
    box-shadow: 0 16px 48px rgba(37,99,235,0.18), 0 4px 16px rgba(30,41,59,0.12);
    transform: translateY(-6px) scale(1.025);
    border-color: var(--primary-color);
}

.service-card-badge {
    position: absolute;
    top: 18px;
    left: 18px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    padding: 0.35em 1em;
    border-radius: 12px;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(37,99,235,0.10);
    z-index: 2;
    opacity: 0.92;
    pointer-events: none;
}
}

.service-card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.service-card-with-image:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2rem;
}

.service-card-content .service-detail-icon {
    margin-bottom: 1.5rem;
}

.service-card-content h3 {
    margin-bottom: 1.2rem;
    margin-top: 0;
    min-height: 3.8rem;
}

/* Visual Callout Section */
.visual-callout {
    position: relative;
    padding: 8rem 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(14, 165, 233, 0.85)),
                url('https://images.pexels.com/photos/3183197/pexels-photo-3183197.jpeg?auto=compress&cs=tinysrgb&w=1920&h=800&dpr=2') center/cover;
    background-attachment: fixed;
    color: white;
    text-align: center;
    margin: 4rem 0;
    margin-top: 0;
    margin-bottom: 1.5rem;
    margin-top: 0;
    margin-bottom: 1.5rem;
    min-height: 4.2rem;
    display: flex;
    align-items: flex-start;
}

.callout-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

.callout-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.callout-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.3);
}

.callout-content p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.btn-light {
    background: white;
    color: var(--primary-color);
    border: none;
}

.btn-light:hover {
    background: #f8fafc;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.btn-large {
    padding: 1.2rem 3rem;
    font-size: 1.15rem;
    font-weight: 600;
}

/* Process Section */
.process-section {
    padding: 5rem 0;
    background: white;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.process-step {
    text-align: center;
    padding: 2rem;
    position: relative;
    background: white;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.process-step-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 1.5rem;
}

.process-step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.process-step:hover .process-step-image img {
    transform: scale(1.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    box-shadow: var(--shadow);
}

.process-step h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.process-step p {
    color: var(--text-color);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Benefits Section */
.benefits-section {
    padding: 0 0 5rem 0;
    background: var(--light-color);
}

.benefits-visual-header {
    position: relative;
    height: 300px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.benefits-visual-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.benefits-header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.9), rgba(14, 165, 233, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 2rem;
}

.benefits-header-overlay h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.benefits-header-overlay p {
    font-size: 1.2rem;
    opacity: 0.95;
    max-width: 800px;
}

.benefits-grid-detailed {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.benefit-detailed-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-detailed-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
    color: white;
}

.benefit-detailed-card h3 {
    font-size: 1.5rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.benefit-detailed-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    padding: 5rem 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.testimonial-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.testimonial-card:hover .testimonial-image img {
    transform: scale(1.1);
}

.testimonial-content {
    padding: 2rem;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 1rem;
}

.testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    font-style: italic;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    border-top: 2px solid var(--light-color);
    padding-top: 1rem;
}

.testimonial-author strong {
    color: var(--dark-color);
    font-size: 1.05rem;
}

.testimonial-author span {
    color: var(--text-color);
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

/* vCard Page Styles */
.vcard-page {
    padding: 4rem 0;
}

.vcard-card {
    display: grid;
    grid-template-columns: 160px 1fr;
    gap: 2rem;
    align-items: center;
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.vcard-avatar img {
    width: 160px;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.vcard-body h1 {
    margin: 0 0 0.25rem 0;
    font-size: 1.8rem;
}

.vcard-title {
    margin: 0 0 1rem 0;
    color: var(--text-color);
    font-weight: 500;
}

.vcard-contacts {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem 0;
}

.vcard-contacts li {
    padding: 0.25rem 0;
    color: var(--text-color);
}

.vcard-actions {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.vcard-qr {
    margin-top: 2rem;
    text-align: center;
}

.vcard-qr img {
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.vcard-meta {
    margin-top: 1rem;
    color: var(--text-color);
    font-size: 0.95rem;
}

@media (max-width: 768px) {
    .vcard-card {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .vcard-avatar img {
        margin: 0 auto 1rem auto;
    }
}

.feature-card {
    padding: 2rem;
    text-align: center;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--light-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon svg {
    width: 30px;
    height: 30px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Industries Section */
.industries-section {
    padding: 5rem 0;
    background: var(--light-color);
}

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

.industry-item {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.industry-item:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.industry-item h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.industry-item p {
    color: var(--text-color);
    line-height: 1.6;
}

/* Product Categories */
.product-categories {
    padding: 5rem 0;
    background: white;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: var(--light-color);
    padding: 2.5rem;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.category-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.category-card h3 {
    font-size: 1.8rem;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.category-card > p {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.category-features {
    list-style: none;
    padding: 0;
}

.category-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: var(--text-color);
}

.category-features li::before {
    content: '◆';
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: white;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.faq-item {
    background: var(--light-color);
    padding: 2rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: var(--shadow);
}

.faq-item h4 {
    color: var(--dark-color);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.faq-item p {
    color: var(--text-color);
    line-height: 1.7;
}

/* Form Success Message */
.form-success-message {
    transition: opacity 0.3s ease;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: white;
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow-lg);
        padding: 2rem 0;
        overflow-y: auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero-title {
        font-size: 2rem;
    }

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

    .section-header h2 {
        font-size: 2rem;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .intro-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .intro-grid-visual {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .intro-image-visual {
        order: -1;
    }

    .hero-akquise {
        min-height: 60vh;
        padding: 4rem 0 3rem 0;
        background-attachment: scroll;
    }

    .hero-content-akquise h1 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-stats-inline {
        gap: 2rem;
    }

    .stat-number-hero {
        font-size: 2rem;
    }

    .stat-label-hero {
        font-size: 0.85rem;
    }

    .intro-text-visual h2 {
        font-size: 1.8rem;
    }

    .intro-text-visual p {
        font-size: 1rem;
    }

    .service-card-image {
        height: 200px;
    }

    .visual-callout {
        padding: 5rem 0;
        background-attachment: scroll;
    }

    .callout-content h2 {
        font-size: 1.8rem;
    }

    .callout-content p {
        font-size: 1.1rem;
    }

    .btn-large {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    .benefits-visual-header {
        height: 200px;
        margin-bottom: 2rem;
    }

    .benefits-header-overlay h2 {
        font-size: 1.8rem;
    }

    .benefits-header-overlay p {
        font-size: 1rem;
    }

    .process-step-image {
        height: 150px;
    }

    .step-number {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

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

    .testimonial-image {
        height: 180px;
    }

    .testimonial-content {
        padding: 1.5rem;
    }

    .testimonial-text {
        font-size: 0.95rem;
    }

    .intro-text h2 {
        font-size: 2rem;
    }

    .intro-icon-large {
        width: 150px;
        height: 150px;
    }

    .intro-icon-large svg {
        width: 75px;
        height: 75px;
    }

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

    .cta-content h2 {
        font-size: 2rem;
    }

    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-buttons {
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .process-steps {
        grid-template-columns: 1fr;
    }

    .benefits-grid-detailed {
        grid-template-columns: 1fr;
    }

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

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

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

/* Override: Konsistente vertikale Ausrichtung für Service-Karten */
.services .services-grid .service-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.services .services-grid .service-card .service-card-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 2.5rem;
    box-sizing: border-box;
}

.services .services-grid .service-card .service-card-title {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 3.8rem; /* gleiche Titelhöhe */
    flex: 0 0 auto;
}

.services .services-grid .service-card .service-card-desc {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 4.8rem; /* gleiche Beschreibungs-Höhe */
}

/* Fallback: falls andere Regeln noch überschreiben, erhöhe Spezifität */
.services .services-grid .service-card .service-card-title h3,
.services .services-grid .service-card .service-card-desc p {
    width: 100%;
    text-align: center;
}

/* Make sure titles reserve enough space (up to 3 lines) so descriptions align */
.services .services-grid .service-card .service-card-title {
    min-height: 6rem !important;
    max-height: 6rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    overflow: hidden !important;
    padding: 0 0.25rem !important;
}

.services .services-grid .service-card .service-card-title h3 {
    line-height: 1.05 !important;
    font-size: 1.25rem !important;
    word-break: break-word !important;
}

/* Safety overrides: ensure page is scrollable and canvas doesn't block pointer events */
html, body {
    height: auto !important;
    overflow-y: auto !important;
}

/* Canvas and overlays should not capture pointer events that block scrolling */
#plexusCanvas, .hero-overlay {
    pointer-events: none;
}

.services-list {
  padding: 80px 0; /* Abstand oben/unten */
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.services-detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-detail-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 25px 20px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  opacity: 0; /* für Intersection Observer Animation */
  transform: translateY(30px);
}

.service-detail-card.in-view {
  opacity: 1;
  transform: translateY(0);
}

.service-detail-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-detail-icon {
  font-size: 36px;
  color: #2a9d8f;
  margin-bottom: 15px;
}

.service-detail-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-detail-card ul {
  list-style: disc;
  padding-left: 20px;
}

.service-detail-card ul li {
  margin-bottom: 8px;
  font-size: 0.95rem;
}

.training-section {
    background: var(--light-color);
    padding: 80px 0;
}

.service-title-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
}

.service-title-row i {
  font-size: 26px;
  color: var(--primary-color);
}


.service-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.service-header i {
  font-size: 26px;
  color: var(--primary-color);
}

.service-content ul {
  padding-left: 0;
  list-style: none;
  margin: 0;
}

.service-content li {
  margin-bottom: 6px;
  color: #444;
  line-height: 1.5;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.service-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #444;
  line-height: 1.5;
}

.service-list li i {
  color: var(--primary-color); /* oder eine deiner Wunschfarben */
  font-size: 14px;
  margin-top: 2px;
}


