/* Home Page - Premium Design orientiert an Vision-Seite */
/* Änderungsprotokoll: 2026-07-20 | subagent-create-screen | @skill-css-rules, @skill-change-provenance | Migration screen-home/screen-home.css */

/* KI-Suche Premium-Suchbox - visueller Hauptfokus der Startseite */
/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | overflow visible damit Suggest-Dropdown nicht geclippt wird */
.home-search-box {
    margin-bottom: 40px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 10;
}

.home-search-box-inner {
    background: linear-gradient(135deg, var(--color-brand-primary) 0%, var(--color-brand-secondary) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow:
        0 0 30px rgba(28, 119, 166, 0.25),
        0 12px 40px rgba(28, 119, 166, 0.2);
    padding: 40px 44px;
    position: relative;
    /* Suggest-Dropdown darf unterhalb des Eingabefelds sichtbar sein (overflow: hidden clippt es). */
    overflow: visible;
}

.home-search-box-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    border-radius: 14px 14px 0 0;
    background: linear-gradient(90deg, var(--color-complementary-primary) 0%, var(--color-complementary-secondary) 55%, rgba(255, 255, 255, 0.6) 100%);
    pointer-events: none;
    z-index: 2;
}

.home-search-box-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: inherit;
    background:
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(13, 85, 119, 0.15) 0%, transparent 40%);
    pointer-events: none;
}

/* Änderungsprotokoll: 2026-07-06 | Auto | @skill-css-rules, @skill-change-provenance | Intro-Text volle Breite wie Suchfeld */
.home-search-box-header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
    margin-bottom: 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

/* Änderungsprotokoll: 2026-07-06 | Auto | @skill-css-rules, @skill-change-provenance | Intro-Text umlaufend um KI-Icon (Float links) */
.home-search-intro-block {
    display: block;
    width: 100%;
    overflow: hidden;
}

.home-search-ai-icon-wrapper {
    float: left;
    margin-right: 12px;
    margin-bottom: 4px;
    flex-shrink: 0;
}

/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Helles Icon mit Schatten auf Marken-Gradient */
.home-search-ai-icon {
    width: 44px;
    height: 44px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.28)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.35));
}

/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Intro-Text auf Marken-Gradient hell */
.home-search-intro {
    font-family: var(--font-family-primary);
    font-size: 1.2rem;
    font-weight: 500;
    line-height: 1.65;
    letter-spacing: 0.01em;
    margin: 0;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    color: var(--color-hero-text-light);
    text-align: left;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.15);
}

/* Änderungsprotokoll: 2026-07-06 | subagent-run-ui-phpunit-tests | @skill-css-rules, @skill-change-provenance | KI-Suchformular auf der Home-Seite */
.home-ai-search-form {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.home-search-input-wrapper {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 3;
}

.home-search-input-field-wrapper {
    position: relative;
    width: 100%;
}

/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Suchfeld als heller Kontrast auf Gradient */
.home-ai-search-input {
    width: 100%;
    box-sizing: border-box;
    background: var(--color-background-primary);
    color: var(--color-text-primary);
    border: 2px solid rgba(255, 255, 255, 0.85);
    border-radius: 12px;
    padding: 18px 24px;
    font-size: 1.12rem;
    box-shadow:
        0 4px 20px rgba(0, 0, 0, 0.15),
        0 0 0 1px rgba(255, 255, 255, 0.3);
}

.home-ai-search-input:focus {
    outline: none;
    border-color: var(--color-background-primary);
    box-shadow:
        0 0 0 3px rgba(255, 255, 255, 0.35),
        0 6px 24px rgba(0, 0, 0, 0.2);
}

.home-ai-search-input::placeholder {
    color: var(--color-text-muted);
}

@media (max-width: 767px) {
    /* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Suggest-Dropdown auf Mobile nicht durch Nachfolge-Inhalt ueberdecken */
    .home-search-box {
        z-index: 50;
    }

    .home-search-input-wrapper {
        z-index: 51;
    }
}

@media (max-width: 575px) {
    .home-search-box-inner {
        padding: 28px 20px;
    }

    .home-search-box {
        margin-bottom: 32px;
    }

    .home-search-box-header {
        margin-bottom: 20px;
        gap: 12px;
    }

    .home-search-intro {
        font-size: 1rem;
    }
}

.home-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: hidden;
    box-sizing: border-box;
}

