/*
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: #1ABC9C;
    --text-dark: #1A252F;
    --text-white: #ffffff;
    --text-muted: #B0BEC5;
    --bg-light: #2C3E50;
    --border-color: rgba(44, 62, 80, 0.15);
    --link-accent: #1ABC9C;
}

* {
    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 {
    height: 100%;
    width: auto;
    max-height: none;
    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: 969px) {
    .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: 968px) {
    .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-btn {
    background: rgba(255, 255, 255, 0.1);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: var(--text-white);
    font-size: 1.3rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.info-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
}

/* Info Dropdown */
.info-dropdown {
    position: fixed;
    top: 200px;
    right: 2rem;
    width: 400px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(52, 73, 94, 0.3);
    padding: 2.5rem;
    z-index: 2000;
    display: none;
    animation: slideDown 0.3s ease;
}

.info-dropdown.active {
    display: block;
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.info-dropdown h3 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    border-bottom: 2px solid var(--primary-blue);
    padding-bottom: 0.5rem;
}

.info-dropdown h4 {
    color: var(--dark-blue);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.info-dropdown p {
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.info-dropdown ul {
    list-style: none;
    padding: 0;
}

.info-dropdown ul li {
    padding: 0.3rem 0;
    color: var(--text-dark);
}

.info-dropdown ul li::before {
    content: "\2713 ";
    color: var(--light-blue);
    font-weight: bold;
    margin-right: 0.5rem;
}

.info-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.info-close:hover {
    color: var(--primary-blue);
}

/* Search Input */
.search-input-container {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    border-color: var(--primary-blue);
}

.search-submit {
    padding: 0.8rem 1.5rem;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-submit:hover {
    background: var(--dark-blue);
    transform: translateY(-2px);
}

.search-results {
    max-height: 400px;
    overflow-y: auto;
}

.quick-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.quick-link {
    padding: 0.8rem;
    background: var(--bg-light);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
    font-weight: 500;
}

.quick-link:hover {
    background: var(--primary-blue);
    transform: translateY(-2px);
    color: white;
}

.popular-searches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.tag-btn {
    padding: 0.5rem 1rem;
    background: white;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

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

.search-result-item {
    padding: 0.8rem;
    margin: 0.5rem 0;
    background: var(--bg-light);
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: var(--primary-blue);
    color: white;
}

.search-result-item h5 {
    margin-bottom: 0.3rem;
    color: inherit;
}

.search-result-item p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

.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: linear-gradient(135deg, rgba(26, 188, 156, 0.08) 0%, rgba(26, 188, 156, 0.03) 100%);
    border-top: 2px solid rgba(26, 188, 156, 0.2);
    border-bottom: 2px solid rgba(26, 188, 156, 0.2);
    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;
}

/* ============================================
   CHATBOT
   ============================================ */
.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

.chatbot-toggle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.9);
    border: 3px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.chatbot-toggle:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(44, 62, 80, 1);
}

.chatbot-toggle.active {
    background: rgba(44, 62, 80, 1);
    border-color: rgba(255, 255, 255, 0.6);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.chatbot-window {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 380px;
    height: 550px;
    background: white;
    border-radius: 28px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    border: 3px solid rgba(52, 73, 94, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
}

.chatbot-window.active {
    display: flex;
}

.chatbot-header {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.chatbot-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.chat-message {
    display: flex;
    gap: 0.8rem;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.chat-message.bot {
    align-self: flex-start;
}

.chat-message.user {
    align-self: flex-end;
    flex-direction: row-reverse;
}

.message-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}

.bot .message-avatar {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--light-blue) 100%);
    color: white;
}

.user .message-avatar {
    background: var(--accent-blue);
    color: white;
}

.message-bubble {
    max-width: 70%;
    padding: 0.8rem 1rem;
    border-radius: 12px;
    line-height: 1.5;
    font-size: 0.95rem;
}

.bot .message-bubble {
    background: white;
    color: var(--text-dark);
    border: 1px solid var(--border-color);
}

.user .message-bubble {
    background: var(--accent-blue);
    color: white;
}

.chatbot-input-area {
    padding: 1rem;
    background: white;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 0.8rem;
}

.chatbot-input {
    flex: 1;
    padding: 0.8rem;
    border: 1px solid var(--border-color);
    border-radius: 24px;
    font-size: 0.95rem;
    outline: none;
}

.chatbot-input:focus {
    border-color: var(--primary-blue);
}

.chatbot-send-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--primary-blue);
    border: none;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chatbot-send-btn:hover {
    background: var(--light-blue);
    transform: scale(1.1);
}

/* ============================================
   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: 968px) {
    .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;
    }

    .chatbot-window {
        width: 100%;
        height: 100%;
        bottom: 0;
        right: 0;
        border-radius: 0;
    }
}

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

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

    .logo img {
        height: 85px;
        max-height: 85px;
        padding: 4px;
    }
}

/* ============================================
   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 {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: rgba(26, 37, 47, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.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: 992px) {
    .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(26, 188, 156, 0.15);
    color: var(--accent-teal);
    border-color: rgba(26, 188, 156, 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(26, 188, 156, 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(26, 188, 156, 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: 992px) {
    .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;
}

/* ============================================
   HOMEPAGE PROFESSIONAL DESIGN
   ============================================ */

/* Hero Visual Section */
.hero-visual {
    padding: 60px 20px;
    background: linear-gradient(135deg, #0a1628 0%, #1a2744 100%);
}

.hero-visual img {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
}

/* Trust Section - Professional Cards */
.trust-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.08) 0%, rgba(26, 188, 156, 0.03) 100%);
    border-top: 2px solid rgba(26, 188, 156, 0.2);
    border-bottom: 2px solid rgba(26, 188, 156, 0.2);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.trust-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(26, 188, 156, 0.3);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.trust-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(26, 188, 156, 0.2);
    border-color: rgba(26, 188, 156, 0.5);
    background: rgba(255, 255, 255, 0.08);
}

.trust-card h3 {
    color: #1ABC9C;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    line-height: 1.3;
}

.trust-card p {
    color: #B0BEC5;
    font-size: 1rem;
    line-height: 1.6;
}

