#hero {
    min-height: 78vh;
    padding-top: 5.5rem;
    display: grid;
    place-items: center;
    position: relative;
    background: linear-gradient(180deg, rgba(255, 250, 242, 0.92), rgba(240, 228, 209, 0.95)),
                url('../assets/icons/Pertl_Logo_RGB_big.svg') center 35%/auto 88% no-repeat,
                url('https://bauportal.bgbau.de/fileadmin/_processed_/d/2/csm_0027443_c1a1d0bd61.jpeg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 25%, rgba(255, 255, 255, 0.7), transparent 24%),
                linear-gradient(180deg, rgba(57, 45, 33, 0.16) 0%, rgba(57, 45, 33, 0.05) 100%);
    z-index: 0;
    mix-blend-mode: soft-light;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: var(--color-text);
    max-width: 640px;
    padding: 1.75rem 1.4rem;
    border: 1px solid rgba(117, 95, 72, 0.16);
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(22px);
    box-shadow: 0 24px 60px rgba(57, 45, 33, 0.14);
}

.hero-label {
    display: inline-flex;
    margin-bottom: 1rem;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    color: #315b34;
    background: rgba(143, 194, 146, 0.18);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-size: 0.85rem;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 4.5vw, 3rem);
    margin-bottom: 0.75rem;
    color: #2b241e;
    text-shadow: 0 12px 24px rgba(211, 135, 66, 0.14);
    letter-spacing: 0.03em;
}

.hero-content p {
    font-size: 0.98rem;
    margin-bottom: 1.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    color: #54463f;
}

.hero-highlights {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 0.9rem;
    margin-bottom: 1.3rem;
}

.highlight-item {
    padding: 0.95rem 1rem;
    border-radius: 1.35rem;
    background: linear-gradient(180deg, rgba(223, 238, 223, 0.95), rgba(244, 251, 244, 0.95));
    border: 1px solid rgba(118, 152, 117, 0.15);
    box-shadow: 0 14px 32px rgba(57, 45, 33, 0.08);
}

.highlight-item strong {
    display: block;
    margin-bottom: 0.55rem;
    font-size: 0.98rem;
    color: var(--color-primary);
}

.highlight-item p {
    margin: 0;
    color: #525044;
    line-height: 1.55;
}

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

.hero-buttons .btn.secondary {
    background: #ffffff;
    color: var(--color-text);
    border: 1px solid rgba(117, 95, 72, 0.16);
    box-shadow: 0 16px 35px rgba(57, 45, 33, 0.09);
}

.hero-buttons .btn.secondary:hover {
    background: rgba(255, 255, 255, 1);
}
