/* 3D-Druck Preise – moderner Hero im Stil der Studio-Seiten */

.price-page {
    --price-bg: #060a10;
    --price-surface: #0d151f;
    --price-line: rgba(255, 255, 255, .11);
    --price-yellow: #fde100;
    --price-cyan: #48f2fb;
    --price-magenta: #e867ea;
    overflow-x: hidden;
    overflow-x: clip;
    background: var(--price-bg);
}

.price-page *,
.price-page *::before,
.price-page *::after {
    box-sizing: border-box;
}

.price-hero {
    position: relative;
    min-height: 720px;
    overflow: hidden;
    padding: 56px 0 92px;
    isolation: isolate;
    background:
        radial-gradient(circle at 76% 40%, rgba(72, 242, 251, .12), transparent 27%),
        radial-gradient(circle at 91% 27%, rgba(232, 103, 234, .11), transparent 24%),
        radial-gradient(circle at 9% 72%, rgba(253, 225, 0, .06), transparent 24%),
        linear-gradient(180deg, #070c13 0%, var(--price-bg) 100%);
}

.price-hero::before {
    position: absolute;
    inset: 0;
    z-index: -1;
    content: "";
    pointer-events: none;
    opacity: .28;
    background-image:
        linear-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 54px 54px;
    -webkit-mask-image: linear-gradient(to bottom, transparent 2%, #000 28%, transparent 94%);
    mask-image: linear-gradient(to bottom, transparent 2%, #000 28%, transparent 94%);
}

.price-hero::after {
    position: absolute;
    z-index: -1;
    top: 130px;
    right: -120px;
    width: 520px;
    height: 520px;
    border: 1px solid rgba(72, 242, 251, .12);
    border-radius: 50%;
    content: "";
    pointer-events: none;
    box-shadow: 0 0 120px rgba(72, 242, 251, .05);
}

.price-page .price-hero > .price-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, .92fr) minmax(440px, .78fr);
    align-items: center;
    gap: clamp(44px, 7vw, 104px);
    width: 100%;
    max-width: var(--site-content-width, 1440px);
    margin-inline: auto;
    padding-inline: clamp(24px, 3.35vw, 48px);
}

.price-hero-copy {
    width: 100%;
    max-width: 750px;
    min-width: 0;
}

.price-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 9px;
    margin: 0 0 34px;
    color: rgba(255, 255, 255, .45);
    font-size: .78rem;
}

.price-breadcrumb a {
    color: rgba(255, 255, 255, .68);
    text-decoration: none;
}

.price-breadcrumb a:hover,
.price-breadcrumb a:focus-visible {
    color: var(--price-cyan);
}

.price-hero-eyebrow {
    margin: 0 0 16px;
    color: var(--price-cyan);
    font: 800 .75rem/1.2 "Inter", sans-serif;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.price-page .price-hero h1 {
    width: 100%;
    max-width: 750px;
    margin: 0;
    color: #fff;
    font-family: "Rubik", sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.9rem);
    font-weight: 700;
    line-height: .99;
    letter-spacing: -.05em;
    text-wrap: balance;
}

.price-page .price-hero h1::after {
    display: block;
    width: 90px;
    height: 5px;
    margin-top: 25px;
    border-radius: 99px;
    background: linear-gradient(90deg, var(--price-yellow), var(--price-cyan));
    content: "";
}

.price-hero-lead {
    max-width: 650px;
    margin: 25px 0 0;
    color: rgba(255, 255, 255, .74);
    font-size: clamp(1rem, 1.4vw, 1.15rem);
    line-height: 1.72;
}

.price-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.price-primary-btn,
.price-secondary-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 13px 22px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-family: "Rubik", sans-serif;
    font-size: .9rem;
    font-weight: 700;
    line-height: 1.2;
    text-decoration: none !important;
    transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}

