/* Products page - Professional brochure-style layout */

.products-content {
    padding: 0;
    max-width: none;
}

/* Service highlight sections */
.product-highlight {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg);
}

.product-highlight:nth-child(odd) {
    background: var(--bg-primary);
}

.product-highlight:nth-child(even) {
    background: var(--bg-secondary);
}

/* Inner highlight container gets padding */
.product-highlight {
    padding: var(--space-xl);
}

/* Section container - no padding, just layout */
.product-highlight-container {
    max-width: 1200px;
    margin: var(--space-lg) auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: start;
    min-height: 400px;
}

.product-content {
    align-self: start;
}

.product-visual {
    align-self: start;
}

/* Alternate layout for second service */
.product-highlight:nth-child(even) .product-content {
    order: 2;
}

.product-highlight:nth-child(even) .product-visual {
    order: 1;
}

/* Content section - no padding */
.product-content {
}

/* Full-width header section - no padding, outermost handles it */
.product-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.product-header h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0;
    line-height: var(--leading-tight);
}

.product-subtitle {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    font-style: italic;
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* Full-width footer section - no padding, outermost handles it */
.product-footer {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.product-footer p {
    font-size: var(--font-size-base);
    color: var(--text-primary);
    margin-bottom: var(--space-lg);
    line-height: var(--leading-relaxed);
}

/* Content - single column layout */
.product-highlight-content {
    margin-bottom: var(--space-xl);
}

.product-features h3 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: var(--space-base);
}

.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
    padding-left: var(--space-base);
}

.product-features li {
    padding: var(--space-xs) 0;
    padding-left: var(--space-lg);
    position: relative;
    color: var(--text-secondary);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-xs);
}

.product-features li:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 600;
}

.product-footer .btn {
    display: inline-block;
    background-color: var(--primary-color);
    color: #ffffff !important;
    padding: var(--space-base) var(--space-xl);
    border-radius: var(--radius-base);
    text-decoration: none;
    font-weight: 600;
    font-size: var(--font-size-base);
    transition: all var(--transition-fast);
    border: none;
    cursor: pointer;
    text-align: center;
}

.product-cta .btn:hover {
    background-color: var(--primary-dark);
    color: #ffffff !important;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Visual placeholder section */
.product-visual {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    min-height: 400px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.product-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin: 0;
    padding: 0;
}

.visual-placeholder {
    text-align: center;
    color: var(--text-secondary);
    padding: var(--space-xl);
    background: var(--bg-tertiary);
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-lg);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-placeholder h4 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-base);
    color: var(--text-primary);
}

.visual-placeholder p {
    font-size: var(--font-size-sm);
    opacity: 0.7;
    line-height: var(--leading-relaxed);
}

/* Contact info section styling */
.contact-info {
    background: var(--bg-primary);
    text-align: center;
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
}

.contact-info-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info h3 {
    font-size: var(--font-size-2xl);
    color: var(--text-primary);
    margin-bottom: var(--space-base);
}

.contact-info p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    margin-bottom: var(--space-lg);
    line-height: var(--leading-relaxed);
}



/* Responsive design */
@media (max-width: 1024px) {
    .product-highlight-container {
        gap: var(--space-2xl);
    }
    
}

@media (max-width: 768px) {
    .product-highlight {
        padding: var(--space-lg);
    }
    
    .product-highlight-container {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
        text-align: center;
    }
    
    .product-features {
        text-align: left;
    }
    
    .product-features ul {
        padding-left: 0;
    }
    
    .product-features li {
        padding-left: var(--space-lg);
    }
    
    .product-highlight:nth-child(even) .product-content {
        order: 1;
    }
    
    .product-highlight:nth-child(even) .product-visual {
        order: 2;
    }
    
    .product-visual {
        min-height: 300px;
    }
    
    .product-highlight-header h2 {
        font-size: var(--font-size-2xl);
    }
    
    .product-highlight-content {
        text-align: left;
    }
}

@media (max-width: 480px) {
    .product-highlight {
        padding: var(--space-lg);
    }
    
    
    .product-visual {
        min-height: 250px;
    }
    
    .product-cta .btn {
        display: block;
        width: 100%;
        text-align: center;
    }
}