/* ============================================
   AskEve - PRODUCT PAGE STYLES
   Mitarbeiter-ID Karten & AskEve Business Suite
   ============================================ */

.product-hero .hero-content-wrapper {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
}

.product-hero .page-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    width: 100%;
    max-width: min(100%, 900px);
}

.product-hero .page-hero-subtitle {
    margin: 0 auto;
}

.product-hero .hero-buttons {
    display: flex;
    gap: 16px;
    margin-top: 32px;
    justify-content: center;
    flex-wrap: wrap;
}

.product-hero .hero-buttons .btn {
    min-width: 180px;
}

/* Split-Hero: Text links, Produktbild rechts */
.product-hero--split {
    background:
        radial-gradient(ellipse 60% 55% at 85% 45%, rgba(68, 214, 165, 0.12) 0%, transparent 60%),
        radial-gradient(ellipse 55% 50% at 10% 20%, rgba(68, 214, 165, 0.08) 0%, transparent 55%),
        var(--bg-darker);
}

.product-hero--split .hero-content-wrapper {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    justify-items: start;
    text-align: left;
    gap: clamp(32px, 5vw, 72px);
}

.product-hero--split .page-hero-content {
    max-width: none;
    align-items: flex-start;
    text-align: left;
}

.product-hero--split .page-hero-subtitle {
    margin: 0 0 8px;
}

.product-hero--split .hero-buttons {
    justify-content: flex-start;
}

.product-hero-visual {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-hero-visual picture,
.product-hero-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.product-hero-visual img {
    filter: drop-shadow(0 28px 60px rgba(0, 0, 0, 0.45));
}

.product-intro {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.product-section-label {
    display: inline-block;
    color: var(--neon);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.product-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 48px;
}

.product-feature {
    position: relative;
    overflow: hidden;
    padding: 30px 26px 26px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    clip-path: var(--clip-angular-sm);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1),
        border-color 0.35s ease,
        background 0.35s ease;
}

.product-feature::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 56px;
    height: 3px;
    background: var(--neon);
}

.product-feature:hover {
    transform: translateY(-6px);
    border-color: rgba(68, 214, 165, 0.4);
    background: rgba(68, 214, 165, 0.04);
}

.product-feature-number {
    display: block;
    margin-bottom: 16px;
    color: var(--neon);
    font-family: var(--font-heading), sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.product-feature h3 {
    margin: 0 0 10px;
    font-family: var(--font-heading), sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #ffffff;
}

.product-feature p {
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.65;
    font-size: 0.95rem;
}

.product-use-case-list {
    list-style: none;
    padding: 0;
    margin: 40px 0 0;
    display: grid;
    gap: 14px;
}

.product-use-case-list li {
    padding: 16px 20px;
    border-left: 2px solid var(--neon);
    background: rgba(68, 214, 165, 0.04);
    color: var(--text-primary);
    line-height: 1.6;
}

/* Produktgalerie */
.product-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
}

.product-gallery-card {
    position: relative;
    overflow: hidden;
    margin: 0;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    clip-path: var(--clip-angular);
}

.product-gallery-card picture,
.product-gallery-card img {
    display: block;
    width: 100%;
    height: auto;
}

.product-gallery-card figcaption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 48px 20px 18px;
    background: linear-gradient(180deg, transparent, rgba(5, 8, 5, 0.92));
    color: #ffffff;
    font-family: var(--font-heading), sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Prozess / So funktioniert's */
.product-process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 48px;
    counter-reset: process;
}

.product-process-step {
    position: relative;
    padding: 34px 26px 28px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    clip-path: var(--clip-angular-sm);
}

.product-process-step::after {
    counter-increment: process;
    content: counter(process, decimal-leading-zero);
    position: absolute;
    top: 18px;
    right: 22px;
    color: rgba(68, 214, 165, 0.35);
    font-family: var(--font-heading), sans-serif;
    font-size: 2rem;
    font-weight: 700;
}

.product-process-step h3 {
    margin: 0 0 12px;
    color: #ffffff;
    font-family: var(--font-heading), sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
}

.product-process-step p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 900px) {
    .product-hero--split .hero-content-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        justify-items: center;
    }

    .product-hero--split .page-hero-content {
        align-items: center;
        text-align: center;
    }

    .product-hero--split .hero-buttons {
        justify-content: center;
    }

    .product-gallery-grid,
    .product-process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 560px) {
    .product-hero .hero-buttons,
    .product-hero--split .hero-buttons {
        flex-direction: column;
        align-items: stretch;
        width: 100%;
    }

    .product-hero .hero-buttons .btn {
        width: 100%;
    }
}