/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Alle Home-Headlines Uppercase */
.home-container h1,
.home-container h2,
.home-container h3 {
    text-transform: uppercase;
}

/* Hero Section - zurückgenommen, sekundär zur KI-Suchbox */
/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Hero dezent, Fokus auf Suchbox */
.home-hero {
    text-align: center;
    padding: 48px 32px;
    margin-bottom: 60px;
    background: var(--color-background-primary);
    border-radius: 12px;
    box-shadow: none;
    position: relative;
    overflow: hidden;
    overflow-x: hidden;
    border: 1px solid rgba(28, 119, 166, 0.12);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.home-hero-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    padding: 0 30px;
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

/* Änderungsprotokoll: 2026-07-06 | agent | @skill-css-rules, @skill-change-provenance | Hero-Bild links neben Beschreibungstext */
.home-hero-description-row {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-top: 10px;
    text-align: left;
}

.home-hero-kaufberatung-media {
    flex: 0 0 38%;
    max-width: 420px;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
    background: rgba(28, 119, 166, 0.06);
    box-shadow: 0 4px 16px rgba(28, 119, 166, 0.08);
}

.home-hero-kaufberatung-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(2);
}

.home-hero-description {
    flex: 1 1 0;
    min-width: 0;
    font-family: var(--font-family-primary);
    font-size: 1.15rem;
    font-weight: 400;
    line-height: 1.7;
    margin: 0;
    color: var(--color-text-secondary);
    text-align: left;
}

.home-hero-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: var(--color-brand-primary) !important;
    text-shadow: none;
    position: relative;
    display: block;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: var(--color-brand-primary) !important;
    background-clip: unset !important;
    filter: none !important;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    white-space: normal;
    overflow: hidden;
    overflow-x: hidden;
    padding: 0;
}

.home-hero-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--color-complementary-primary) 0%, var(--color-complementary-secondary) 100%);
    border-radius: 2px;
    box-shadow: 0 0 15px rgba(230, 126, 80, 0.4);
}

.home-hero-title .no-break-word {
    white-space: nowrap !important;
    display: inline !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    letter-spacing: normal;
}

.home-hero-cta {
    margin-top: 45px;
    text-align: center;
}

/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Hero-Kaufberater-Button: Hover ohne weissen Rahmen */
.home-hero-kaufberater-button {
    padding: 18px 40px;
    background: var(--color-brand-primary);
    color: var(--color-background-primary);
    border: 2px solid var(--color-brand-primary);
    border-radius: 12px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    font-family: var(--font-family-primary);
    font-size: 1.2rem;
    font-weight: 700;
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        background-color 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
    position: relative;
    text-transform: none;
    letter-spacing: 0.02em;
    -webkit-font-smoothing: antialiased;
}

.home-hero-kaufberater-button:hover {
    transform: translateY(-3px);
    background: var(--color-complementary-primary);
    color: var(--color-background-primary);
    border-color: var(--color-complementary-primary);
    box-shadow:
        0 8px 28px rgba(0, 0, 0, 0.22),
        0 0 18px rgba(230, 126, 80, 0.35);
}

.home-hero-kaufberater-button:active {
    transform: translateY(-1px);
    background: var(--color-complementary-accent);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
}

.home-hero-kaufberater-button:focus-visible {
    outline: 2px solid var(--color-background-primary);
    outline-offset: 3px;
}

/* Features Section */
.home-features {
    padding: 0;
    margin-bottom: 80px;
}

.home-features-container {
    max-width: 1400px;
    margin: 0 auto;
}

.home-features-title {
    font-family: var(--font-family-primary);
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin: 0 0 25px 0;
    letter-spacing: -0.8px;
    line-height: 1.2;
    color: var(--color-brand-primary);
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 20px;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    white-space: normal;
}