/* Mission Statement */
.mission-statement {
    padding: 100px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.15) 0%, rgba(26, 188, 156, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background effect - IDENTICAL to Fleet Navigator Light */
.mission-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

.mission-statement h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.mission-lead {
    font-size: 1.3rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
    color: #B0BEC5;
}

/* Architecture Argument Section */
.architecture-argument {
    padding: 80px 20px;
    background: rgba(0, 0, 0, 0.2);
}

.architecture-argument h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.argument-block {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #1ABC9C;
    border-radius: 8px;
}

.argument-block h3 {
    color: #1ABC9C;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.argument-block p {
    color: #B0BEC5;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Path Cards Section */
.path-cards {
    padding: 80px 20px;
}

.path-cards h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.path-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

.path-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 188, 156, 0.2);
    border-color: rgba(26, 188, 156, 0.4);
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.08) 0%, rgba(26, 188, 156, 0.03) 100%);
}

.path-card h3 {
    color: #1ABC9C;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.card-subtitle {
    color: #7BD4D4;
    font-size: 0.95rem;
    margin-bottom: 18px;
    font-style: italic;
}

.card-description {
    color: #B0BEC5;
    line-height: 1.7;
    margin-bottom: 25px;
    font-size: 1rem;
}

.card-link {
    display: inline-block;
    color: #1ABC9C;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    border-bottom: 2px solid transparent;
}

.card-link:hover {
    color: #7BD4D4;
    border-bottom-color: #7BD4D4;
    transform: translateX(5px);
}

/* Current Status Section */
.current-status {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.current-status h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #ffffff;
}

.status-block {
    max-width: 900px;
    margin: 0 auto 35px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.status-block h3 {
    color: #1ABC9C;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.status-block p {
    color: #B0BEC5;
    line-height: 1.7;
    font-size: 1.05rem;
}

.status-actions {
    text-align: center;
    margin-top: 40px;
}

.status-cta {
    display: inline-block;
    background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-right: 20px;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

.status-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 188, 156, 0.4);
    background: linear-gradient(135deg, #16A085 0%, #1ABC9C 100%);
}

.status-link {
    display: inline-block;
    color: #1ABC9C;
    padding: 16px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    border: 2px solid #1ABC9C;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.status-link:hover {
    background: rgba(26, 188, 156, 0.1);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 768px) {
    .mission-statement h1 {
        font-size: 2rem;
    }
    
    .mission-lead {
        font-size: 1.1rem;
    }
    
    .trust-grid,
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .architecture-argument h2,
    .path-cards h2,
    .current-status h2 {
        font-size: 1.8rem;
    }
    
    .status-cta {
        display: block;
        margin: 0 0 15px 0;
    }
    
    .status-link {
        display: block;
    }
}

/* ============================================
   FLEET NAVIGATOR LIGHT - SPECIAL CTA
   ============================================ */

.light-cta-section {
    padding: 60px 20px;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.15) 0%, rgba(26, 188, 156, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background effect */
.light-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.light-cta-box {
    max-width: 800px;
    margin: 0 auto;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.12) 0%, rgba(26, 188, 156, 0.06) 100%);
    border: 2px solid rgba(26, 188, 156, 0.4);
    border-radius: 20px;
    padding: 50px 40px;
    position: relative;
    box-shadow: 0 10px 50px rgba(26, 188, 156, 0.3),
                0 0 100px rgba(26, 188, 156, 0.1) inset;
    animation: box-glow 3s ease-in-out infinite;
}

@keyframes box-glow {
    0%, 100% { box-shadow: 0 10px 50px rgba(26, 188, 156, 0.3), 0 0 100px rgba(26, 188, 156, 0.1) inset; }
    50% { box-shadow: 0 15px 60px rgba(26, 188, 156, 0.5), 0 0 120px rgba(26, 188, 156, 0.15) inset; }
}

/* NEU Badge */
.light-cta-badge {
    position: absolute;
    top: -15px;
    right: 40px;
    background: linear-gradient(135deg, #FF6B6B 0%, #FF5252 100%);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 82, 82, 0.4);
    animation: badge-bounce 2s ease-in-out infinite;
    letter-spacing: 1px;
}

@keyframes badge-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.light-cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.light-cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(26, 188, 156, 0.3);
}

.light-highlight {
    color: #1ABC9C;
    font-size: 2.8rem;
    text-shadow: 0 0 20px rgba(26, 188, 156, 0.6);
    animation: text-glow 2s ease-in-out infinite;
}

@keyframes text-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(26, 188, 156, 0.6); }
    50% { text-shadow: 0 0 30px rgba(26, 188, 156, 0.9); }
}

.light-cta-subtitle {
    font-size: 1.3rem;
    color: #B0BEC5;
    margin-bottom: 30px;
    font-weight: 300;
}

