/* ══════════════════════════════════════
   PRODUCT INTRO – Apple-Style Hero
   ══════════════════════════════════════ */

.cp-intro {
    text-align: center;
}

.cp-intro__inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 72px 0;
}


/* ── Headline ── */
.cp-intro__headline {
    font-size: clamp(44px, 6vw, 84px);
    font-weight: 800;
    line-height: 1.02;
    letter-spacing: -0.03em;
    color: var(--bs-quaternary);
    margin-bottom: 28px;
}

.cp-intro__headline p {
    margin: 0;
}

.cp-intro__headline .accent,
.cp-intro__headline .text-primary {
    color: var(--bs-primary);
}

.cp-intro__headline .text-secondary {
    color: var(--bs-quaternary);
}


/* ── Beschreibung ── */
.cp-intro__desc {
    font-size: clamp(15px, 1.4vw, 19px);
    line-height: 1.7;
    color: rgba(20, 55, 65, 0.45);
    max-width: 640px;
    margin: 0 auto 40px;
}

.cp-intro__desc p {
    margin-bottom: 0;
}


/* ── CTA Link ── */
.cp-intro__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--bs-primary);
    font-size: 17px;
    font-weight: 600;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.cp-intro__cta:hover {
    gap: 12px;
    text-decoration: none;
    color: var(--bs-primary);
}

.cp-intro__cta svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.cp-intro__cta:hover svg {
    transform: translateY(4px);
}


/* ── Legal Links (dezent) ── */
.cp-intro__legal {
    margin-top: 40px;
    font-size: 13px;
    line-height: 1.6;
    color: rgba(20, 55, 65, 0.4);
    letter-spacing: 0.01em;
}

.cp-intro__legal a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.cp-intro__legal a:hover {
    color: var(--bs-primary);
    text-decoration: none;
}

.cp-intro__legal-sep {
    margin: 0 10px;
    opacity: 0.6;
}


/* ── Hero Screenshot ── */
.cp-intro__hero {
    max-width: 1100px;
    margin: 0 auto;
    padding: 48px 48px 0;
}

.cp-intro__frame {
    background: transparent;
    border-radius: 0;
    overflow: visible;
    box-shadow: none;
}

.cp-intro__toolbar {
    display: none;
}

.cp-intro__image {
    width: 100%;
    height: auto;
    display: block;
}


/* ── Carousel ── */
.cp-intro__carousel {
    position: relative;
}

.cp-intro__slides {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}

.cp-intro__slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.cp-intro__slide.is-active {
    opacity: 1;
    position: relative;
}

.cp-intro__slide .cp-intro__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cp-intro__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    padding: 16px 0 0;
    background: transparent;
}

.cp-intro__dot-btn {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(20, 55, 65, 0.25);
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.cp-intro__dot-btn.is-active {
    width: 18px;
    border-radius: 3px;
    background: var(--bs-primary);
}


/* ══════════════════════════════════════
   RESPONSIVE
   ══════════════════════════════════════ */

@media (max-width: 991px) {
    .cp-intro__inner {
        padding: 32px 24px 0;
    }

    .cp-intro__hero {
        padding: 32px 24px 0;
    }
}

@media (max-width: 600px) {
    .cp-intro__inner {
        padding: 24px 16px 0;
    }

    .cp-intro__hero {
        padding: 24px 16px 0;
    }

    .cp-intro__frame {
        border-radius: 8px;
    }

    .cp-intro__headline {
        font-size: 36px;
    }
}
