.angebot-detail-page {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem 5rem;
}

.angebot-hero {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 3.2rem 2rem;
    position: relative;
    overflow: hidden;
    border-radius: 32px;
    border: 1px solid rgba(45, 27, 105, 0.08);
    box-shadow: 0 18px 40px rgba(45, 27, 105, 0.10);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.25)),
        radial-gradient(circle at 15% 20%, rgba(255, 99, 146, 0.30) 0 12%, transparent 13%),
        radial-gradient(circle at 80% 25%, rgba(255, 206, 86, 0.24) 0 10%, transparent 11%),
        radial-gradient(circle at 30% 75%, rgba(54, 162, 235, 0.22) 0 14%, transparent 15%),
        radial-gradient(circle at 85% 80%, rgba(75, 192, 192, 0.24) 0 13%, transparent 14%),
        conic-gradient(
            from 210deg at 50% 50%,
            rgba(255, 107, 157, 0.18),
            rgba(255, 206, 86, 0.18),
            rgba(120, 115, 245, 0.18),
            rgba(78, 205, 196, 0.18),
            rgba(255, 107, 157, 0.18)
        ),
        linear-gradient(135deg, #fff8fb, #f7fffe);
    isolation: isolate;
}

.angebot-hero::before,
.angebot-hero::after {
    content: "";
    position: absolute;
    z-index: 0;
    pointer-events: none;
    opacity: 0.95;
    filter: blur(0.5px);
}

.angebot-hero::before {
    width: 300px;
    height: 300px;
    top: -90px;
    left: -70px;
    background:
        conic-gradient(
            from 40deg,
            rgba(255, 0, 128, 0.24),
            rgba(255, 166, 0, 0.22),
            rgba(255, 255, 0, 0.18),
            rgba(0, 200, 255, 0.20),
            rgba(123, 97, 255, 0.22),
            rgba(255, 0, 128, 0.24)
        );
    clip-path: polygon(50% 0%, 72% 18%, 100% 20%, 82% 48%, 100% 78%, 68% 72%, 50% 100%, 30% 74%, 0% 78%, 18% 48%, 0% 18%, 28% 20%);
    transform: rotate(-18deg);
}

.angebot-hero::after {
    width: 340px;
    height: 340px;
    right: -100px;
    bottom: -120px;
    background:
        conic-gradient(
            from 120deg,
            rgba(0, 255, 213, 0.22),
            rgba(0, 140, 255, 0.20),
            rgba(162, 89, 255, 0.22),
            rgba(255, 99, 132, 0.22),
            rgba(255, 205, 86, 0.20),
            rgba(0, 255, 213, 0.22)
        );
    clip-path: polygon(50% 0%, 65% 12%, 88% 8%, 82% 32%, 100% 50%, 80% 66%, 88% 92%, 62% 84%, 50% 100%, 34% 86%, 10% 92%, 18% 66%, 0 50%, 18% 30%, 8% 8%, 36% 14%);
    transform: rotate(22deg);
}

.angebot-hero > * {
    position: relative;
    z-index: 1;
}

.angebot-eyebrow {
    margin: 0 0 0.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8f3f74;
}

.angebot-hero h1 {
    margin: 0 0 1rem;
    font-size: 3rem;
    line-height: 1.1;
    color: var(--color-text-main);
}

.angebot-lead {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--color-text-secondary);
}

.angebot-facts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.fact-card {
    background: var(--color-white);
    border-radius: 22px;
    padding: 1.5rem;
    border: 1px solid rgba(45, 27, 105, 0.08);
    box-shadow: 0 12px 28px rgba(45, 27, 105, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.fact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(45, 27, 105, 0.12);
}

.fact-card:nth-child(1) {
    border-top: 6px solid #cba6dfbf;
}

.fact-card:nth-child(2) {
    border-top: 6px solid #dd9cd0;
}

.fact-card:nth-child(3) {
    border-top: 6px solid #8bacc4;
}

.fact-card:nth-child(4) {
    border-top: 6px solid #e6b36c;
}

.fact-card h2 {
    margin: 0 0 0.8rem;
    font-size: 1.15rem;
    color: var(--color-text-main);
}

.fact-card p {
    margin: 0;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.angebot-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.detail-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 248, 240, 0.96));
    border-radius: 24px;
    padding: 2rem;
    border: 1px solid rgba(45, 27, 105, 0.08);
    box-shadow: 0 12px 28px rgba(45, 27, 105, 0.06);
}

.detail-card h2 {
    margin: 0 0 1rem;
    font-size: 1.45rem;
    color: var(--color-text-main);
}

.detail-card p,
.detail-card li {
    color: var(--color-text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}

.detail-card ul {
    margin: 0;
    padding-left: 1.2rem;
}

.angebot-cta {
    text-align: center;
    padding: 2.5rem 2rem;
    border-radius: 28px;
    border: 1px solid rgba(45, 27, 105, 0.08);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(249, 244, 255, 0.96));
    box-shadow: 0 14px 34px rgba(45, 27, 105, 0.08);
}

.angebot-cta h2 {
    margin: 0 0 0.8rem;
    font-size: 2rem;
    color: var(--color-text-main);
}

.angebot-cta p {
    max-width: 700px;
    margin: 0 auto 1.5rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
}

.angebot-cta-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.secondary-btn {
    display: inline-block;
    padding: 0.85rem 1.2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    color: var(--color-text-main);
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(45, 27, 105, 0.12);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
    box-shadow: 0 8px 18px rgba(45, 27, 105, 0.06);
}

.button-mitglied-werden {
    background-color: #09a3a3ad;
    color: var(--color-text-main);
    box-shadow: 0 10px 24px #09a3a3ad;
    border: none;
    border-radius: 14px;
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
    padding: 1rem 2rem;
}

.button-mitglied-werden:hover {
    background-color: #048585ad;
    transform: translateY(-2px);
    box-shadow: 0 14px 30px #048585ad;
}

.secondary-btn:hover {
    transform: translateY(-2px);
    background: rgba(248, 241, 248, 0.95);
    box-shadow: 0 14px 24px rgba(45, 27, 105, 0.10);
}

@media (min-width: 769px) and (max-width: 1024px) {
    .angebot-facts {
        grid-template-columns: repeat(2, 1fr);
    }

    .angebot-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .angebot-detail-page {
        padding: 2rem 1rem 3rem;
    }

    .angebot-hero {
        padding: 2.3rem 1.25rem;
        border-radius: 24px;
        margin-bottom: 2rem;
    }

    .angebot-hero h1 {
        font-size: 2.2rem;
    }

    .angebot-lead {
        font-size: 1rem;
    }

    .angebot-facts,
    .angebot-content-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .fact-card,
    .detail-card,
    .angebot-cta {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .angebot-cta h2 {
        font-size: 1.65rem;
    }
}