.home-page {
    width: min(1200px, 92%);
    margin: 0 auto;
    padding: 64px 0 80px;
}

/* Hero */

.hero {
    position: relative;
    min-height: clamp(560px, 72vh, 760px);
    display: flex;
    align-items: center;
    overflow: hidden;

    margin-bottom: 56px;
    padding: clamp(36px, 6vw, 72px);

    border-radius: 36px;
    background-image: var(--hero-image);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    border: none;
    box-shadow: 0 34px 90px rgba(0, 0, 0, 0.42);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background:
        linear-gradient(
            90deg,
            rgba(2, 6, 23, 0.92) 0%,
            rgba(2, 6, 23, 0.72) 42%,
            rgba(2, 6, 23, 0.36) 72%,
            rgba(2, 6, 23, 0.18) 100%
        );
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 760px;
}

.hero h1 {
    margin: 0 0 30px;
    line-height: 0.95;
    letter-spacing: -0.055em;
}

.hero__title-main {
    display: block;
    color: #ffffff;
    font-size: clamp(3.8rem, 8vw, 7.2rem);
    font-weight: 900;

}

.hero__title-sub {
    display: block;
    margin-top: 14px;

    color: #e2e8f0;
    font-size: clamp(1.35rem, 2.6vw, 2.25rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.035em;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.hero__note {
    margin: 18px 0 0;
    max-width: 540px;
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.hero__copyright {
    position: absolute;
    right: 22px;
    bottom: 18px;
    z-index: 2;

    margin: 0;
    padding: 6px 10px;

    border-radius: 999px;
    background: rgba(2, 6, 23, 0.58);
    color: rgba(226, 232, 240, 0.82);

    font-size: 0.78rem;
    line-height: 1;
    backdrop-filter: blur(10px);
}

/* Buttons */

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    min-height: 48px;
    padding: 0 22px;

    border-radius: 999px;
    text-decoration: none;

    font-size: 0.98rem;
    font-weight: 700;

    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        background 0.2s ease,
        color 0.2s ease;
}

.button:hover {
    transform: translateY(-2px);
}

.button--primary {
    background: linear-gradient(135deg, #38bdf8, #6366f1);
    color: #ffffff;
    box-shadow: 0 18px 42px rgba(56, 189, 248, 0.28);
}

.button--primary:hover {
    box-shadow: 0 24px 56px rgba(56, 189, 248, 0.38);
}

.button--secondary {
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.22);
}

.button--secondary:hover {
    background: rgba(255, 255, 255, 0.12);
}

/* Werkschau Info Box */

.werkschau-info {
    background:
        linear-gradient(135deg, rgba(17, 24, 39, 0.98), rgba(15, 23, 42, 0.98)),
        radial-gradient(circle at top left, rgba(56, 189, 248, 0.12), transparent 36%);

    border: 1px solid rgba(148, 163, 184, 0.14);
    border-radius: 30px;
    padding: clamp(28px, 4vw, 42px);

    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.28);
}

.werkschau-info__intro {
    max-width: 900px;
    margin-bottom: 34px;
}

.werkschau-info__intro p {
    margin: 0;
    color: #e2e8f0;
    font-size: clamp(1.15rem, 2vw, 1.55rem);
    line-height: 1.55;
    font-weight: 500;
    letter-spacing: -0.018em;
}

.werkschau-info__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 34px;
    padding-top: 30px;
    border-top: 1px solid rgba(148, 163, 184, 0.14);
}

.werkschau-info__item h2 {
    margin: 0 0 12px;
    color: #ffffff;
    font-size: 1.25rem;
}

.werkschau-info__item p {
    margin: 0;
    color: #cbd5e1;
    line-height: 1.6;
}

/* Responsive */

@media (max-width: 980px) {
    .home-page {
        padding-top: 46px;
    }

    .hero {
        min-height: 620px;
        padding: 44px;
        background-position: center;
    }

    .hero__overlay {
        background:
            linear-gradient(
                180deg,
                rgba(2, 6, 23, 0.88) 0%,
                rgba(2, 6, 23, 0.7) 55%,
                rgba(2, 6, 23, 0.4) 100%
            );
    }

    .hero__content {
        max-width: none;
    }

    .hero__title-main {
        font-size: clamp(3.6rem, 10vw, 6.2rem);
    }

    .hero__title-sub {
        font-size: clamp(1.25rem, 4vw, 2rem);
    }

    .werkschau-info__grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
}

@media (max-width: 600px) {
    .home-page {
        width: min(94%, 100%);
        padding: 32px 0 56px;
    }

    .hero {
        min-height: 620px;
        margin-bottom: 40px;
        padding: 30px 24px 54px;
        border-radius: 24px;
        align-items: flex-end;
        background-position: center;
    }

    .hero__title-main {
        font-size: clamp(3.1rem, 15vw, 4.4rem);
    }

    .hero__title-sub {
        margin-top: 10px;
        font-size: clamp(1.15rem, 6vw, 1.55rem);
        line-height: 1.18;
    }

    .hero__actions {
        flex-direction: column;
    }

    .button {
        width: 100%;
        box-sizing: border-box;
    }

    .hero__copyright {
        right: 16px;
        bottom: 14px;
        font-size: 0.72rem;
    }

    .werkschau-info {
        padding: 24px 22px;
        border-radius: 24px;
    }

    .werkschau-info__intro {
        margin-bottom: 28px;
    }

    .werkschau-info__intro p {
        font-size: 1.08rem;
    }

    .werkschau-info__grid {
        padding-top: 24px;
        gap: 24px;
    }

    .werkschau-info__item h2 {
        font-size: 1.15rem;
    }
}