.light-cta-features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.light-cta-features li {
    color: #1ABC9C;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Main CTA Button - The Star of the Show */
.light-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    padding: 20px 50px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 8px 30px rgba(26, 188, 156, 0.5),
                0 0 60px rgba(26, 188, 156, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Shimmer effect */
.light-cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

.light-cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(26, 188, 156, 0.7),
                0 0 80px rgba(26, 188, 156, 0.5);
    background: linear-gradient(135deg, #16A085 0%, #1ABC9C 100%);
}

.button-arrow {
    font-size: 1.6rem;
    transition: transform 0.3s ease;
}

.light-cta-button:hover .button-arrow {
    transform: translateX(5px);
}

.light-cta-note {
    margin-top: 20px;
    font-size: 0.95rem;
    color: #7BD4D4;
    font-style: italic;
}

/* Responsive */
@media (max-width: 768px) {
    .light-cta-box {
        padding: 40px 25px;
    }
    
    .light-cta-title {
        font-size: 1.8rem;
    }
    
    .light-highlight {
        font-size: 2rem;
    }
    
    .light-cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .light-cta-button {
        font-size: 1.2rem;
        padding: 18px 40px;
    }
    
    .light-cta-badge {
        right: 20px;
    }
}

/* ============================================
   CROSS-BROWSER & RESPONSIVE FIXES
   ============================================ */

/* Reset für alle Browser */
.light-cta-section,
.light-cta-box,
.light-cta-button,
.trust-section,
.trust-card,
.path-card,
.architecture-argument,
.current-status {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

/* Safari & iOS fixes */
.light-cta-button {
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

/* Animationen für alle Browser */
@-webkit-keyframes pulse-glow {
    0%, 100% { -webkit-transform: scale(1); opacity: 0.5; }
    50% { -webkit-transform: scale(1.1); opacity: 0.8; }
}

@-webkit-keyframes box-glow {
    0%, 100% { box-shadow: 0 10px 50px rgba(26, 188, 156, 0.3), 0 0 100px rgba(26, 188, 156, 0.1) inset; }
    50% { box-shadow: 0 15px 60px rgba(26, 188, 156, 0.5), 0 0 120px rgba(26, 188, 156, 0.15) inset; }
}

@-webkit-keyframes badge-bounce {
    0%, 100% { -webkit-transform: translateY(0); }
    50% { -webkit-transform: translateY(-5px); }
}

@-webkit-keyframes text-glow {
    0%, 100% { text-shadow: 0 0 20px rgba(26, 188, 156, 0.6); }
    50% { text-shadow: 0 0 30px rgba(26, 188, 156, 0.9); }
}

@-webkit-keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

/* Prefix für Safari/Chrome */
.light-cta-section::before {
    -webkit-animation: pulse-glow 4s ease-in-out infinite;
}

.light-cta-box {
    -webkit-animation: box-glow 3s ease-in-out infinite;
}

.light-cta-badge {
    -webkit-animation: badge-bounce 2s ease-in-out infinite;
}

.light-highlight {
    -webkit-animation: text-glow 2s ease-in-out infinite;
}

.light-cta-button::before {
    -webkit-animation: shimmer 3s infinite;
}

/* Trust Cards - Cross Browser */
.trust-card {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.trust-card:hover {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
}

/* Path Cards - Cross Browser */
.path-card {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.path-card:hover {
    -webkit-transform: translateY(-8px);
    -moz-transform: translateY(-8px);
    -ms-transform: translateY(-8px);
    transform: translateY(-8px);
}

/* Button Hover - Cross Browser */
.light-cta-button:hover {
    -webkit-transform: translateY(-5px) scale(1.05);
    -moz-transform: translateY(-5px) scale(1.05);
    -ms-transform: translateY(-5px) scale(1.05);
    transform: translateY(-5px) scale(1.05);
}

/* Grid Support für alte Browser */
@supports not (display: grid) {
    .trust-grid,
    .cards-grid {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    
    .trust-card,
    .path-card {
        -webkit-box-flex: 1;
        -ms-flex: 1 1 280px;
        flex: 1 1 280px;
        margin: 15px;
    }
}

/* Tablet Optimierung (768px - 1024px) */
@media (min-width: 768px) and (max-width: 1024px) {
    .mission-statement h1 {
        font-size: 2.3rem;
    }
    
    .light-cta-title {
        font-size: 2rem;
    }
    
    .light-highlight {
        font-size: 2.3rem;
    }
    
    .trust-grid,
    .cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .light-cta-box {
        padding: 45px 35px;
    }
}

/* Kleine Tablets (600px - 767px) */
@media (min-width: 600px) and (max-width: 767px) {
    .mission-statement h1 {
        font-size: 2rem;
    }
    
    .mission-lead {
        font-size: 1.15rem;
    }
    
    .trust-grid,
    .cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .light-cta-button {
        font-size: 1.15rem;
        padding: 16px 35px;
    }
}

/* Große Handys im Landscape (480px - 599px) */
@media (min-width: 480px) and (max-width: 599px) {
    .mission-statement {
    padding: 100px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.15) 0%, rgba(26, 188, 156, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background effect - IDENTICAL to Fleet Navigator Light */
.mission-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}
    
    .mission-statement h1 {
        font-size: 1.7rem;
    }
    
    .mission-lead {
        font-size: 1.05rem;
    }
    
    .light-cta-title {
        font-size: 1.6rem;
    }
    
    .light-highlight {
        font-size: 1.8rem;
    }
    
    .light-cta-subtitle {
        font-size: 1.1rem;
    }
    
    .light-cta-box {
        padding: 35px 20px;
    }
    
    .trust-section,
    .architecture-argument,
    .path-cards,
    .current-status {
        padding: 60px 15px;
    }
}

/* Kleine Handys (< 480px) */
@media (max-width: 479px) {
    .mission-statement {
    padding: 100px 20px 60px;
    text-align: center;
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.15) 0%, rgba(26, 188, 156, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

/* Animated background effect - IDENTICAL to Fleet Navigator Light */
.mission-statement::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(26, 188, 156, 0.1) 0%, transparent 70%);
    animation: pulse-glow 4s ease-in-out infinite;
}
    
    .mission-statement h1 {
        font-size: 1.5rem;
        line-height: 1.2;
    }
    
    .mission-lead {
        font-size: 1rem;
    }
    
    .light-cta-section {
        padding: 40px 10px;
    }
    
    .light-cta-box {
        padding: 30px 15px;
        border-radius: 15px;
    }
    
    .light-cta-badge {
        font-size: 0.75rem;
        padding: 6px 15px;
        right: 15px;
        top: -12px;
    }
    
    .light-cta-title {
        font-size: 1.4rem;
    }
    
    .light-highlight {
        font-size: 1.6rem;
    }
    
    .light-cta-subtitle {
        font-size: 1rem;
    }
    
    .light-cta-features {
        gap: 10px;
    }
    
    .light-cta-features li {
        font-size: 0.95rem;
    }
    
    .light-cta-button {
        font-size: 1rem;
        padding: 15px 30px;
        width: 100%;
        justify-content: center;
    }
    
    .light-cta-note {
        font-size: 0.85rem;
    }
    
    .trust-section,
    .architecture-argument,
    .path-cards,
    .current-status {
        padding: 50px 10px;
    }
    
    .trust-card,
    .path-card,
    .argument-block,
    .status-block {
        padding: 20px;
    }
    
    .architecture-argument h2,

/* ============================================
   GRÜNE EFFEKTE FÜR WICHTIGE SÄTZE
   ============================================ */

/* Wichtige Wörter/Sätze in allen Seiten */
body:not(.page-id-49) strong,
body:not(.page-id-49) b {
    color: #1ABC9C;
    font-weight: 600;
}

/* Wichtige Listen-Punkte */
body:not(.page-id-49) ul li strong,
body:not(.page-id-49) ol li strong {
    color: #1ABC9C;
}

/* Preise und Zahlen hervorheben */
body:not(.page-id-49) .price,
body:not(.page-id-49) .amount {
    color: #1ABC9C;
    font-weight: 600;
}

/* Marker für Listen */
body:not(.page-id-49) ul li::marker {
    color: #1ABC9C;
}

/* Wichtige Boxen/Hinweise */
body:not(.page-id-49) .highlight,
body:not(.page-id-49) .important {
    border-left: 4px solid #1ABC9C;
    padding-left: 20px;
}

/* ============================================
   EINHEITLICHES DESIGN - ALLE SEITEN
   ============================================ */

/* Alle Seiten (außer Homepage): Gleicher Hintergrund */
body.page-id-50,  /* KI-Lösungen */
body.page-id-51,  /* Pakete */
body.page-id-52,  /* Über uns */
body.page-id-53,  /* Kontakt */
body.page-id-54,  /* Impressum */
body.page-id-55,  /* Datenschutz */
body.page-id-56,  /* Hardware */
body.page-id-122, /* Team */
body.page-id-132, /* Blog */
body.page-id-276  /* Editionen */
{
    background-color: #2C3E50;
}

/* Überschriften - einheitlich grün */
body:not(.page-id-49) h1 {
    color: #1ABC9C;
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
}

body:not(.page-id-49) h2 {
    color: #1ABC9C;
    font-size: 2rem;
    font-weight: 600;
    margin: 40px 0 25px;
}

body:not(.page-id-49) h3 {
    color: #1ABC9C;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 30px 0 20px;
}

/* Paragraphen - einheitlich */
body:not(.page-id-49) p {
    color: #B0BEC5;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Links - einheitlich */
body:not(.page-id-49) a {
    color: #1ABC9C;
    text-decoration: none;
    transition: color 0.3s ease;
}

body:not(.page-id-49) a:hover {
    color: #7BD4D4;
}

/* Listen - einheitlich */
body:not(.page-id-49) ul,
body:not(.page-id-49) ol {
    color: #B0BEC5;
    line-height: 1.8;
}

body:not(.page-id-49) li {
    color: #B0BEC5;
}

/* Tabellen - NICHT ZERSTÖREN, nur verbessern */
body:not(.page-id-49) table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

body:not(.page-id-49) table th {
    background: rgba(26, 188, 156, 0.2);
    color: #1ABC9C;
    padding: 15px;
    font-weight: 600;
    text-align: left;
}

body:not(.page-id-49) table td {
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

body:not(.page-id-49) table tr:hover {
    background: rgba(26, 188, 156, 0.05);
}

/* Buttons - einheitlich */
body:not(.page-id-49) button,
body:not(.page-id-49) .button,
body:not(.page-id-49) input[type="submit"] {
    background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
    color: #ffffff;
    padding: 14px 35px;
    border: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
}

body:not(.page-id-49) button:hover,
body:not(.page-id-49) .button:hover,
body:not(.page-id-49) input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 188, 156, 0.4);
}

/* Formulare - einheitlich */
body:not(.page-id-49) input[type="text"],
body:not(.page-id-49) input[type="email"],
body:not(.page-id-49) input[type="tel"],
body:not(.page-id-49) textarea,
body:not(.page-id-49) select {
    width: 100%;
    padding: 12px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

body:not(.page-id-49) input:focus,
body:not(.page-id-49) textarea:focus {
    outline: none;
    border-color: #1ABC9C;
    box-shadow: 0 0 15px rgba(26, 188, 156, 0.2);
}

/* Content Wrapper - Spacing */
body:not(.page-id-49) .page-content {
    padding-top: 100px;
    min-height: 100vh;
}

body:not(.page-id-49) .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px 80px;
}

/* Responsive */
@media (max-width: 768px) {
    body:not(.page-id-49) .page-content {
        padding-top: 80px;
    }
    
    body:not(.page-id-49) .container {
        padding: 0 20px 60px;
    }
    
    body:not(.page-id-49) h1 {
        font-size: 2rem;
    }
    
    body:not(.page-id-49) h2 {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    body:not(.page-id-49) .page-content {
        padding-top: 70px;
    }
    
    body:not(.page-id-49) .container {
        padding: 0 15px 50px;
    }
    
    body:not(.page-id-49) h1 {
        font-size: 1.7rem;
    }
}

/* ============================================
   EXAKT WIE STARTSEITE - ALLE SEITEN
   ============================================ */

/* Alle Seiten bekommen die GLEICHEN Sektions-Styles wie Homepage */

/* Mission Statement Style für alle H1 */
body:not(.page-id-49) h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
    text-align: center;
    padding: 100px 20px 60px;
}

/* Content Sektionen wie auf Homepage */
body:not(.page-id-49) section,
body:not(.page-id-49) .content-section {
    padding: 80px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Text-Blöcke wie auf Homepage */
body:not(.page-id-49) .entry-content > *,
body:not(.page-id-49) .page-content > * {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

/* Boxen/Cards wie auf Homepage */
body:not(.page-id-49) .content-box,
body:not(.page-id-49) .info-box {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 30px;
    margin: 30px auto;
    max-width: 900px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

/* Argument Blocks wie auf Homepage */
body:not(.page-id-49) .argument-block,
body:not(.page-id-49) .content-block {
    max-width: 900px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.03);
    border-left: 4px solid #1ABC9C;
    border-radius: 8px;
}

body:not(.page-id-49) .argument-block h3,
body:not(.page-id-49) .content-block h3 {
    color: #1ABC9C;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

body:not(.page-id-49) .argument-block p,
body:not(.page-id-49) .content-block p {
    color: #B0BEC5;
    line-height: 1.8;
    font-size: 1.05rem;
}

/* Grid Layouts wie auf Homepage */
body:not(.page-id-49) .grid-2,
body:not(.page-id-49) .grid-3 {
    display: grid;
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

body:not(.page-id-49) .grid-2 {
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
}

body:not(.page-id-49) .grid-3 {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

/* Cards wie Path-Cards auf Homepage */
body:not(.page-id-49) .card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0.02) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 35px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
}

body:not(.page-id-49) .card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(26, 188, 156, 0.2);
    border-color: rgba(26, 188, 156, 0.4);
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.08) 0%, rgba(26, 188, 156, 0.03) 100%);
}

body:not(.page-id-49) .card h3 {
    color: #1ABC9C;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
}

body:not(.page-id-49) .card p {
    color: #B0BEC5;
    line-height: 1.7;
    font-size: 1rem;
}

/* Status Section Style für alle Seiten */
body:not(.page-id-49) .status-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
}

body:not(.page-id-49) .status-block {
    max-width: 900px;
    margin: 0 auto 35px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

body:not(.page-id-49) .status-block h3 {
    color: #1ABC9C;
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

body:not(.page-id-49) .status-block p {
    color: #B0BEC5;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* CTA Buttons wie auf Homepage */
body:not(.page-id-49) .cta-button,
body:not(.page-id-49) .status-cta {
    display: inline-block;
    background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%);
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 188, 156, 0.3);
    text-align: center;
}

body:not(.page-id-49) .cta-button:hover,
body:not(.page-id-49) .status-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 188, 156, 0.4);
    background: linear-gradient(135deg, #16A085 0%, #1ABC9C 100%);
    color: #ffffff;
}

/* Responsive wie Homepage */
@media (max-width: 768px) {
    body:not(.page-id-49) h1 {
        font-size: 2rem;
        padding: 80px 20px 40px;
    }
    
    body:not(.page-id-49) section,
    body:not(.page-id-49) .content-section {
        padding: 60px 15px;
    }
    
    body:not(.page-id-49) .grid-2,
    body:not(.page-id-49) .grid-3 {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    body:not(.page-id-49) .card,
    body:not(.page-id-49) .argument-block,
    body:not(.page-id-49) .status-block {
        padding: 25px;
    }
}

@media (max-width: 480px) {
    body:not(.page-id-49) h1 {
        font-size: 1.7rem;
        padding: 70px 15px 30px;
    }
    
    body:not(.page-id-49) section,
    body:not(.page-id-49) .content-section {
        padding: 50px 10px;
    }
    
    body:not(.page-id-49) .card,
    body:not(.page-id-49) .argument-block,
    body:not(.page-id-49) .status-block {
        padding: 20px;
    }
}

/* ============================================
   WICHTIG: INLINE-STYLES ÜBERSCHREIBEN
   ============================================ */

/* ALLE Inline-Styles überschreiben - Design wie Startseite erzwingen */
body:not(.page-id-49) section[style],
body:not(.page-id-49) div[style],
body:not(.page-id-49) p[style],
body:not(.page-id-49) h1[style],
body:not(.page-id-49) h2[style],
body:not(.page-id-49) h3[style] {
    background: transparent !important;
    padding: 40px 20px !important;
}

/* Hero-Sektionen wie auf Startseite */
body:not(.page-id-49) .hero,
body:not(.page-id-49) section.hero {
    background: transparent !important;
    min-height: auto !important;
    padding: 100px 20px 60px !important;
}

/* Services/Content Sektionen */
body:not(.page-id-49) .services,
body:not(.page-id-49) section.services {
    padding: 60px 20px !important;
    background: transparent !important;
}

/* Feature Sektionen */
body:not(.page-id-49) .feature-section,
body:not(.page-id-49) section.feature-section {
    padding: 60px 20px !important;
    background: rgba(0, 0, 0, 0.2) !important;
}

/* Alle H1 gleich wie Startseite */
body:not(.page-id-49) h1 {
    font-size: 2.8rem !important;
    color: #ffffff !important;
    text-align: center !important;
    margin-bottom: 30px !important;
}

/* Alle H2 gleich wie Startseite */
body:not(.page-id-49) h2,
body:not(.page-id-49) .section-title {
    font-size: 2.2rem !important;
    color: #1ABC9C !important;
    text-align: center !important;
    margin-bottom: 30px !important;
}

/* Untertitel */
body:not(.page-id-49) .section-subtitle {
    font-size: 1.3rem !important;
    color: #B0BEC5 !important;
    text-align: center !important;
    margin-bottom: 40px !important;
}

/* Container maximal 1200px wie Startseite */
body:not(.page-id-49) .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
}

/* ============================================
   MODERN HEADER OVERRIDE STYLES
   Added by Claude - May 2026
   ============================================ */

/* Ensure modern header styles take precedence */
body {
    padding-top: 0 !important;
}

/* Hide old header elements if they exist */
header:not(.header) {
    display: none !important;
}

/* Old search dropdown hide */
.info-dropdown {
    display: none !important;
}

/* Logo Fix für bessere Darstellung */
.logo-svg,
.logo img {
    height: 70px !important;
    width: auto !important;
    max-width: 260px !important;
    object-fit: contain !important;
    display: block !important;
}

.header.is-sticky .logo-svg,
.header.is-sticky .logo img {
    height: 55px !important;
}

/* Logo Container */
.logo {
    display: flex !important;
    align-items: center !important;
    min-width: 200px !important;
}

.logo a {
    display: block !important;
}

/* ============================================
   GRÜNE HOVER-EFFEKTE für Navigation
   ============================================ */

/* Navigation Links - GRÜN statt blau */
.nav-link:hover {
    color: #16A085 !important;
    background: rgba(26, 188, 156, 0.1) !important;
}

.nav-link.active {
    color: #16A085 !important;
}

.nav-indicator {
    background: #16A085 !important;
}

/* Search Toggle Hover - GRÜN */
.search-toggle:hover {
    background: rgba(26, 188, 156, 0.1) !important;
    color: #16A085 !important;
}

/* CTA Button - GRÜN anpassen */
.btn-primary {
    background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%) !important;
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3) !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #16A085 0%, #138D75 100%) !important;
    box-shadow: 0 8px 20px rgba(26, 188, 156, 0.4) !important;
}

/* Mobile Menu Links Hover - GRÜN */
.mobile-nav-link:hover,
.mobile-nav-link.active {
    background: rgba(26, 188, 156, 0.1) !important;
    color: #16A085 !important;
}

/* Dropdown Links Hover - GRÜN */
.dropdown-link:hover {
    background: rgba(26, 188, 156, 0.05) !important;
}

/* Search Submit Button - GRÜN */
.search-submit {
    background: #16A085 !important;
}

.search-submit:hover {
    background: #138D75 !important;
}

/* Suggestion Tags - GRÜN */
.suggestion-tag:hover {
    background: rgba(26, 188, 156, 0.2) !important;
}

/* ============================================
   PROFESSIONELLES SUCH-OVERLAY
   ============================================ */

/* Such-Overlay Hintergrund - dunkler und klarer */
.search-overlay {
    background: rgba(15, 23, 42, 0.97) !important;
    backdrop-filter: blur(12px) !important;
}

/* Such-Input - größer und klarer */
.search-overlay .search-input {
    font-size: 28px !important;
    padding: 24px 70px 24px 28px !important;
    border-radius: 16px !important;
    border: 2px solid rgba(22, 160, 133, 0.3) !important;
    background: #FFFFFF !important;
    color: #1E293B !important;
    font-weight: 500 !important;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

.search-overlay .search-input:focus {
    border-color: #16A085 !important;
    box-shadow: 0 20px 60px rgba(22, 160, 133, 0.4) !important;
    outline: none !important;
}

.search-overlay .search-input::placeholder {
    color: #94A3B8 !important;
    font-weight: 400 !important;
}

/* Such-Button - professioneller */
.search-overlay .search-submit {
    width: 54px !important;
    height: 54px !important;
    right: 16px !important;
    background: #16A085 !important;
    border-radius: 12px !important;
    transition: all 0.3s ease !important;
}

.search-overlay .search-submit:hover {
    background: #138D75 !important;
    transform: translateY(-50%) scale(1.08) !important;
}

/* Schließen-Button - professioneller */
.search-overlay .search-close {
    width: 50px !important;
    height: 50px !important;
    background: rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    color: #FFFFFF !important;
    transition: all 0.3s ease !important;
}

.search-overlay .search-close:hover {
    background: rgba(255, 255, 255, 0.25) !important;
    transform: rotate(90deg) !important;
}

/* Vorschläge - professioneller */
.search-suggestions {
    margin-top: 40px !important;
}

.search-suggestions .suggestions-title {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: rgba(255, 255, 255, 0.9) !important;
    margin-bottom: 16px !important;
    letter-spacing: 0.5px !important;
}

.search-suggestions .suggestion-tags {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
}

.search-suggestions .suggestion-tag {
    padding: 12px 24px !important;
    background: rgba(255, 255, 255, 0.12) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 24px !important;
    font-size: 15px !important;
    font-weight: 500 !important;
    color: #FFFFFF !important;
    transition: all 0.3s ease !important;
    backdrop-filter: blur(10px) !important;
}

.search-suggestions .suggestion-tag:hover {
    background: rgba(22, 160, 133, 0.3) !important;
    border-color: #16A085 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 20px rgba(22, 160, 133, 0.3) !important;
}
/* Such-Button ganz rechts in der Ecke prominent machen */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: auto;
}

.search-toggle {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(26, 188, 156, 0.1);
    border: 2px solid rgba(26, 188, 156, 0.3);
    color: #1ABC9C;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(26, 188, 156, 0.2);
}

.search-toggle:hover {
    background: rgba(26, 188, 156, 0.2);
    border-color: #1ABC9C;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3);
}

.search-toggle svg {
    width: 24px;
    height: 24px;
}
/* ============================================
   HEADER-LAYOUT (vom Customizer gesteuert)
   ============================================
   Body-Klassen werden in functions.php gesetzt:
   - header-width-{full|container}
   - header-logo-{left|center|right}
   - header-menu-{left|center|right}
*/

/* Header-Breite: volle Bildschirmbreite (Standard) */
body.header-width-full .header > .container,
body.header-width-full .header .container {
    max-width: 100% !important;
    width: 100% !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    margin: 0 !important;
}

/* Header-Breite: zentrierter Container (1200px max) */
body.header-width-container .header > .container,
body.header-width-container .header .container {
    max-width: 1200px !important;
    width: 100% !important;
    padding-left: 2rem !important;
    padding-right: 2rem !important;
    margin: 0 auto !important;
}

/* Header-Content als 3-Spalten-Grid (links | mitte | rechts) */
.header .header-content {
    display: grid !important;
    grid-template-columns: 1fr 1fr 1fr !important;
    align-items: center !important;
    gap: 1rem !important;
    width: 100% !important;
}

/* Logo-Position */
body.header-logo-left .header .logo    { grid-column: 1 !important; justify-self: start !important; }
body.header-logo-center .header .logo  { grid-column: 2 !important; justify-self: center !important; }
body.header-logo-right .header .logo   { grid-column: 3 !important; justify-self: end !important; }

/* Menü-Position */
body.header-menu-left .header .desktop-nav   { grid-column: 1 !important; justify-self: start !important; }
body.header-menu-center .header .desktop-nav { grid-column: 2 !important; justify-self: center !important; }
body.header-menu-right .header .desktop-nav  { grid-column: 3 !important; justify-self: end !important; }

/* nav-menu interne Anordnung */
.header .nav-menu {
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Auf Desktop ≥1024px: header-actions verstecken (nur Mobile-Toggle drin, der hier nicht gebraucht wird) */
@media (min-width: 1024px) {
    .header .header-actions {
        display: none !important;
    }
}

/* Mobile: header-actions sichtbar, Grid fällt auf zwei Spalten zurück */
@media (max-width: 1023px) {
    .header .header-content {
        grid-template-columns: auto 1fr auto !important;
    }
    body.header-logo-left .header .logo,
    body.header-logo-center .header .logo,
    body.header-logo-right .header .logo {
        grid-column: 1 !important;
        justify-self: start !important;
    }
    .header .desktop-nav {
        display: none !important;
    }
    .header .header-actions {
        grid-column: 3 !important;
        justify-self: end !important;
    }
}

/* Lupe als letztes Menü-Element (gleicher Style wie nav-links) */
.nav-item.nav-item-search {
    display: flex !important;
    align-items: center !important;
    list-style: none;
}

.nav-search-toggle {
    background: transparent !important;
    border: none !important;
    padding: 0.5rem !important;
    margin: 0 !important;
    cursor: pointer !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    height: auto !important;
    transition: color 0.3s ease, transform 0.2s ease !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-search-toggle:hover,
.nav-search-toggle:focus {
    color: var(--accent-teal) !important;
    transform: scale(1.1) !important;
    outline: none !important;
    background: transparent !important;
    box-shadow: none !important;
    border: none !important;
}

.nav-search-toggle svg {
    width: 22px !important;
    height: 22px !important;
    display: block !important;
}

.search-toggle {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background: rgba(26, 188, 156, 0.1) !important;
    border: 2px solid rgba(26, 188, 156, 0.3) !important;
    color: #1ABC9C !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-shadow: 0 2px 8px rgba(26, 188, 156, 0.2) !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.search-toggle:hover {
    background: rgba(26, 188, 156, 0.2) !important;
    border-color: #1ABC9C !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3) !important;
}

.search-toggle svg {
    width: 24px !important;
    height: 24px !important;
}
/* ========================================
   GLOBALES DESIGN FÜR ALLE SEITEN
   ======================================== */

/* Globaler Hintergrund */
body {
    background: #1e293b !important;
    color: #ffffff !important;
    min-height: 100vh;
}

/* Alle Hauptcontainer */
main,
.homepage-main,
.page-content,
section {
    background: #1e293b !important;
}

/* Container Spacing */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 4rem 0;
}

/* Überschriften einheitlich */
h1, .section-title {
    color: #ffffff !important;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

h2 {
    color: #ffffff !important;
    font-weight: 600;
    margin-bottom: 1rem;
}

h3 {
    color: #ffffff !important;
    font-weight: 600;
}

/* Text */
p {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8;
}

/* Links */
a {
    color: #1ABC9C;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #16A085;
}

/* Karten - einheitliches Design */
.card,
.service-card,
.team-card,
.trust-card,
.path-card,
.pricing-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
}

.card:hover,
.service-card:hover,
.team-card:hover,
.trust-card:hover,
.path-card:hover,
.pricing-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(26, 188, 156, 0.3) !important;
    transform: translateY(-4px) !important;
}

/* Buttons einheitlich */
.btn,
.button,
.wp-block-button__link,
.cta-button {
    background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%) !important;
    color: #ffffff !important;
    padding: 0.8rem 1.5rem !important;
    border-radius: 8px !important;
    border: none !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    display: inline-block !important;
}

.btn:hover,
.button:hover,
.wp-block-button__link:hover,
.cta-button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 4px 12px rgba(26, 188, 156, 0.3) !important;
}

/* Grid Layouts einheitlich */
.grid,
.cards-grid,
.team-grid,
.trust-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Footer einheitlich */
footer {
    background: #0f172a !important;
    color: rgba(255, 255, 255, 0.8) !important;
    padding: 3rem 0 1rem !important;
    margin-top: 4rem !important;
}
/* ========================================
   FIX: LESBARKEIT UND PROFESSIONELLES DESIGN
   ======================================== */

/* WordPress Content Blocks - bessere Lesbarkeit */
.wp-block-heading,
.entry-content h1,
.entry-content h2,
.entry-content h3 {
    color: #ffffff !important;
    font-weight: 700 !important;
    margin-top: 2rem !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.3 !important;
}

.entry-content h1 {
    font-size: 2.5rem !important;
}

.entry-content h2 {
    font-size: 2rem !important;
}

.entry-content h3 {
    font-size: 1.5rem !important;
}

/* WordPress Paragraph Text */
.entry-content p,
.wp-block-paragraph {
    color: rgba(255, 255, 255, 0.92) !important;
    line-height: 1.8 !important;
    margin-bottom: 1.2rem !important;
    font-size: 1.05rem !important;
}

/* WordPress Tables - bessere Lesbarkeit */
.wp-block-table table,
.features-comparison table,
.entry-content table {
    width: 100% !important;
    background: rgba(255, 255, 255, 0.03) !important;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    margin: 2rem 0 !important;
}

.wp-block-table thead tr,
.features-comparison thead tr,
.entry-content table thead tr {
    background: rgba(26, 188, 156, 0.15) !important;
}

.wp-block-table th,
.features-comparison th,
.entry-content table th {
    color: #ffffff !important;
    font-weight: 700 !important;
    padding: 1.2rem 1rem !important;
    text-align: left !important;
    border-bottom: 2px solid rgba(255, 255, 255, 0.2) !important;
    font-size: 1rem !important;
}

.wp-block-table td,
.features-comparison td,
.entry-content table td {
    color: rgba(255, 255, 255, 0.9) !important;
    padding: 1rem !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
    font-size: 0.95rem !important;
}

.wp-block-table tbody tr:hover,
.features-comparison tbody tr:hover,
.entry-content table tbody tr:hover {
    background: rgba(26, 188, 156, 0.08) !important;
}

/* WordPress Lists */
.entry-content ul,
.entry-content ol,
.wp-block-list {
    color: rgba(255, 255, 255, 0.9) !important;
    margin: 1.5rem 0 !important;
    padding-left: 2rem !important;
}

.entry-content li,
.wp-block-list li {
    margin-bottom: 0.8rem !important;
    line-height: 1.8 !important;
}

/* WordPress Blockquotes */
.wp-block-quote,
.entry-content blockquote {
    border-left: 4px solid #1ABC9C !important;
    padding-left: 1.5rem !important;
    margin: 2rem 0 !important;
    font-style: italic !important;
    color: rgba(255, 255, 255, 0.85) !important;
    background: rgba(26, 188, 156, 0.05) !important;
    padding: 1.5rem !important;
    border-radius: 8px !important;
}

/* Content Spacing - mehr Luft zwischen Elementen */
.entry-content > *,
.page-content > * {
    margin-bottom: 1.5rem !important;
}

.entry-content section,
.page-content section {
    margin-bottom: 4rem !important;
    padding-bottom: 2rem !important;
}

/* Pricing Cards auf dunklem Hintergrund */
.pricing-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    color: #ffffff !important;
}

.pricing-card .card-title,
.pricing-card .price-amount {
    color: #ffffff !important;
}

.pricing-card .card-subtitle,
.pricing-card .price-period,
.pricing-card .price-onetime {
    color: rgba(255, 255, 255, 0.8) !important;
}

.pricing-card .card-price {
    background: rgba(26, 188, 156, 0.1) !important;
    border-color: rgba(26, 188, 156, 0.3) !important;
}

/* Separator */
.wp-block-separator {
    border-color: rgba(255, 255, 255, 0.2) !important;
    margin: 3rem 0 !important;
}

/* Bessere Link-Sichtbarkeit */
.entry-content a,
.page-content a {
    color: #1ABC9C !important;
    text-decoration: underline !important;
    font-weight: 500 !important;
}

.entry-content a:hover,
.page-content a:hover {
    color: #16A085 !important;
}

/* Page Title Styling */
.entry-title,
.page-title {
    color: #ffffff !important;
    font-size: 3rem !important;
    font-weight: 700 !important;
    margin-bottom: 2rem !important;
    text-align: center !important;
}

/* Container Padding */
.entry-content,
.page-content {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 4rem 2rem !important;
}
/* ========================================
   FIX: KI-LÖSUNGEN SEITE LESBARKEIT
   ======================================== */

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(26, 188, 156, 0.08) 0%, rgba(26, 188, 156, 0.03) 100%) !important;
    border-top: 2px solid rgba(26, 188, 156, 0.2) !important;
    border-bottom: 2px solid rgba(26, 188, 156, 0.2) !important;
    padding: 8rem 2rem 4rem 2rem !important;
}

