/* ============================================
   PRODUCTS PAGE STYLES
   ============================================ */

.products-hero {
    padding: calc(var(--space-24) + 80px) 0 var(--space-16);
    text-align: center;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.08) 0%, rgba(139, 92, 246, 0.04) 100%);
}

.products-hero__title {
    font-family: var(--font-headline);
    font-size: var(--text-5xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
}

.products-hero__subtitle {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    max-width: 640px;
    margin: 0 auto;
}

/* Product Detail Page */
.product-detail {
    padding-top: 100px;
}

.product-detail__hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
    padding: var(--space-16) 0;
}

.product-detail__content h1 {
    font-family: var(--font-headline);
    font-size: var(--text-5xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-6);
}

.product-detail__badge {
    font-family: var(--font-mono);
    font-size: var(--text-xs);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-bright);
    margin-bottom: var(--space-4);
    display: block;
}

.product-detail__desc {
    font-size: var(--text-lg);
    color: var(--color-text-muted);
    margin-bottom: var(--space-8);
}

.product-detail__visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-detail__visual svg {
    max-width: 100%;
    height: auto;
}

/* Features List */
.feature-list {
    margin-bottom: var(--space-8);
}

.feature-list li {
    padding: var(--space-3) 0;
    padding-left: var(--space-8);
    position: relative;
    color: var(--color-text-secondary);
    font-size: var(--text-base);
}

.feature-list li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-accent-secondary);
    font-weight: 700;
}

/* Product Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--space-8);
}

.feature-card {
    background: var(--gradient-glass);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    transition: all var(--transition-base);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-glass-hover);
}

.feature-card__icon {
    width: 48px; height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: var(--radius-md);
    margin-bottom: var(--space-6);
}

.feature-card__icon svg {
    width: 24px; height: 24px;
    stroke: var(--color-accent-bright);
}

.feature-card__title {
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: var(--space-3);
}

.feature-card__text {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

/* Product Detail — Former name note */
.product-detail__former {
    font-size: var(--text-xs);
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
    color: var(--color-text-muted);
    opacity: 0.7;
}

/* ============================================
   PRODUCTS DUO SHOWCASE
   Two-product layout for overview page
   ============================================ */
.products-duo {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: var(--space-8);
    align-items: stretch;
}

.product-showcase {
    background: var(--gradient-glass);
    border: 1px solid var(--color-border-glass);
    border-radius: var(--radius-xl);
    padding: var(--space-10);
    transition: all var(--transition-base);
    text-decoration: none;
    display: flex;
    flex-direction: column;
}

.product-showcase:hover {
    transform: translateY(-4px);
    border-color: var(--color-border-glass-hover);
}

.product-showcase__header {
    display: flex;
    align-items: center;
    gap: var(--space-4);
    margin-bottom: var(--space-6);
}

.product-showcase__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(99, 102, 241, 0.12);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: var(--radius-md);
}

.product-showcase__icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--color-accent-bright);
}

.product-showcase__icon--green {
    background: rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.25);
}

.product-showcase__icon--green svg {
    stroke: rgba(16, 185, 129, 0.9);
}

.product-showcase__name {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-bright);
}

.product-showcase__title {
    font-family: var(--font-headline);
    font-size: var(--text-2xl);
    color: var(--color-text-primary);
    margin-bottom: var(--space-4);
}

.product-showcase__desc {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    margin-bottom: var(--space-6);
    line-height: 1.6;
}

.product-showcase__features {
    list-style: none;
    padding: 0;
    margin: 0 0 var(--space-8) 0;
    flex-grow: 1;
}

.product-showcase__features li {
    padding: var(--space-2) 0;
    padding-left: var(--space-6);
    position: relative;
    color: var(--color-text-secondary);
    font-size: var(--text-sm);
}

.product-showcase__features li::before {
    content: '\2713';
    position: absolute;
    left: 0;
    color: var(--color-accent-secondary);
    font-weight: 700;
}

.products-duo__connector {
    display: flex;
    align-items: center;
    justify-content: center;
}

.products-duo__connector svg {
    width: 60px;
    height: auto;
}

@media (max-width: 768px) {
    .product-detail__hero {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .products-duo {
        grid-template-columns: 1fr;
    }

    .products-duo__connector {
        transform: rotate(90deg);
        padding: var(--space-4) 0;
    }
}
