/*
Theme Name: Fleet Data
Theme URI: https://www.fleet-data.de
Author: Fleet Data & Systems Consulting UG
Description: Maßgeschneidertes Theme für Fleet Data & Systems Consulting UG - Lokale KI-Lösungen
Version: 1.1
Text Domain: fleet-data
*/

:root {
    --primary-blue: #2C3E50;
    --dark-blue: #1A252F;
    --light-blue: #34495E;
    --accent-blue: #3D566E;
    --accent-gold: #C4A35A;
    --accent-teal: #178687;
    --text-dark: #1A252F;
    --text-white: #ffffff;
    --text-muted: #B0BEC5;
    --bg-light: #2C3E50;
    --border-color: rgba(44, 62, 80, 0.15);
    --link-accent: #178687;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #2C3E50;
    color: #ffffff;
    line-height: 1.6;
    font-size: 18px;
    position: relative;
}

a {
    color: var(--link-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-blue);
}

/* ============================================
   HEADER
   ============================================ */
.header::after {
    display: none;
}

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: transparent;
    z-index: 1000;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: rgba(44, 62, 80, 1);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.nav-container {
    max-width: 100%;
    margin: 0;
    padding: 1rem 2rem 1rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    min-height: 140px;
}

.logo {
    height: 100%;
    position: absolute;
    left: 90px;
    top: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    padding: 0.3rem 0 0.3rem 0;
    margin: 0;
}

.logo img {
    width: auto;
    object-fit: contain;
    margin-left: 0;
    border-radius: 0;
    background: transparent;
    padding: 4px;
    box-shadow: none;
    border: none;
    transition: all 0.3s ease;
}

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

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.25rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-teal);
}

/* Submenü (Dropdown) */
.nav-menu .sub-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

@media (min-width: 1024px) {
    .nav-menu .menu-item-has-children {
        position: relative;
    }

    .nav-menu .menu-item-has-children > .nav-link::after {
        content: " \25BE";
        font-size: 0.85em;
        margin-left: 0.25rem;
        opacity: 0.8;
    }

    .nav-menu .sub-menu {
        position: absolute;
        top: 100%;
        left: 0;
        min-width: 220px;
        background: rgba(44, 62, 80, 0.98);
        padding: 0.5rem 0;
        border-radius: 6px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        opacity: 0;
        visibility: hidden;
        transform: translateY(8px);
        transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
        z-index: 1001;
    }

    .nav-menu .menu-item-has-children:hover > .sub-menu,
    .nav-menu .menu-item-has-children.open > .sub-menu {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .nav-menu .sub-menu .nav-link {
        display: block;
        padding: 0.6rem 1.2rem;
        font-size: 1.05rem;
        white-space: nowrap;
    }
}

@media (max-width: 1023px) {
    .nav-menu .menu-item-has-children > .nav-link::after {
        content: " \25BE";
        font-size: 0.85em;
        margin-left: 0.4rem;
        opacity: 0.7;
        display: inline-block;
        transition: transform 0.25s;
    }

    .nav-menu .menu-item-has-children.open > .nav-link::after {
        transform: rotate(180deg);
    }

    .nav-menu .sub-menu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
        padding-left: 1.5rem;
        width: 100%;
    }

    .nav-menu .menu-item-has-children.open > .sub-menu {
        max-height: 500px;
        margin-top: 0.75rem;
    }

    .nav-menu .sub-menu .nav-link {
        display: block;
        padding: 0.6rem 0;
        font-size: 1.05rem;
    }
}

/* Search/Info Button & Info Dropdown - Removed (not used in templates) */

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 2.75rem;
    line-height: 1;
    padding: 0.5rem 0.75rem;
    cursor: pointer;
    color: var(--text-white);
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    min-height: 100vh;
    width: 100%;
    background: #2C3E50;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    text-align: center;
    padding: 8rem 2rem 4rem;
}

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

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--text-white);
    max-width: 900px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    color: #ffffff;
}

.hero-content p {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 2.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content h2 {
    color: var(--accent-gold);
}

/* ============================================
   BUTTONS
   ============================================ */
.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-blue);
    color: var(--text-white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--light-blue);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
    color: var(--text-white);
}

.btn.secondary {
    background-color: transparent;
    color: var(--text-white);
    border: 2px solid var(--text-white);
}