.hero h1,
.hero-content h1 {
    color: #1ABC9C !important;
    font-size: clamp(2rem, 5vw, 3.5rem) !important;
    font-weight: 700 !important;
    margin-bottom: 1.5rem !important;
    line-height: 1.2 !important;
}

.hero p,
.hero-content p {
    color: rgba(26, 188, 156, 0.95) !important;
    font-size: clamp(1.1rem, 2.5vw, 1.3rem) !important;
    line-height: 1.8 !important;
    max-width: 900px !important;
    margin: 0 auto !important;
}

/* Feature Section */
.feature-section {
    background: #1e293b !important;
    padding: 4rem 2rem !important;
}

.feature-section h2,
.feature-section h3 {
    color: #ffffff !important;
    margin-bottom: 1.5rem !important;
}

.feature-section p {
    color: rgba(255, 255, 255, 0.92) !important;
    line-height: 1.8 !important;
    font-size: 1.1rem !important;
}

.feature-text p {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* Services Section */
.services {
    background: #1e293b !important;
    padding: 4rem 2rem !important;
}

.services .section-title {
    color: #ffffff !important;
    font-size: 2.5rem !important;
    margin-bottom: 1rem !important;
}

.services .section-subtitle {
    color: rgba(255, 255, 255, 0.85) !important;
    font-size: 1.2rem !important;
    margin-bottom: 3rem !important;
}

/* Service Cards */
.service-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 2px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 16px !important;
    padding: 2rem !important;
    transition: all 0.3s ease !important;
}