.home-features-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-complementary-primary) 0%, var(--color-complementary-secondary) 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(230, 126, 80, 0.35);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Feature-Karten zurückgenommen wie Hero */
.feature-card {
    background: var(--color-background-primary);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid rgba(28, 119, 166, 0.12);
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-3px);
    border-color: rgba(28, 119, 166, 0.22);
    box-shadow: 0 6px 20px rgba(28, 119, 166, 0.08);
}

/* Änderungsprotokoll: 2026-07-20 | subagent-create-screen | @skill-css-rules, @skill-change-provenance | Feature-Karte 4 als Link zum Waschsalon-Screen */
.feature-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.feature-card-link-text {
    display: inline-block;
    margin-top: 1rem;
    font-weight: 700;
    color: var(--color-brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: 0.875rem;
    position: relative;
    z-index: 1;
}

.feature-card-link:hover .feature-card-link-text {
    text-decoration: underline;
}

.feature-card-title {
    font-family: var(--font-family-primary);
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 0 14px 0;
    color: var(--color-brand-primary);
    text-shadow: none;
    position: relative;
    padding-left: 18px;
    z-index: 1;
}

.feature-card-title::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: var(--color-complementary-primary);
    border-radius: 2px;
    box-shadow: 0 0 8px rgba(230, 126, 80, 0.4);
    z-index: 1;
}

.feature-card-description {
    font-family: var(--font-family-primary);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0;
    color: var(--color-text-secondary);
    position: relative;
    z-index: 1;
}

.feature-card-icon {
    width: 100%;
    aspect-ratio: 16 / 9;
    margin: 0 auto 24px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    overflow: hidden;
    border-radius: 8px;
    background: rgba(28, 119, 166, 0.06);
}

/* Änderungsprotokoll: 2026-07-04 | agent | @skill-css-rules, @skill-change-provenance | Feature-Icons vergrößern, eingebetteten Weißraum in PNGs abschneiden */
.feature-card-icon-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(2);
}

