/* ============================================================
   NEXAURA STUDIOS — PRODUCT DETAIL PAGE STYLES
   ============================================================ */

.product-hero {
    padding-top: calc(var(--nav-height) + var(--space-3xl));
    padding-bottom: var(--space-3xl);
    position: relative;
    overflow: hidden;
}
.product-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
    pointer-events: none;
}
.product-hero__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}
.product-hero__title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 900;
    color: var(--clr-primary);
    margin-bottom: var(--space-sm);
}
.product-hero__tagline {
    font-size: var(--fs-2xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
}
.product-hero__desc {
    font-size: var(--fs-md);
    color: var(--clr-text-secondary);
    margin-bottom: var(--space-2xl);
    line-height: 1.7;
}
.product-hero__image {
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-card);
}
.product-hero__image img {
    width: 100%;
    height: auto;
}

/* Key Features */
.features-section .grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Steps */
.steps-section .steps-list {
    max-width: 600px;
    margin: 0 auto;
}
.step-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-lg);
    margin-bottom: var(--space-xl);
}
.step-item__badge {
    width: 36px;
    height: 36px;
    border-radius: var(--radius-full);
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: var(--fs-sm);
    flex-shrink: 0;
}
.step-item__title {
    font-weight: 700;
    font-size: var(--fs-lg);
    margin-bottom: 4px;
}

/* Demo Video */
.demo-section__video {
    max-width: 800px;
    margin: 0 auto;
    aspect-ratio: 16 / 9;
    background: var(--clr-bg-card);
    border: 1px solid var(--clr-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all var(--transition-base);
    overflow: hidden;
    position: relative;
}
.demo-section__video:hover {
    border-color: var(--clr-border-hover);
    box-shadow: var(--shadow-glow);
}
.demo-section__play {
    width: 72px;
    height: 72px;
    border-radius: var(--radius-full);
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}
.demo-section__video:hover .demo-section__play {
    background: var(--clr-primary);
    transform: scale(1.1);
}

/* Pricing */
.pricing-section .grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 600px;
    margin: 0 auto;
}

@media (max-width: 1024px) {
    .product-hero__inner { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
    .features-section .grid { grid-template-columns: 1fr; }
    .pricing-section .grid { grid-template-columns: 1fr; }
}