.service-card:hover {
    background: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(26, 188, 156, 0.4) !important;
    transform: translateY(-5px) !important;
}

.service-card h3 {
    color: #ffffff !important;
    font-size: 1.5rem !important;
    font-weight: 600 !important;
    margin: 1rem 0 1rem 0 !important;
}

.service-card p {
    color: rgba(255, 255, 255, 0.9) !important;
    line-height: 1.8 !important;
    font-size: 1.05rem !important;
}

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

/* Feature Lists */
.feature-list {
    list-style: none !important;
    padding-left: 0 !important;
    margin-top: 1.5rem !important;
}

.feature-list li {
    color: rgba(255, 255, 255, 0.92) !important;
    padding: 0.8rem 0 0.8rem 2rem !important;
    position: relative !important;
    line-height: 1.7 !important;
    font-size: 1.05rem !important;
}

.feature-list li::before {
    content: "✓" !important;
    position: absolute !important;
    left: 0 !important;
    color: #1ABC9C !important;
    font-weight: bold !important;
    font-size: 1.2rem !important;
}

.feature-list li strong {
    color: #ffffff !important;
    font-weight: 600 !important;
}

/* Services Grid */
.services-grid {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 2rem !important;
}

/* CTA Buttons */
.cta-buttons {
    display: flex !important;
    gap: 1.5rem !important;
    justify-content: center !important;
    flex-wrap: wrap !important;
}