/* Tablet Landscape (1024px - 1366px) */
@media (max-width: 1366px) {
    .home-container {
        padding: 0 15px;
        overflow-x: hidden;
        max-width: 100%;
    }

    .home-hero {
        padding: 70px 30px;
        margin-bottom: 50px;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }

    .home-hero-content {
        padding: 0 25px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }

    .home-hero-title {
        font-size: 2.2em;
        max-width: 100%;
        min-width: 0;
        overflow-x: hidden;
        padding: 0;
    }

    .home-features {
        margin-bottom: 70px;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
    .home-container {
        padding: 0 10px;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .home-hero {
        padding: 40px 20px;
        margin-bottom: 40px;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .home-hero-content {
        padding: 0 15px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .home-hero-title {
        font-size: 2em;
        margin-bottom: 25px;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        overflow-x: hidden;
        padding: 0;
        width: 100%;
        min-width: 0;
    }
    
    .home-hero-description {
        font-size: 1.25rem;
    }

    .home-hero-description-row {
        flex-direction: column;
        gap: 24px;
    }

    .home-hero-kaufberatung-media {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .home-hero-cta {
        margin-top: 35px;
    }
    
    .home-hero-kaufberater-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }
    
    .home-features-title {
        font-size: 2.2rem;
    }
    
    .home-features {
        margin-bottom: 60px;
    }
    
    .features-grid {
        gap: 25px;
        margin-top: 50px;
    }
    
    .feature-card {
        padding: 35px;
    }
    
    .feature-card-icon {
        width: 100%;
        aspect-ratio: 16 / 9;
        margin-bottom: 25px;
    }

    .feature-card-icon-image {
        display: block;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        transform: scale(2);
    }
}

/* Mobile Landscape & Large Mobile (576px - 767px) */
@media (max-width: 767px) {
    .home-hero {
        padding: 32px 12px;
        margin-bottom: 36px;
        border-radius: 12px;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .home-hero-content {
        padding: 0 8px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .home-hero-title {
        font-size: 2em;
        margin-bottom: 25px;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        overflow-x: hidden;
        padding: 0;
        width: 100%;
        min-width: 0;
    }
    
    .home-hero-title::after {
        width: 90px;
        height: 3px;
    }
    
    /* Änderungsprotokoll: 2026-07-20 | agent | @skill-css-rules, @skill-change-provenance | Hero-Beschreibung auf Mobile linksbündig */
    .home-hero-description {
        font-size: 1rem;
        line-height: 1.6;
        text-align: left;
    }

    .home-hero-description-row {
        flex-direction: column;
        gap: 20px;
    }

    .home-hero-kaufberatung-media {
        flex: 0 0 auto;
        width: 100%;
        max-width: 100%;
    }
    
    .home-hero-cta {
        margin-top: 30px;
    }
    
    .home-hero-kaufberater-button {
        padding: 16px 32px;
        font-size: 1.05rem;
        min-height: 52px;
        width: 100%;
        max-width: 400px;
    }
    
    .home-features-title {
        font-size: 1.6rem;
        margin: 0 0 18px 0;
        padding-bottom: 16px;
    }
    
    .home-features-title::after {
        width: 65px;
        height: 2px;
    }
    
    .home-features {
        margin-bottom: 50px;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 45px;
    }
    
    .feature-card {
        padding: 32px 28px;
    }
    
    .feature-card-title {
        font-size: 1.35rem;
        margin: 0 0 15px 0;
    }
    
    .feature-card-description {
        font-size: 1rem;
        line-height: 1.65;
    }
}

/* Small Mobile (max 575px) */
@media (max-width: 575px) {
    .home-container {
        padding: 0;
        overflow-x: hidden;
        max-width: 100%;
    }
    
    .home-hero {
        padding: 28px 8px;
        margin-bottom: 32px;
        border-radius: 12px;
        margin-left: 10px;
        margin-right: 10px;
        max-width: calc(100% - 20px);
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .home-hero-content {
        padding: 0 8px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .home-hero-title {
        font-size: 1.75em;
        margin-bottom: 20px;
        letter-spacing: -0.01em;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        overflow-x: hidden;
        padding: 0;
        width: 100%;
        min-width: 0;
    }
    
    .home-hero-title::after {
        width: 70px;
        height: 3px;
    }
    
    .home-hero-description {
        font-size: 0.95rem;
    }
    
    .home-hero-cta {
        margin-top: 25px;
        padding: 0 10px;
    }
    
    .home-hero-kaufberater-button {
        padding: 16px 28px;
        font-size: 1rem;
        min-height: 52px;
        width: 100%;
    }
    
    .home-features-title {
        font-size: 1.4rem;
        margin: 0 0 16px 0;
        padding: 0 10px 14px 10px;
    }
    
    .home-features-title::after {
        width: 60px;
        height: 2px;
    }
    
    .home-features {
        margin-bottom: 40px;
    }
    
    .features-grid {
        gap: 15px;
        margin-top: 35px;
        padding: 0 10px;
    }
    
    .feature-card {
        padding: 28px 22px;
        border-radius: 10px;
    }
    
    .feature-card-title {
        font-size: 1.25rem;
        margin: 0 0 12px 0;
    }
    
    .feature-card-description {
        font-size: 0.95rem;
        line-height: 1.65;
    }
}

/* Extra Small Mobile (max 400px) */
@media (max-width: 400px) {
    .home-hero {
        padding: 24px 8px;
        max-width: 100%;
        box-sizing: border-box;
        overflow-x: hidden;
    }
    
    .home-hero-content {
        padding: 0 5px;
        max-width: 100%;
        overflow-x: hidden;
        box-sizing: border-box;
    }
    
    .home-hero-title {
        font-size: clamp(1.5em, 4vw, 1.75em);
        margin-bottom: 20px;
        letter-spacing: -0.01em;
        max-width: 100%;
        box-sizing: border-box;
        overflow: hidden;
        overflow-x: hidden;
        padding: 0;
        width: 100%;
        min-width: 0;
    }
    
    .home-hero-title::after {
        width: 60px;
        height: 2px;
    }
    
    .home-hero-description {
        font-size: 0.9rem;
    }
    
    .home-hero-cta {
        margin-top: 22px;
        padding: 0 15px;
    }
    
    .home-hero-kaufberater-button {
        padding: 16px 24px;
        font-size: 0.95rem;
        min-height: 48px;
    }
    
    .home-features-title {
        font-size: 1.3rem;
        padding-bottom: 12px;
    }
    
    .home-features-title::after {
        width: 50px;
        height: 2px;
    }
    
    .feature-card {
        padding: 25px 18px;
    }
    
    .feature-card-title {
        font-size: 1.15rem;
    }
    
    .feature-card-description {
        font-size: 0.9rem;
    }
}

/* Spotlight Section */
.home-spotlight {
    padding: 0;
    margin-bottom: 80px;
}

.home-spotlight-container {
    max-width: 1400px;
    margin: 0 auto;
}

.home-spotlight-title {
    text-align: center;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
    width: 100%;
    padding-bottom: 20px;
    color: var(--color-brand-primary);
}

.home-spotlight-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-complementary-primary) 0%, var(--color-complementary-secondary) 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(230, 126, 80, 0.35);
}

.home-spotlight-description {
    font-family: var(--font-family-primary);
    font-size: 1.1rem;
    text-align: center;
    margin: 25px auto 50px auto;
    max-width: 800px;
    line-height: 1.7;
    color: var(--color-text-secondary);
}

.spotlight-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Spotlight-Karten zurückgenommen wie Hero */
.spotlight-card {
    background: var(--color-background-primary) !important;
    background-color: var(--color-background-primary) !important;
    border-radius: 12px;
    border: 1px solid rgba(28, 119, 166, 0.12);
    box-shadow: none;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-align: left;
    padding: 36px 28px;
    height: 100%;
}

.spotlight-card:hover {
    transform: translateY(-3px);
    border-color: rgba(28, 119, 166, 0.22);
    box-shadow: 0 6px 20px rgba(28, 119, 166, 0.08);
}

.spotlight-card-logo-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 200px;
    height: 200px;
    margin: 0 auto 35px auto;
    cursor: pointer;
}

.spotlight-card-logo-container {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid rgba(28, 119, 166, 0.15);
    box-shadow: 0 4px 16px rgba(28, 119, 166, 0.08);
    background: var(--color-background-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    z-index: 1;
}

.spotlight-card:hover .spotlight-card-logo-link .spotlight-card-logo-container,
.spotlight-card-logo-link:hover .spotlight-card-logo-container {
    transform: scale(1.03);
    border-color: rgba(28, 119, 166, 0.28);
    box-shadow: 0 6px 20px rgba(28, 119, 166, 0.12);
}

.spotlight-card-logo {
    max-width: 70%;
    max-height: 70%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: none;
}

.spotlight-card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Spotlight-Karten-Headlines linksbündig */
.spotlight-card-title {
    font-family: var(--font-family-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0 0 18px 0;
    padding-bottom: 14px;
    color: var(--color-brand-primary);
    text-shadow: none;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    white-space: normal;
    line-height: 1.4;
    position: relative;
    text-align: left;
}

.spotlight-card-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-complementary-primary) 0%, var(--color-complementary-secondary) 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(230, 126, 80, 0.35);
}

.spotlight-card-target-group {
    font-family: var(--font-family-primary);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-brand-primary);
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-shadow: none;
    padding: 8px 16px;
    background: rgba(28, 119, 166, 0.08);
    border-radius: 8px;
    display: inline-block;
    border: 1px solid rgba(28, 119, 166, 0.18);
    box-shadow: none;
}

.spotlight-card-teaser {
    font-family: var(--font-family-primary);
    font-size: 1.02rem;
    line-height: 1.7;
    margin: 0 0 24px 0;
    color: var(--color-text-secondary);
    flex: 1;
    text-align: left;
}

.spotlight-card-link {
    margin-top: auto;
    text-align: center;
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 14px 28px;
    font-size: 1.02rem;
    font-weight: 600;
    background: transparent;
    color: var(--color-brand-primary);
    border: 2px solid var(--color-brand-primary);
    border-radius: 10px;
    box-shadow: none;
    text-transform: none;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.spotlight-card-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
}

.spotlight-card-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(28, 119, 166, 0.2);
    background: var(--color-brand-primary);
    color: var(--color-background-primary);
}

.spotlight-card-link:hover::before {
    left: 100%;
}

/* Tablet Landscape (1024px - 1366px) */
@media (max-width: 1366px) {
    .spotlight-grid {
        gap: 25px;
    }
    
    .spotlight-card {
        padding: 45px 35px;
    }
    
    .spotlight-card-logo-link {
        width: 180px;
        height: 180px;
        margin-bottom: 30px;
    }
    
    .spotlight-card-logo-container {
        width: 180px;
        height: 180px;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
    .home-spotlight {
        margin-bottom: 70px;
    }
    
    .spotlight-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        margin-top: 50px;
    }
    
    .spotlight-card {
        padding: 40px 30px;
    }
    
    /* Änderungsprotokoll: 2026-07-20 | agent | @skill-css-rules, @skill-change-provenance | Spotlight-Logo auf Tablet kompakt statt volle Breite */
    .spotlight-card-logo-link {
        width: 160px;
        height: 160px;
        margin-bottom: 30px;
    }
    
    .spotlight-card-logo-container {
        width: 100%;
        height: 100%;
    }
    
    .spotlight-card-title {
        font-size: 1.4rem;
        margin-bottom: 18px;
    }
}

/* Mobile Landscape & Large Mobile (576px - 767px) */
/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Spotlight Mobile: Titel oben, Logo darunter */
@media (max-width: 767px) {
    .home-spotlight {
        margin-bottom: 50px;
    }
    
    .home-spotlight-description {
        font-size: 1rem;
        margin-bottom: 40px;
        padding: 0 10px;
    }
    
    .spotlight-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        margin-top: 40px;
        padding: 0 10px;
    }
    
    .spotlight-card {
        padding: 35px 3px;
    }

    .spotlight-card-content {
        display: contents;
    }

    .spotlight-card-title {
        order: 1;
        font-size: 1.35rem;
        margin-bottom: 18px;
    }

    .spotlight-card-logo-link {
        order: 2;
        width: 140px;
        height: 140px;
        margin: 0 auto 25px auto;
    }
    
    .spotlight-card-logo-container {
        width: 100%;
        height: 100%;
        border: 3px solid var(--color-background-primary);
    }

    .spotlight-card-target-group {
        order: 3;
    }
    
    .spotlight-card-teaser {
        order: 4;
        font-size: 1rem;
        margin-bottom: 25px;
    }
    
    .spotlight-card-link {
        order: 5;
        padding: 16px 28px;
        font-size: 1.05rem;
        min-height: 52px;
    }
}

/* Small Mobile (max 575px) */
/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Spotlight kleines Mobile: Logo unter Titel kompakt */
@media (max-width: 575px) {
    .home-spotlight {
        margin-bottom: 40px;
    }
    
    .home-spotlight-description {
        font-size: 0.95rem;
        margin-bottom: 35px;
        padding: 0 15px;
    }
    
    .spotlight-grid {
        gap: 20px;
        margin-top: 35px;
        padding: 0 15px;
    }
    
    .spotlight-card {
        padding: 30px 3px;
    }
    
    .spotlight-card-logo-link {
        width: 120px;
        height: 120px;
        margin: 0 auto 20px auto;
    }
    
    .spotlight-card-logo-container {
        width: 100%;
        height: 100%;
        border: 3px solid var(--color-background-primary);
    }
    
    .spotlight-card-title {
        font-size: 1.25rem;
        margin-bottom: 15px;
    }
    
    .spotlight-card-title::after {
        width: 50px;
        height: 2px;
    }
    
    .spotlight-card-target-group {
        font-size: 0.85rem;
        padding: 6px 12px;
        margin-bottom: 15px;
    }
    
    .spotlight-card-teaser {
        font-size: 0.95rem;
        margin-bottom: 20px;
    }
    
    .spotlight-card-link {
        padding: 18px 24px;
        font-size: 1rem;
        min-height: 56px;
    }
}

/* About Us Section - zurückgenommen wie Hero */
/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Über-uns ohne Vollflächen-Gradient */
.home-about-us-section {
    padding: 48px 32px;
    margin-bottom: 60px;
    background: var(--color-background-primary);
    border-radius: 12px;
    box-shadow: none;
    border: 1px solid rgba(28, 119, 166, 0.12);
}

.home-about-us-container {
    max-width: 1400px;
    margin: 0 auto;
}

.home-about-us-content {
    overflow: visible;
}

.home-about-us-content::after {
    content: '';
    display: table;
    clear: both;
}

/* Änderungsprotokoll: 2026-07-06 | agent | @skill-css-rules, @skill-change-provenance | Über-uns-Titel oberhalb Textblock statt Bild-Overlay */
.home-about-us-media {
    position: relative;
    float: left;
    width: 42%;
    max-width: 420px;
    margin: 0 40px 16px 0;
    shape-outside: margin-box;
}

.home-about-us-copy {
    overflow: visible;
}

.home-about-us-image {
    width: 100%;
    height: auto;
    max-width: 100%;
    margin: 0;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 0 20px rgba(28, 119, 166, 0.1);
    display: block;
}

.home-about-us-title {
    font-family: var(--font-family-primary);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
    color: var(--color-brand-primary);
    position: relative;
    display: block;
    padding: 0 0 16px 0;
    box-sizing: border-box;
    word-break: normal;
    overflow-wrap: break-word;
    hyphens: none;
    white-space: normal;
}

.home-about-us-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 80px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-complementary-primary) 0%, var(--color-complementary-secondary) 100%);
    border-radius: 2px;
    box-shadow: 0 0 12px rgba(230, 126, 80, 0.35);
}