.btn.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: var(--light-blue);
    color: var(--text-white);
}

/* ============================================
   CONTAINER & SECTIONS
   ============================================ */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 5rem 0;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #ffffff;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    text-align: center;
    color: #ffffff;
    opacity: 0.9;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services {
    background-color: #2C3E50;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
}

.services-grid .service-card {
    flex: 0 1 calc(20% - 2rem);
    min-width: 220px;
}

.service-card {
    background: rgba(52, 73, 94, 0.5);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.service-card:hover {
    transform: translateY(-8px) scale(1.02);
    background: rgba(52, 73, 94, 0.7);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.service-card p {
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.7;
}

/* ============================================
   PRICING GRID
   ============================================ */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-card {
    background: rgba(52, 73, 94, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.3);
    border-radius: 28px;
    padding: 2.5rem 2rem;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.pricing-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(52, 73, 94, 0.7);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
}

.pricing-card.featured {
    border: 4px solid rgba(255, 255, 255, 0.6);
    background: rgba(52, 73, 94, 0.7);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.pricing-card.featured:hover {
    transform: scale(1.08) translateY(-8px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.pricing-badge {
    display: inline-block;
    padding: 0.3rem 1rem;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    font-size: 0.85rem;
    color: #ffffff;
    font-weight: 500;
}

.pricing-badge.popular {
    background: linear-gradient(135deg, #C4A35A 0%, #A8893E 100%);
    color: #1a1a1a;
    font-weight: 600;
}

.pricing-price {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.price-amount {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.price-period {
    display: block;
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.8;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.pricing-features li {
    padding: 0.7rem 0;
    color: #ffffff;
    opacity: 0.95;
    font-size: 1rem;
    line-height: 1.6;
}

.pricing-btn {
    display: block;
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.4);
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.pricing-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-2px);
    color: #ffffff;
}

.pricing-btn.primary {
    background: linear-gradient(135deg, #C4A35A 0%, #A8893E 100%);
    border-color: var(--accent-gold);
    color: #1a1a1a;
}

.pricing-btn.primary:hover {
    background: linear-gradient(135deg, #A8893E 0%, #C4A35A 100%);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
    color: #1a1a1a;
}

/* ============================================
   FEATURE SECTIONS
   ============================================ */
.feature-section {
    background: #2C3E50;
}

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

.feature-text h3 {
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: #ffffff;
}

.feature-text p {
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    padding: 0.8rem 0;
    padding-left: 2rem;
    position: relative;
    color: #ffffff;
    opacity: 0.95;
}

.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: #ffffff;
    font-weight: 700;
    font-size: 1.2rem;
}

.feature-visual {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    height: 400px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: white;
}

/* ============================================
   STATS
   ============================================ */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.stat-card {
    background: rgba(52, 73, 94, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.3);
    padding: 2rem;
    border-radius: 24px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.stat-card:hover {
    transform: translateY(-4px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(52, 73, 94, 0.7);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.stat-number {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #ffffff;
    display: block;
    margin-bottom: 0.5rem;
}

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

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact-section {
    background: #2C3E50;
    color: white;
}

.contact-section .section-title,
.contact-section .section-subtitle {
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-form {
    background: rgba(255, 255, 255, 0.95);
    padding: 2.5rem;
    border-radius: 28px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(255, 255, 255, 0.5);
    transition: all 0.3s ease;
}

.contact-form:hover {
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-blue);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: start;
    gap: 1.5rem;
    background: rgba(52, 73, 94, 0.3);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-icon {
    font-size: 2rem;
    background: rgba(255, 255, 255, 0.2);
    padding: 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 60px;
    height: 60px;
}

.contact-details h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--link-accent);
}

.contact-details p {
    opacity: 0.9;
}

.contact-details a {
    color: #ffffff;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #1A252F;
    color: white;
    padding: 3rem 0 1.5rem;
}

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

.footer-section h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
    color: var(--light-blue);
}

.footer-section p,
.footer-section address {
    line-height: 1.8;
    opacity: 0.9;
    font-style: normal;
}

.footer-section a {
    color: var(--light-blue);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.7;
}

.footer-bottom a {
    color: var(--accent-teal);
    text-decoration: none;
}

/* ============================================
   IMPRESSUM / DATENSCHUTZ PAGE
   ============================================ */
.legal-section {
    background-color: #1A252F;
    color: #ffffff;
    padding: 4rem 2rem;
    padding-top: 14rem;
}

.legal-section .container {
    max-width: 1000px;
}

.legal-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.legal-content {
    background: rgba(52, 73, 94, 0.3);
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--accent-teal);
}

.legal-content h3:first-child {
    font-size: 1.5rem;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.legal-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.legal-content a {
    color: var(--accent-teal);
    text-decoration: none;
}

.back-to-top {
    text-align: center;
    margin-top: 2rem;
}

.back-to-top a {
    color: var(--accent-teal);
    text-decoration: none;
    font-size: 1.1rem;
}

/* ============================================
   PAGE CONTENT (generic WordPress pages)
   ============================================ */
.page-content {
    background: #2C3E50;
    padding-top: 14rem;
    padding-bottom: 4rem;
    min-height: 60vh;
}

.page-content .container {
    max-width: 1000px;
}

.page-content h1,
.page-content h2,
.page-content h3,
.page-content h4 {
    color: #ffffff;
    margin-bottom: 1rem;
}

.page-content h1 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 2rem;
}

.page-content p {
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.page-content ul, .page-content ol {
    color: #ffffff;
    opacity: 0.95;
    line-height: 1.8;
    margin-bottom: 1rem;
    padding-left: 2rem;
}

/* ============================================
   WORDPRESS OVERRIDES
   ============================================ */
.wp-block-post-content,
.entry-content {
    color: #ffffff;
}

/* Remove WordPress admin bar spacing conflict */
body.admin-bar .header {
    top: 32px;
}

/* ============================================
   LLM QUALITY CHART - Fleet Data Overrides
   ============================================ */
.llm-quality-chart-wrapper {
    --llm-bg: #0f1117;
    --llm-bg-card: #1e2130;
    --llm-border: #2a2d3a;
    --llm-text: #e2e4eb;
    --llm-text-muted: #8b8fa3;
    --llm-text-dim: #5c6078;
    --llm-accent: #818cf8;
    --llm-accent-light: #a5b4fc;
    --llm-accent-soft: rgba(129, 140, 248, 0.15);
    --llm-blue: #60a5fa;
    --llm-purple: #a78bfa;
}

.llm-quality-chart-wrapper .llm-chart-container {
    background: #0f1117;
    border-radius: 12px;
    padding: 24px;
}

.llm-quality-chart-wrapper .llm-card {
    background: #1e2130 !important;
    border-color: #2a2d3a !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
    .nav-menu {
        position: fixed;
        top: 77px;
        left: -100%;
        flex-direction: column;
        background: rgba(44, 62, 80, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        padding: 2rem;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

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

    .mobile-menu-toggle {
        display: block;
    }

    .feature-content,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .services-grid .service-card {
        flex: 0 1 calc(50% - 2rem);
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .services-grid .service-card {
        flex: 0 1 100%;
    }

    .pricing-grid,
    .stats-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-container {
        min-height: 70px !important;
        padding: 0.25rem 1rem !important;
    }

    .logo {
        height: auto !important;
        position: relative !important;
        left: 0 !important;
        padding: 0 !important;
    }

    .header {
        min-height: 70px !important;
    }

    .header-content {
        min-height: 70px !important;
        padding: 0.25rem 0 !important;
    }
}

/* ============================================
   TEAM PAGE
   ============================================ */
.team-hero {
    min-height: 50vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12rem 2rem 4rem;
    text-align: center;
    background: #2C3E50;
}

.team-section {
    padding: 4rem 0;
    background: #2C3E50;
}

.team-section-title {
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--accent-gold);
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    padding-bottom: 1rem;
}

.team-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--accent-gold);
    border-radius: 2px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-grid .team-card {
    flex: 0 1 calc(33.333% - 2rem);
    min-width: 250px;
}

.team-grid-1 .team-card {
    flex: 0 1 100%;
    max-width: 500px;
}

.team-grid-2 .team-card {
    flex: 0 1 calc(50% - 1rem);
    max-width: 450px;
}

.team-grid-3 .team-card {
    flex: 0 1 calc(33.333% - 2rem);
}

.team-grid-4 .team-card {
    flex: 0 1 calc(25% - 1.5rem);
}

.team-card {
    background: rgba(52, 73, 94, 0.5);
    border: 3px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.team-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.4);
    background: rgba(52, 73, 94, 0.7);
    box-shadow: 0 16px 32px rgba(0, 0, 0, 0.35);
}

.team-card-image,
figure.team-card-image,
.wp-block-image.team-card-image {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1 !important;
    overflow: hidden !important;
    background: rgba(26, 37, 47, 0.4);
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Override WordPress default image sizing - keep aspect ratio */
.team-card-image.size-large,
.team-card-image.size-medium,
.team-card-image.size-full,
figure.team-card-image.size-large,
figure.team-card-image.size-medium,
figure.team-card-image.size-full {
    width: 100% !important;
    max-width: 100% !important;
    aspect-ratio: 1 / 1 !important;
}

.team-card-image img,
figure.team-card-image img,
.wp-block-image.team-card-image img {
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    max-height: none !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.4s ease;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
}

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

.team-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 37, 47, 0.3);
}

.team-card-placeholder svg {
    width: 60%;
    height: 60%;
    opacity: 0.5;
}

.team-card-content {
    padding: 1.5rem 2rem 2rem;
}

.team-card-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.3rem;
}

.team-card-role {
    display: inline-block;
    font-size: 0.95rem;
    color: var(--accent-teal);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-card-description {
    font-size: 1rem;
    color: #ffffff;
    opacity: 0.85;
    line-height: 1.7;
}

/* Team Page Responsive */
@media (max-width: 1023px) {
    .team-grid-3 .team-card,
    .team-grid-4 .team-card {
        flex: 0 1 calc(50% - 1rem);
    }
}

@media (max-width: 768px) {
    .team-hero {
        padding: 10rem 1.5rem 3rem;
        min-height: 35vh;
    }

    .team-grid .team-card {
        flex: 0 1 100% !important;
        max-width: 100%;
    }

    .team-grid {
        gap: 1.5rem;
        padding: 0 1rem;
    }
}

@media (max-width: 480px) {
    .team-card-content {
        padding: 1.2rem 1.5rem 1.5rem;
    }
}

/* ============================================
   BLOG
   ============================================ */
.blog-hero {
    min-height: 40vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 14rem 2rem 4rem;
    text-align: center;
    background: #2C3E50;
}

.blog-section {
    padding: 3rem 0 5rem;
    background: #2C3E50;
}

.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 3rem;
    align-items: start;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.blog-card {
    background: rgba(52, 73, 94, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(6px);
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.blog-card-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: rgba(26, 37, 47, 0.4);
}

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

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

.blog-card-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(26, 37, 47, 0.3);
}

.blog-card-placeholder svg {
    width: 50%;
}

.blog-card-content {
    padding: 1.2rem 1.5rem 1.5rem;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.5rem;
}

.blog-card-categories {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.6rem;
    flex-wrap: wrap;
}

.blog-card-cat {
    display: inline-block;
    padding: 0.2rem 0.7rem;
    background: var(--accent-teal);
    color: #fff;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
}

.blog-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.6rem;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.blog-card-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
}

.blog-card-author img {
    border-radius: 50%;
}

.blog-empty {
    text-align: center;
    padding: 4rem 2rem;
    color: rgba(255, 255, 255, 0.7);
}

.blog-empty h2 {
    color: #fff;
    margin-bottom: 1rem;
}

/* Pagination */
.blog-pagination {
    margin-top: 3rem;
    text-align: center;
}

.blog-pagination .page-numbers {
    display: inline-block;
    padding: 0.6rem 1rem;
    margin: 0 0.2rem;
    background: rgba(52, 73, 94, 0.5);
    color: #fff;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover {
    background: var(--accent-teal);
    border-color: var(--accent-teal);
}

/* ============================================
   BLOG SIDEBAR
   ============================================ */
.blog-sidebar {
    position: sticky;
    top: 240px;
}

.sidebar-widget {
    background: rgba(52, 73, 94, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(6px);
}

.sidebar-widget-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--accent-gold);
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
}

.sidebar-search {
    display: flex;
    gap: 0.5rem;
}

.sidebar-search input {
    flex: 1;
    padding: 0.6rem 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    background: rgba(26, 37, 47, 0.5);
    color: #fff;
    font-size: 0.9rem;
    outline: none;
}

.sidebar-search input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.sidebar-search input:focus {
    border-color: var(--accent-teal);
}

.sidebar-search button {
    padding: 0.6rem 0.8rem;
    background: var(--accent-teal);
    border: none;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sidebar-search button:hover {
    opacity: 0.85;
}

.sidebar-categories {
    list-style: none;
    padding: 0;
    max-height: 320px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--accent-teal) rgba(255, 255, 255, 0.05);
}

.sidebar-categories::-webkit-scrollbar {
    width: 4px;
}

.sidebar-categories::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.sidebar-categories::-webkit-scrollbar-thumb {
    background: var(--accent-teal);
    border-radius: 4px;
}

.sidebar-categories li {
    margin-bottom: 0.4rem;
}

.sidebar-categories li.current-cat a {
    background: var(--accent-teal);
    color: #fff;
    border-color: var(--accent-teal);
}

.sidebar-categories a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.65rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s ease;
    font-size: 0.9rem;
    font-weight: 500;
    background: rgba(26, 37, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.sidebar-categories a:hover {
    background: rgba(23, 134, 135, 0.15);
    color: var(--accent-teal);
    border-color: rgba(23, 134, 135, 0.3);
    transform: translateX(4px);
}

.cat-count {
    background: rgba(255, 255, 255, 0.1);
    padding: 0.15rem 0.6rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    min-width: 28px;
    text-align: center;
}

.sidebar-recent {
    list-style: none;
    padding: 0;
}

.sidebar-recent li {
    margin-bottom: 0.5rem;
}

.sidebar-recent a {
    display: block;
    padding: 0.7rem 1rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    border-radius: 10px;
    transition: all 0.25s ease;
    background: rgba(26, 37, 47, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid transparent;
}

.sidebar-recent a:hover {
    background: rgba(23, 134, 135, 0.1);
    color: var(--accent-teal);
    border-left-color: var(--accent-teal);
    transform: translateX(4px);
}

.recent-title {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.4;
}

.recent-date {
    display: block;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.45);
    margin-top: 0.3rem;
}

/* ============================================
   SINGLE POST
   ============================================ */
.single-hero {
    padding: 12rem 2rem 3rem;
    text-align: center;
    background: #2C3E50;
}

.single-meta-top {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.single-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: #fff;
    max-width: 800px;
    margin: 0 auto 1.5rem;
    line-height: 1.3;
}

.single-meta {
    display: flex;
    justify-content: center;
}

.single-author {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

.single-author img {
    border-radius: 50%;
}

.single-author div {
    text-align: left;
}

.single-author strong {
    display: block;
    color: #fff;
}

.single-author span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.single-content-wrapper {
    padding: 3rem 0 5rem;
    background: #2C3E50;
}

.single-featured-image {
    margin-bottom: 2rem;
    border-radius: 16px;
    overflow: hidden;
}

.single-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-content {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    line-height: 1.8;
}

.single-content h2 {
    font-size: 1.8rem;
    color: #fff;
    margin: 2.5rem 0 1rem;
}

.single-content h3 {
    font-size: 1.4rem;
    color: #fff;
    margin: 2rem 0 0.8rem;
}

.single-content p {
    margin-bottom: 1.2rem;
}

.single-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.single-content blockquote {
    border-left: 4px solid var(--accent-teal);
    padding: 1rem 1.5rem;
    margin: 1.5rem 0;
    background: rgba(23, 134, 135, 0.1);
    border-radius: 0 8px 8px 0;
    font-style: italic;
}

.single-content pre {
    background: rgba(26, 37, 47, 0.8);
    padding: 1.5rem;
    border-radius: 12px;
    overflow-x: auto;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.single-content code {
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 0.9rem;
}

.single-content ul,
.single-content ol {
    margin: 1rem 0 1.5rem 1.5rem;
}

.single-content li {
    margin-bottom: 0.5rem;
}

.single-content a {
    color: var(--accent-teal);
    text-decoration: underline;
}

/* Tags */
.single-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 2.5rem 0;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.single-tag {
    padding: 0.3rem 0.8rem;
    background: rgba(52, 73, 94, 0.6);
    color: rgba(255, 255, 255, 0.7);
    border-radius: 20px;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.single-tag:hover {
    background: var(--accent-teal);
    color: #fff;
}

/* Post Navigation */
.single-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 3rem 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.single-nav-link {
    display: block;
    padding: 1.2rem;
    background: rgba(52, 73, 94, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.single-nav-link:hover {
    background: rgba(52, 73, 94, 0.7);
    border-color: rgba(255, 255, 255, 0.3);
}

.single-nav-next {
    text-align: right;
}

.single-nav-label {
    display: block;
    font-size: 0.85rem;
    color: var(--accent-teal);
    margin-bottom: 0.3rem;
}

.single-nav-title {
    display: block;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.4;
}

/* ============================================
   COMMENTS
   ============================================ */
.single-comments {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.comments-title {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
}

.comment-list {
    list-style: none;
    padding: 0;
}

.comment-list .children {
    list-style: none;
    padding-left: 2rem;
    margin-top: 1rem;
}

.comment-body {
    display: flex;
    gap: 1rem;
    padding: 1.2rem;
    background: rgba(52, 73, 94, 0.4);
    border-radius: 12px;
    margin-bottom: 1rem;
}

.comment-author-avatar img {
    border-radius: 50%;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.comment-author-name {
    color: #fff;
}

.comment-date {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
}

.comment-text {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    font-size: 0.95rem;
}

.comment-text p {
    margin: 0.3rem 0;
}

.comment-reply a {
    font-size: 0.85rem;
    color: var(--accent-teal);
    text-decoration: none;
}

.comment-reply a:hover {
    text-decoration: underline;
}

/* Comment Form */
.comment-respond {
    margin-top: 2rem;
}

.comment-respond .comment-reply-title {
    font-size: 1.3rem;
    color: #fff;
    margin-bottom: 1rem;
}

.comment-respond .comment-notes {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.comment-respond label {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.3rem;
    font-size: 0.95rem;
}

.comment-respond input[type="text"],
.comment-respond input[type="email"],
.comment-respond input[type="url"],
.comment-respond textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    background: rgba(26, 37, 47, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff;
    font-size: 1rem;
    margin-bottom: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.comment-respond input:focus,
.comment-respond textarea:focus {
    border-color: var(--accent-teal);
}

.comment-respond textarea {
    min-height: 150px;
    resize: vertical;
}

.comment-respond .submit {
    padding: 0.8rem 2rem;
    background: var(--accent-teal);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.comment-respond .submit:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.comment-form-cookies-consent {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.comment-form-cookies-consent input[type="checkbox"] {
    width: auto;
    margin: 0;
}

/* ============================================
   BLOG RESPONSIVE
   ============================================ */
@media (max-width: 1023px) {
    .blog-layout {
        grid-template-columns: 1fr;
    }

    .blog-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 10rem 1.5rem 2rem;
        min-height: 30vh;
    }

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

    .single-hero {
        padding: 10rem 1.5rem 2rem;
    }

    .single-nav {
        grid-template-columns: 1fr;
    }

    .comment-list .children {
        padding-left: 1rem;
    }
}

/* Features-Comparison-Tabellen — Blaugrau, harmoniert mit --primary-blue #2C3E50 */
.wp-block-table.features-comparison {
    background: #E2E8F0;
    border: 1px solid #94A3B8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
    margin: 2rem 0;
}

.wp-block-table.features-comparison table {
    width: 100%;
    border-collapse: collapse;
    margin: 0;
    background: transparent;
}

.wp-block-table.features-comparison thead {
    background: linear-gradient(135deg, #CBD5E1 0%, #94A3B8 100%);
    border-bottom: 2px solid #64748B;
}

.wp-block-table.features-comparison thead th {
    padding: 24px 28px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    color: #2C3E50;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: none;
    background: transparent;
}

.wp-block-table.features-comparison thead th:not(:first-child) {
    text-align: center;
}

.wp-block-table.features-comparison thead th:last-child {
    background: rgba(44, 62, 80, 0.12);
    color: #2C3E50;
}

.wp-block-table.features-comparison tbody tr {
    border-bottom: 1px solid #CBD5E1;
    transition: background 0.2s ease;
    background: #F1F5F9;
}

.wp-block-table.features-comparison tbody tr:nth-child(even) {
    background: #E2E8F0;
}

.wp-block-table.features-comparison tbody tr:hover {
    background: #DBE4F0;
}

.wp-block-table.features-comparison tbody tr:last-child {
    border-bottom: none;
}

.wp-block-table.features-comparison tbody td {
    padding: 20px 28px;
    color: #334155;
    vertical-align: middle;
    font-size: 15px;
    border: none;
}

.wp-block-table.features-comparison tbody td:first-child {
    font-weight: 600;
    color: #2C3E50;
}

.wp-block-table.features-comparison tbody td:not(:first-child) {
    text-align: center;
    font-weight: 500;
}

.wp-block-table.features-comparison tbody td:last-child {
    background: rgba(44, 62, 80, 0.05);
    font-weight: 600;
}

.wp-block-table.features-comparison .check-icon {
    color: #059669;
    font-size: 22px;
    font-weight: 700;
}

.wp-block-table.features-comparison .dash-icon {
    color: #94A3B8;
    font-size: 20px;
}

@media (max-width: 768px) {
    .wp-block-table.features-comparison {
        overflow-x: auto;
    }

    .wp-block-table.features-comparison table {
        min-width: 700px;
    }

    .wp-block-table.features-comparison thead th,
    .wp-block-table.features-comparison tbody td {
        padding: 16px 20px;
        font-size: 14px;
    }
}

/* Hardware-Seite (ID 56) — Blaugrau-Style passend zur Editionen-Seite */
body.page-id-56 .pricing-card {
    background: #F1F5F9;
    border: 2px solid #CBD5E1;
    border-radius: 20px;
    color: #334155;
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.08);
}

body.page-id-56 .pricing-card:hover {
    background: #F1F5F9;
    border-color: #2C3E50;
    box-shadow: 0 12px 32px rgba(44, 62, 80, 0.15);
}

body.page-id-56 .pricing-card.featured {
    background: #E2E8F0;
    border: 3px solid #2C3E50;
    box-shadow: 0 8px 24px rgba(44, 62, 80, 0.2);
}

body.page-id-56 .pricing-card.featured:hover {
    background: #E2E8F0;
}

body.page-id-56 .pricing-header h3 {
    color: #101828;
}

body.page-id-56 .pricing-badge {
    background: #CBD5E1;
    color: #2C3E50;
}

body.page-id-56 .pricing-badge.popular {
    background: #2C3E50;
    color: #ffffff;
}

body.page-id-56 .pricing-price {
    border-bottom: 1px solid #CBD5E1;
}

body.page-id-56 .pricing-price .price-amount {
    color: #101828;
}

body.page-id-56 .pricing-price .price-period {
    color: #334155;
}

body.page-id-56 .pricing-features li {
    color: #334155;
    opacity: 1;
    border-bottom: 1px solid #E2E8F0;
}

body.page-id-56 .pricing-features li[style*="border-top"] {
    border-top: 1px solid #CBD5E1 !important;
}

/* GPU-Vergleichstabelle */
body.page-id-56 section table {
    background: #E2E8F0 !important;
    border: 1px solid #94A3B8;
    border-radius: 20px;
    overflow: hidden;
    color: #334155 !important;
}

body.page-id-56 section table thead tr {
    background: linear-gradient(135deg, #CBD5E1 0%, #94A3B8 100%);
    border-bottom: 2px solid #64748B !important;
}

body.page-id-56 section table thead th {
    color: #2C3E50 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 700;
}

body.page-id-56 section table tbody tr {
    border-bottom: 1px solid #CBD5E1 !important;
    background: #F1F5F9;
}

body.page-id-56 section table tbody tr:nth-child(even) {
    background: #E2E8F0;
}

body.page-id-56 section table tbody tr:hover {
    background: #DBE4F0;
}

body.page-id-56 section table tbody td {
    color: #334155 !important;
}

body.page-id-56 section table tbody td[style*="color"] {
    color: #2C3E50 !important;
}

/* Stat-Cards (7B/12B/30B/70B) — mehr Kontrast */
body.page-id-56 .stat-card {
    background: #E2E8F0;
    border: 2px solid #64748B;
    border-radius: 20px;
    color: #1E293B;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
}

body.page-id-56 .stat-card:hover {
    background: #E2E8F0;
    border-color: #2C3E50;
}

body.page-id-56 .stat-number {
    color: #2C3E50;
    font-weight: 800;
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
}

body.page-id-56 .stat-label {
    color: #1E293B;
    opacity: 1;
    font-weight: 500;
}

/* Section-Titel/Subtitel auf Hardware-Seite: voll weiß, kein Opacity-Fade */
body.page-id-56 .section-subtitle {
    opacity: 1;
    color: #ffffff;
    font-weight: 500;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

body.page-id-56 .section-title {
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Feature-Section "Unsere Empfehlung: Mac Mini M4 Pro" — Weiß auf Navy für Kontrast */
body.page-id-56 .feature-text h3 {
    color: #ffffff;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

body.page-id-56 .feature-text p,
body.page-id-56 .feature-list li {
    color: #ffffff;
    opacity: 1;
}

body.page-id-56 .feature-list li strong {
    color: #7BD4D4;
}

body.page-id-56 .feature-text p strong,
body.page-id-56 .feature-text p b {
    color: #7BD4D4;
}

body.page-id-56 .feature-visual span {
    color: #ffffff;
}

/* Arztpraxis-Konfigurationsbox — Blaugrau statt transparent */
body.page-id-56 section.services > .container > div[style*="rgba(90, 110, 127"] {
    background: #E2E8F0 !important;
    border: 2px solid #CBD5E1 !important;
    color: #334155;
}

body.page-id-56 section.services > .container > div[style*="rgba(90, 110, 127"] h3 {
    color: #2C3E50 !important;
}

body.page-id-56 section.services > .container > div[style*="rgba(90, 110, 127"] h4 {
    color: #2C3E50 !important;
}

body.page-id-56 section.services > .container > div[style*="rgba(90, 110, 127"] p,
body.page-id-56 section.services > .container > div[style*="rgba(90, 110, 127"] li {
    color: #334155 !important;
    opacity: 1;
}

body.page-id-56 section.services > .container > div[style*="rgba(90, 110, 127"] div[style*="rgba(255,255,255,0.1)"] {
    background: #F1F5F9 !important;
    border: 1px solid #CBD5E1;
}

/* Section-Titles und -Subtitles */
body.page-id-56 .section-title,
body.page-id-56 .section-subtitle {
    color: #ffffff;
}
/* Menüpunkte KI-Lösungen und Über uns ausblenden (bewusste Inhalts-Entscheidung).
   Header-Sichtbarkeit & -Positionierung steuert jetzt ausschliesslich theme-layout.css. */
.nav-menu a[href*="ki-loesungen"],
.nav-menu a[href*="ueber-uns"],
.mobile-nav-menu a[href*="ki-loesungen"],
.mobile-nav-menu a[href*="ueber-uns"] {
    display: none !important;
}

/* WordPress-Blöcke mit weißem Hintergrund - dunkler Text für Lesbarkeit */
.has-white-background-color,
.has-white-background-color p,
.has-white-background-color h1,
.has-white-background-color h2,
.has-white-background-color h3,
.has-white-background-color h4,
.has-white-background-color h5,
.has-white-background-color h6,
.has-white-background-color li,
.has-white-background-color span,
.has-white-background-color strong,
.has-white-background-color em {
    color: #2C3E50 !important;
}

/* Sicherstellen dass Links in weißen Boxen sichtbar sind */
.has-white-background-color a {
    color: #178687 !important;
}

.has-white-background-color a:hover {
    color: #147273 !important;
}

/* WordPress-Blöcke mit light-gray Hintergrund - dunkler Text für Lesbarkeit */
.has-light-gray-background-color,
.has-light-gray-background-color p,
.has-light-gray-background-color h1,
.has-light-gray-background-color h2,
.has-light-gray-background-color h3,
.has-light-gray-background-color h4,
.has-light-gray-background-color h5,
.has-light-gray-background-color h6,
.has-light-gray-background-color li,
.has-light-gray-background-color span,
.has-light-gray-background-color strong,
.has-light-gray-background-color em {
    color: #2C3E50 !important;
}

.has-light-gray-background-color a {
    color: #178687 !important;
}

.has-light-gray-background-color a:hover {
    color: #147273 !important;
}