.btn,
.cta-buttons .btn {
    background: linear-gradient(135deg, #1ABC9C 0%, #16A085 100%) !important;
    color: #ffffff !important;
    padding: 1rem 2rem !important;
    border-radius: 8px !important;
    font-weight: 600 !important;
    font-size: 1.1rem !important;
    text-decoration: none !important;
    display: inline-block !important;
    transition: all 0.3s ease !important;
    border: none !important;
}

.btn:hover,
.cta-buttons .btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 6px 20px rgba(26, 188, 156, 0.4) !important;
}

.btn.secondary {
    background: rgba(255, 255, 255, 0.1) !important;
    border: 2px solid rgba(255, 255, 255, 0.3) !important;
}

.btn.secondary:hover {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.5) !important;
}

/* Feature Visual */
.feature-visual {
    font-size: 6rem !important;
    text-align: center !important;
    margin-bottom: 2rem !important;
}

/* Feature Content Grid */
.feature-content {
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)) !important;
    gap: 3rem !important;
    align-items: center !important;
}

/* Container */
.services .container,
.feature-section .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 2rem !important;
}

/* Alle Paragraphen in der Page */
body .services p,
body .feature-section p,
body .hero p {
    color: rgba(255, 255, 255, 0.92) !important;
}

/* Responsive */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr !important;
    }
    
    .hero {
        padding: 6rem 1.5rem 3rem 1.5rem !important;
    }
    
    .cta-buttons {
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .btn {
        width: 100% !important;
        max-width: 300px !important;
    }
}