.price-primary-btn {
    border-color: #d9ae00;
    background: linear-gradient(135deg, var(--price-yellow), #d6a900);
    color: var(--price-bg) !important;
    box-shadow: 0 12px 34px rgba(253, 225, 0, .16);
}

.price-secondary-btn {
    border-color: rgba(255, 255, 255, .2);
    background: rgba(255, 255, 255, .04);
    color: #fff !important;
}

.price-primary-btn:hover,
.price-secondary-btn:hover {
    transform: translateY(-2px);
}

.price-primary-btn:hover {
    box-shadow: 0 16px 40px rgba(253, 225, 0, .24);
}

.price-secondary-btn:hover {
    border-color: var(--price-cyan);
}

.price-hero-preview {
    position: relative;
    width: 100%;
    max-width: 520px;
    min-width: 0;
    justify-self: end;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(72, 242, 251, .28);
    border-radius: 22px;
    background: linear-gradient(155deg, rgba(17, 28, 41, .96), rgba(8, 14, 23, .98));
    box-shadow: 0 34px 90px rgba(0, 0, 0, .42), inset 0 1px 0 rgba(255, 255, 255, .08);
}

.price-hero-preview::before {
    position: absolute;
    right: -80px;
    bottom: -110px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    content: "";
    pointer-events: none;
    background: radial-gradient(circle, rgba(72, 242, 251, .12), transparent 68%);
}

.price-preview-head,
.price-preview-head > div,
.price-preview-footer {
    display: flex;
    align-items: center;
}

.price-preview-head {
    position: relative;
    z-index: 1;
    justify-content: space-between;
    gap: 16px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--price-line);
}

.price-preview-head > div {
    gap: 9px;
    color: #fff;
    font-family: "Rubik", sans-serif;
    font-size: .9rem;
}

.price-preview-head > span {
    padding: 5px 9px;
    border: 1px solid rgba(72, 242, 251, .24);
    border-radius: 99px;
    color: var(--price-cyan);
    background: rgba(72, 242, 251, .07);
    font-size: .66rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
}

.price-preview-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--price-cyan);
    box-shadow: 0 0 12px rgba(72, 242, 251, .7);
}

.price-preview-steps {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 12px;
    margin: 22px 0;
    padding: 0;
    list-style: none;
}

.price-preview-steps li {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr);
    align-items: center;
    gap: 14px;
    min-height: 76px;
    padding: 14px;
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 14px;
    background: rgba(255, 255, 255, .035);
}

.price-preview-steps li > span {
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(72, 242, 251, .2);
    border-radius: 12px;
    color: var(--price-cyan);
    background: rgba(72, 242, 251, .06);
    font-family: "Rubik", sans-serif;
    font-size: .72rem;
    font-weight: 800;
}

.price-preview-steps strong,
.price-preview-steps small {
    display: block;
}

.price-preview-steps strong {
    color: #fff;
    font-family: "Rubik", sans-serif;
    font-size: .88rem;
}

.price-preview-steps small {
    margin-top: 4px;
    color: rgba(255, 255, 255, .5);
    font-size: .72rem;
}

.price-preview-footer {
    position: relative;
    z-index: 1;
    flex-wrap: wrap;
    gap: 8px;
}

.price-preview-footer span {
    padding: 6px 9px;
    border-radius: 8px;
    color: rgba(255, 255, 255, .67);
    background: rgba(255, 255, 255, .055);
    font-size: .68rem;
}

@media (max-width: 1024px) {
    .price-hero {
        min-height: 0;
        padding-top: 80px;
        padding-bottom: 78px;
    }

    .price-page .price-hero > .price-hero-grid {
        grid-template-columns: minmax(0, 1fr);
        gap: 46px;
    }

    .price-hero-copy {
        max-width: 780px;
    }

    .price-hero-preview {
        width: min(720px, 100%);
        max-width: none;
        justify-self: start;
    }
}

@media (max-width: 767px) {
    .price-hero {
        padding: 24px 0 64px;
    }

    .price-page .price-hero > .price-hero-grid {
        gap: 38px;
        padding-inline: 24px;
    }

    .price-breadcrumb {
        margin-bottom: 24px;
        font-size: .7rem;
    }

    .price-page .price-hero h1 {
        font-size: clamp(2.25rem, 10.5vw, 3.15rem);
        line-height: 1.02;
        overflow-wrap: anywhere;
    }

    .price-hero-lead {
        font-size: .96rem;
    }

    .price-hero-actions {
        display: grid;
        grid-template-columns: minmax(0, 1fr);
    }

    .price-primary-btn,
    .price-secondary-btn {
        width: 100%;
    }

    .price-hero-preview {
        padding: 20px;
        border-radius: 18px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .price-primary-btn,
    .price-secondary-btn {
        transition: none;
    }
}
