/* =============== PRODUCT PAGE STYLES =============== */
/* Using common .page-hero styles from style.css */
/* Only Product-specific overrides and unique components below */

/* Product Hero - gradient background (no video) */
.product-hero__bg {
    background: linear-gradient(135deg, 
        #4a4a4a 0%, 
        #5a5a5a 25%, 
        #666666 50%, 
        #737373 75%, 
        #808080 100%);
}

.product-hero__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(102, 102, 102, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(102, 102, 102, 0.1) 0%, transparent 50%);
    z-index: -1;
}
.product_hero_logo{
  text-align: center;
  padding-top:20px;
  padding-bottom:20px;
}
img.staffhub-logo{
  max-width: 200px;
  height: auto;
  object-fit: cover;
  margin-left:auto;
  margin-right: auto;
}
body.staff-hub .page-hero__title{
  color: var(--text-primary);
}

body.staff-hub .page-hero__subtitle,
body.staff-hub .page-hero__feature{
  color: var(--text-secondary);
}

.product-hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(90deg, transparent 0%, rgba(86, 101, 115, 0.03) 50%, transparent 100%),
        linear-gradient(0deg, transparent 0%, rgba(86, 101, 115, 0.03) 50%, transparent 100%);
    background-size: 100px 100px;
    z-index: -1;
}

.product-hero__overlay {
    background: rgba(0, 0, 0, 0.3);
}

.product-hero__label {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.product-hero__subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.product-hero__features {
    margin-bottom: var(--spacing-2xl);
}

.product-hero__cta {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Product Introduction */
.product-intro {
    background: white;
}

.product-intro__content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.product-intro__text {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: var(--spacing-lg);
}

.product-intro__text:last-child {
    margin-bottom: 0;
}

/* Section Label */
.product-section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

.product-section-header__label {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(86, 101, 115, 0.05);
    border: 1px solid rgba(86, 101, 115, 0.2);
    border-radius: 50px;
    color: #666666;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-md);
}

.product-section-header__title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.02em;
}

.product-section-header__subtitle {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

/* Dashboard Preview */
.product-dashboard {
    background: var(--bg-light);
}

.dashboard-preview {
    max-width: 1200px;
    margin: 0 auto;
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
}

.dashboard-preview__image {
    width: 100%;
    height: auto;
    display: block;
}

.dashboard-preview__caption {
    padding: var(--spacing-xl);
    text-align: center;
    background: linear-gradient(135deg, #f5f6f7 0%, #e8ebed 100%);
    border-top: 1px solid var(--border-color);
}

.dashboard-preview__caption p {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: 1.8;
    margin: 0;
}

/* Product Features */
.product-features {
    background: var(--bg-light);
}

.product-features__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.feature-card {
    background: white;
    padding: var(--spacing-2xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    transition: all var(--transition-base);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: linear-gradient(to bottom, #666666, #888888);
    transition: height var(--transition-base);
    border-radius: var(--radius-lg) 0 0 var(--radius-lg);
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
    border-color: #666666;
}

.feature-card:hover::before {
    height: 100%;
}

.feature-card__icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    border-radius: 50%;
    margin-bottom: var(--spacing-lg);
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 12px rgba(86, 101, 115, 0.2);
}

.feature-card__title {
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

.feature-card__text {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Product Benefits */
.product-benefits {
    background: white;
}

.benefits__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-2xl);
}

.benefit-card {
    padding: var(--spacing-2xl);
    background: white;
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, #666666, #888888);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
}

.benefit-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: #666666;
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-card__number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    border-radius: 50%;
    margin-bottom: var(--spacing-lg);
    box-shadow: 0 4px 12px rgba(86, 101, 115, 0.2);
}

.benefit-card__title {
    font-size: var(--fs-xl);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    letter-spacing: -0.01em;
}

.benefit-card__text {
    font-size: var(--fs-base);
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Product Pricing */
.product-pricing {
    background: white;
}

.pricing__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-2xl);
    max-width: 1300px;
    margin: 0 auto;
    align-items: start;
}

.pricing__grid--two-col {
    grid-template-columns: repeat(2, 1fr);
    max-width: 900px;
}

.pricing-card {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: var(--spacing-3xl);
    text-align: center;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    border-color: #666666;
}

.pricing-card--featured {
    border: 2px solid #666666;
    box-shadow: 0 8px 24px rgba(86, 101, 115, 0.15);
}

.pricing-card--featured:hover {
    transform: translateY(-5px);
}

.pricing-card__badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #666666 0%, #888888 100%);
    color: white;
    padding: 0.375rem 1.5rem;
    border-radius: 50px;
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 12px rgba(86, 101, 115, 0.3);
}

.pricing-card__header {
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-xl);
    border-bottom: 1px solid var(--border-color);
}

.pricing-card__title {
    font-size: var(--fs-2xl);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.01em;
}