/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Über-uns-Fließtext linksbündig */
.home-about-us-text {
    font-family: var(--font-family-primary);
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--color-text-secondary);
    margin: 0;
    overflow: visible;
    text-align: left;
}

.home-about-us-text .no-break-word {
    white-space: nowrap;
}

/* Tablet Landscape (1024px - 1366px) */
@media (max-width: 1366px) {
    .home-about-us-section {
        margin-bottom: 70px;
    }
    
    .home-about-us-media {
        margin-right: 35px;
    }
}

/* Tablet Portrait (768px - 1023px) */
@media (max-width: 1023px) {
    .home-about-us-section {
        padding: 40px 24px;
        margin-bottom: 50px;
    }
    
    .home-about-us-media {
        margin-right: 30px;
        margin-bottom: 20px;
    }
    
    .home-about-us-title {
        font-size: 2.2rem;
    }
    
    .home-about-us-text {
        font-size: 1.1rem;
    }
}

/* Mobile Landscape & Large Mobile (576px - 767px) */
/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Über-uns Mobile: Titel oben, Bild darunter größer */
@media (max-width: 767px) {
    .home-about-us-section {
        padding: 32px 16px;
        margin-bottom: 40px;
    }

    .home-about-us-content {
        display: flex;
        flex-direction: column;
        padding: 0 10px;
    }

    .home-about-us-copy {
        display: contents;
    }

    .home-about-us-title {
        order: 1;
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 20px;
        padding-bottom: 16px;
    }

    .home-about-us-title::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .home-about-us-media {
        order: 2;
        float: none;
        width: 85%;
        max-width: 85%;
        margin: 0 auto 24px auto;
    }

    .home-about-us-text {
        order: 3;
        font-size: 1.05rem;
        text-align: left;
    }
}

/* Small Mobile (max 575px) */
/* Änderungsprotokoll: 2026-07-20 | Auto | @skill-css-rules, @skill-change-provenance | Über-uns kleines Mobile: Bild unter Titel, größere Breite */
@media (max-width: 575px) {
    .home-about-us-section {
        padding: 28px 12px;
        margin-bottom: 36px;
    }

    .home-about-us-content {
        padding: 0 10px;
    }

    .home-about-us-media {
        float: none;
        width: 90%;
        max-width: 90%;
        margin: 0 auto 20px auto;
    }

    .home-about-us-title {
        font-size: 1.6rem;
        margin-bottom: 18px;
        padding-bottom: 14px;
    }

    .home-about-us-title::after {
        width: 65px;
        height: 2px;
    }

    .home-about-us-text {
        font-size: 1rem;
        line-height: 1.7;
    }
}
