
    /* ========================================================================
       HERO SECTION - EXACT DESIGN FROM IMAGE
       ======================================================================== */

.hero-section-final {
    background: #003366;
    padding: 80px 0;
    position: relative;
    min-height: 500px;
}

/* Grid Layout */
.hero-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
}

/* ========================================================================
   LEFT COLUMN - CONTENT
   ======================================================================== */

.hero-content-column {
    max-width: 650px;
    padding-right: 40px;
}

/* Badge */
.hero-badge-final {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    font-weight: 400;
    margin-bottom: 32px;
}

.hero-badge-final i {
    font-size: 1rem;
}

/* Title */
.hero-main-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 28px;
    color: white;
}

.title-hessen {
    color: #FFFFFF;
    display: block;
}

/* Description Text */
.hero-description-text {
    font-size: 1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 36px;
    max-width: 550px;
}

/* CTA Buttons Row */
.hero-buttons-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-ausgaben,
.btn-abo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 0;
    border: none;
    transition: all 0.2s ease;
    text-decoration: none;
    min-height: 44px;
    background: #FFFFFF;
    color: #003366;
}

.btn-ausgaben i,
.btn-abo i {
    font-size: 1rem;
}

.btn-ausgaben:hover,
.btn-abo:hover {
    background: #4A8EEF;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(91, 158, 255, 0.4);
}

.btn-ausgaben:focus,
.btn-abo:focus {
    outline: 3px solid white;
    outline-offset: 2px;
}

/* ========================================================================
   RIGHT COLUMN - WAPPEN CARD
   ======================================================================== */

.hero-wappen-column {
    position: relative;
}

.wappen-card {
    background: white;
    padding: 40px 36px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    min-width: 300px;
    max-width: 340px;
    border-radius: 0;
    text-align: center;
}

.wappen-title {
    font-size: 2rem;
    font-weight: 700;
    color: #003366;
    text-align: center;
    margin-bottom: 24px;
    letter-spacing: 3px;
}

.wappen-image-wrapper {
    padding: 16px 0;
}

.wappen-image {
    width: 220px;
    height: auto;
    max-width: 100%;
}

/* ========================================================================
   RESPONSIVE
   ======================================================================== */

@media (max-width: 1199px) {
    .hero-main-title {
        font-size: 4rem;
    }

    .wappen-card {
        min-width: 280px;
        max-width: 300px;
        padding: 36px 32px;
    }

    .wappen-title {
        font-size: 1.85rem;
    }

    .wappen-image {
        width: 200px;
    }
}

@media (max-width: 991px) {
    .hero-section-final {
        padding: 60px 0;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-content-column {
        max-width: 100%;
        padding-right: 0;
        text-align: left;
    }

    .hero-main-title {
        font-size: 3.5rem;
    }

    .hero-buttons-row {
        justify-content: flex-start;
    }

    .wappen-card {
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .hero-section-final {
        padding: 50px 0;
    }

    .hero-badge-final {
        font-size: 0.8rem;
    }

    .hero-main-title {
        font-size: 2.75rem;
    }

    .hero-description-text {
        font-size: 0.95rem;
    }

    .hero-buttons-row {
        flex-direction: column;
        gap: 10px;
    }

    .btn-ausgaben,
    .btn-abo {
        width: 100%;
        justify-content: center;
    }

    .wappen-card {
        padding: 32px 28px;
        min-width: auto;
        max-width: 100%;
    }

    .wappen-title {
        font-size: 1.6rem;
    }

    .wappen-image {
        width: 180px;
    }
}

@media (max-width: 576px) {
    .hero-main-title {
        font-size: 2.25rem;
    }

    .wappen-card {
        padding: 28px 24px;
    }

    .wappen-title {
        font-size: 1.4rem;
        letter-spacing: 2px;
    }

    .wappen-image {
        width: 150px;
    }
}

/* ========================================================================
   PRINT
   ======================================================================== */

@media print {
    .hero-section-final {
        background: white;
        color: #003366;
        padding: 20px 0;
    }

    .hero-badge-final {
        color: #666;
    }

    .hero-main-title {
        color: #003366;
    }

    .title-hessen {
        color: #5B9EFF;
    }

    .hero-description-text {
        color: #333;
    }

    .hero-buttons-row {
        display: none;
    }

    .wappen-card {
        box-shadow: none;
        border: 2px solid #003366;
    }
}

/* ========================================================================
   ACCESSIBILITY - WCAG 2.2 AA
   ======================================================================== */

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .hero-section-final {
        background: #002244;
    }

    .btn-ausgaben,
    .btn-abo {
        border: 3px solid white;
    }

    .wappen-card {
        border: 3px solid #003366;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .btn-ausgaben,
    .btn-abo {
        transition: none !important;
    }

    .btn-ausgaben:hover,
    .btn-abo:hover {
        transform: none !important;
    }
}

/* Focus Visible Enhancement */
@supports selector(:focus-visible) {
    .btn-ausgaben:focus:not(:focus-visible),
    .btn-abo:focus:not(:focus-visible) {
        outline: none;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .hero-section-final {
        background: #002244;
    }
}