.pricing-card__subtitle {
    font-size: var(--fs-base);
    color: var(--text-light);
}

.pricing-card__price {
    margin-bottom: var(--spacing-2xl);
}

.pricing-card__amount {
    display: block;
    font-size: var(--fs-5xl);
    font-weight: 700;
    color: #666666;
    line-height: 1;
    margin-bottom: var(--spacing-xs);
}

.pricing-card__period {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    font-weight: 400;
}

.pricing-card__features {
    list-style: none;
    margin-bottom: var(--spacing-2xl);
    text-align: left;
    flex: 1;
}

.pricing-card__features li {
    padding: var(--spacing-sm) 0;
    font-size: var(--fs-base);
    color: var(--text-secondary);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    line-height: 1.6;
}

.pricing-card__features li i {
    color: #666666;
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

.pricing-card__button {
    width: 100%;
    justify-content: center;
    padding: 1.125rem 2rem;
    font-size: var(--fs-lg);
}

/* Product Use Cases */
.product-usecases {
    background: var(--bg-light);
}

.usecases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--spacing-xl);
}

.usecase-card {
    background: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border-color);
    text-align: center;
}

.usecase-card__icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(239, 68, 68, 0.1);
    border-radius: 50%;
    margin: 0 auto var(--spacing-md);
    color: #dc2626;
    font-size: 1.5rem;
}

.usecase-card__title {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--spacing-sm);
}

.usecase-card__text {
    font-size: var(--fs-sm);
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
}

.usecase-card__arrow {
    font-size: var(--fs-2xl);
    color: #666666;
    margin-bottom: var(--spacing-lg);
}

.usecase-card__solution {
    padding: var(--spacing-md);
    background: linear-gradient(135deg, #f5f6f7 0%, #e8ebed 100%);
    border-radius: var(--radius-md);
    font-size: var(--fs-base);
    font-weight: 600;
    color: #666666;
}

/* Product CTA */
.product-cta {
    background: white;
}

.product-cta__content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: var(--spacing-3xl);
    background: linear-gradient(135deg, #f5f6f7 0%, #e8ebed 100%);
    border-radius: var(--radius-lg);
    border: 2px solid #d0d5da;
}

.product-cta__title {
    font-size: clamp(1.5rem, 3vw, 1.75rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

.product-cta__text {
    font-size: var(--fs-lg);
    color: var(--text-secondary);
    margin-bottom: var(--spacing-xl);
    line-height: 1.8;
}

.product-cta__buttons {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    flex-wrap: wrap;
}

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
}

/* Responsive Design */
@media screen and (max-width: 968px) {
    .benefits__grid {
        grid-template-columns: 1fr;
    }
    
    .pricing__grid,
    .pricing__grid--two-col {
        grid-template-columns: 1fr;
        gap: var(--spacing-xl);
        max-width: 600px;
    }
    
    .pricing-card--featured {
        order: -1;
    }
    
    .dashboard-preview {
        border-radius: var(--radius-md);
    }
}

@media screen and (max-width: 768px) {
    .product-hero {
        min-height: 70vh;
        padding: var(--spacing-2xl) 0;
    }
    
    .product-hero__features {
        gap: var(--spacing-md);
    }
    
    .product-hero__feature {
        font-size: var(--fs-sm);
    }
    
    .product-hero__cta {
        flex-direction: column;
        align-items: center;
    }
    
    .product-hero__cta .button {
        width: 100%;
        max-width: 300px;
    }
    
    .product-features__grid,
    .usecases__grid {
        grid-template-columns: 1fr;
    }
    
    .product-cta__content {
        padding: var(--spacing-2xl);
    }
    
    .product-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .product-cta__buttons .button {
        width: 100%;
        max-width: 300px;
    }
    
    .dashboard-preview__caption {
        padding: var(--spacing-md);
    }
}

@media screen and (max-width: 480px) {
    .product-hero__label {
        font-size: var(--fs-xs);
        padding: 0.375rem 1rem;
    }
    
    .product-hero__title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    
    .product-hero__subtitle {
        font-size: var(--fs-base);
    }
    
    .feature-card {
        padding: var(--spacing-xl);
    }
    
    .feature-card__icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .benefit-card {
        padding: var(--spacing-xl);
    }
    
    .benefit-card__number {
        width: 50px;
        height: 50px;
        font-size: var(--fs-xl);
    }
    
    .pricing-card {
        padding: var(--spacing-2xl);
    }
    
    .pricing-card__amount {
        font-size: var(--fs-4xl);
    }
    
    .usecase-card__icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
    
    .product-cta__content {
        padding: var(--spacing-lg);
    }
    
    .product-section-header__label {
        font-size: 0.625rem;
        padding: 0.375rem 1rem;
    }
}

/* =============== FOOTER OVERRIDES FOR PRODUCT PAGES =============== */
/* Product pages have 4 sections without company info */
/* Footer styles are now unified in css/style.css */
