/**
 * Our Products Page Styles
 * Individual application showcase matching design patterns
 */

/* Hero Section */
.our-products-hero {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.our-products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(2, 132, 199, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.our-products-hero__content {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    z-index: 1;
}

.our-products-hero__title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
    line-height: 1.2;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #1e293b 0%, #475569 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.our-products-hero__subtitle {
    font-size: 1.25rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 32px;
}

.our-products-hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.our-products-hero__stat {
    text-align: center;
}

.our-products-hero__stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0ea5e9;
    margin-bottom: 8px;
}

.our-products-hero__stat-label {
    font-size: 0.875rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

/* Products Grid */
.our-products-grid {
    padding: 80px 0;
    background: #f8fafc;
}

.our-products-grid__cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Product Cards */
.product-card {
    background: white;
    border-radius: 24px;
    padding: 32px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s ease;
    border: 1px solid #f1f5f9;
    position: relative;
    overflow: hidden;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--card-color), var(--card-color-light));
}

.product-card--blue {
    --card-color: #0ea5e9;
    --card-color-light: #38bdf8;
}

.product-card--green {
    --card-color: #10b981;
    --card-color-light: #34d399;
}

.product-card--red {
    --card-color: #ef4444;
    --card-color-light: #f87171;
}

.product-card--purple {
    --card-color: #8b5cf6;
    --card-color-light: #a78bfa;
}

.product-card--popular {
    border: 2px solid #0ea5e9;
    box-shadow: 0 8px 30px rgba(14, 165, 233, 0.15);
}

.product-card__popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 2;
}

.product-card__header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 20px;
    align-items: center;
    margin-bottom: 24px;
    padding-top: 8px;
}

.product-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--card-color), var(--card-color-light));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.product-card__title-section {
    min-width: 0;
}

.product-card__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 4px 0;
}

.product-card__subtitle {
    font-size: 0.875rem;
    color: #64748b;
    font-weight: 500;
    margin: 0;
}

.product-card__price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--card-color);
    text-align: right;
}

.product-card__description {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 24px;
}

.product-card__visual {
    margin-bottom: 24px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card__visual img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
}

.product-card__metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.product-card__metric {
    text-align: center;
    padding: 16px 12px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.product-card__metric-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--card-color);
    margin-bottom: 4px;
}

.product-card__metric-label {
    font-size: 0.75rem;
    color: #64748b;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 500;
}

.product-card__features {
    margin-bottom: 32px;
}

.product-card__features h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.product-card__features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.product-card__features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 4px 0;
    color: #374151;
    font-size: 0.875rem;
}

.product-card__features li svg {
    color: var(--card-color);
    flex-shrink: 0;
}

.product-card__more-features {
    display: inline-block;
    margin-top: 8px;
    font-size: 0.75rem;
    color: #64748b;
    font-style: italic;
}

.product-card__actions {
    display: flex;
    gap: 12px;
}

.product-card__btn {
    flex: 1;
    padding: 12px 20px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-card__btn--primary {
    background: linear-gradient(135deg, var(--card-color), var(--card-color-light));
    color: white;
    border: none;
}

.product-card__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.product-card__btn--secondary {
    background: white;
    color: var(--card-color);
    border: 2px solid var(--card-color);
}

.product-card__btn--secondary:hover {
    background: var(--card-color);
    color: white;
    transform: translateY(-2px);
}

/* Bundle Offer */
.our-products-bundle {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.03) 0%, rgba(2, 132, 199, 0.05) 100%);
}

.bundle-offer {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid #e2e8f0;
    text-align: center;
}

.bundle-offer__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: white;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.bundle-offer__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.bundle-offer__description {
    font-size: 1.25rem;
    color: #64748b;
    margin-bottom: 40px;
}

.bundle-offer__content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
    text-align: left;
}

.bundle-offer__pricing {
    padding: 32px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-radius: 16px;
    border: 1px solid #e2e8f0;
}

.bundle-offer__original-price {
    margin-bottom: 16px;
}

.bundle-offer__original-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 4px;
}

.bundle-offer__original-amount {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b7280;
    text-decoration: line-through;
}

.bundle-offer__bundle-price {
    margin-bottom: 16px;
}

.bundle-offer__bundle-label {
    display: block;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 4px;
}

.bundle-offer__bundle-amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0ea5e9;
}

.bundle-offer__savings {
    padding: 12px 16px;
    background: linear-gradient(135deg, #dcfce7, #bbf7d0);
    color: #166534;
    border-radius: 12px;
    font-weight: 600;
    text-align: center;
}

.bundle-offer__features h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 16px;
}

.bundle-offer__features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.bundle-offer__features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    color: #374151;
}

.bundle-offer__features li svg {
    color: #0ea5e9;
    flex-shrink: 0;
}

.bundle-offer__actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.bundle-offer__btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
}

.bundle-offer__btn--primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border: none;
}

.bundle-offer__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
}

.bundle-offer__btn--secondary {
    background: white;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
}

.bundle-offer__btn--secondary:hover {
    background: #0ea5e9;
    color: white;
    transform: translateY(-2px);
}

/* CTA Section */
.our-products-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(14, 165, 233, 0.08) 0%, rgba(2, 132, 199, 0.12) 100%);
    color: #1e293b;
    text-align: center;
    position: relative;
}

.our-products-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(14, 165, 233, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(2, 132, 199, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.our-products-cta__content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.our-products-cta__title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    color: #1e293b;
    background: linear-gradient(135deg, #1e293b 0%, #475569 50%, #0ea5e9 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.our-products-cta__subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: #64748b;
    line-height: 1.6;
}

.our-products-cta__buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.our-products-cta__btn {
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 200px;
    justify-content: center;
}

.our-products-cta__btn--primary {
    background: linear-gradient(135deg, #0ea5e9, #0284c7);
    color: white;
    border: none;
}

.our-products-cta__btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(14, 165, 233, 0.4);
}

.our-products-cta__btn--secondary {
    background: white;
    color: #0ea5e9;
    border: 2px solid #0ea5e9;
}

.our-products-cta__btn--secondary:hover {
    background: #0ea5e9;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(14, 165, 233, 0.3);
}

.our-products-cta__guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 0.875rem;
    color: #64748b;
}

.our-products-cta__guarantee svg {
    flex-shrink: 0;
    color: #0ea5e9;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .our-products-grid__cards {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 24px;
    }
    
    .bundle-offer__content {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .bundle-offer {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    .our-products-hero {
        padding: 60px 0 40px;
    }
    
    .our-products-hero__title {
        font-size: 2rem;
    }
    
    .our-products-hero__stats {
        gap: 24px;
        flex-direction: column;
        align-items: center;
    }
    
    .our-products-grid__cards {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .product-card {
        padding: 24px;
    }
    
    .product-card__header {
        grid-template-columns: 1fr;
        gap: 16px;
        text-align: center;
    }
    
    .product-card__price {
        text-align: center;
    }
    
    .product-card__metrics {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .product-card__actions {
        flex-direction: column;
    }
    
    .bundle-offer {
        padding: 24px;
    }
    
    .bundle-offer__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .our-products-hero__title {
        font-size: 1.75rem;
    }
    
    .product-card__visual {
        height: 150px;
    }
    
    .our-products-cta__buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .our-products-cta__guarantee {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}
