.productScreenshots {
		border-radius: 14px;
		overflow: hidden; /* changed from visible to hidden to clip the image inside */
		box-shadow: 0px 0px 5px 0px rgba(54, 45, 50, 0.29);
		background: #f8f8f8;
		padding: 5px;
		position: relative;
	}

	.productScreenshots img {
		display: block;
		border-radius: 14px; /* add border-radius directly to image */
		width: 100%; /* ensure it scales properly within container */
		height: auto;
	}
	
	
	/* Professional Product Display Sections */
.product-showcase {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.product-showcase:nth-child(even) {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.product-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(245, 99, 62, 0.3), transparent);
}

.product-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-wrapper {
    display: flex;
    align-items: center;
    gap: 80px;
}

.product-wrapper.reverse {
    flex-direction: row-reverse;
}

.product-visual {
    flex: 1;
    position: relative;
}

.product-visual-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.6s ease;
}

.product-wrapper.reverse .product-visual-container {
    transform: perspective(1000px) rotateY(5deg);
}

.product-visual-container:hover {
    transform: perspective(1000px) rotateY(0deg) scale(1.02);
}

.product-visual-container img {
    width: 100%;
    height: auto;
    display: block;
}

.product-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f5633e, #ff8a65);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(245, 99, 62, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-info {
    flex: 1;
}

.product-label {
    display: inline-block;
    color: #f5633e;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    position: relative;
    padding-left: 35px;
}

.product-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 25px;
    height: 2px;
    background: #f5633e;
}

.product-title {
    font-size: 42px;
    font-weight: 800;
    color: #2b3e4d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.product-description {
    font-size: 18px;
    color: #6b7179;
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.feature-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(245, 99, 62, 0.1), rgba(245, 99, 62, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    color: #f5633e;
    font-size: 18px;
}

.feature-text {
    font-size: 15px;
    color: #2b3e4d;
    font-weight: 500;
}

.product-pricing {
    display: flex;
    align-items: center;
    gap: 30px;
    padding: 25px;
    background: linear-gradient(135deg, rgba(245, 99, 62, 0.05), rgba(245, 99, 62, 0.02));
    border-radius: 15px;
    margin-bottom: 35px;
    border-left: 4px solid #f5633e;
}

.price-box {
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-currency {
    font-size: 24px;
    color: #f5633e;
    font-weight: 600;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: #2b3e4d;
}

.price-period {
    font-size: 18px;
    color: #6b7179;
}

.price-label {
    font-size: 14px;
    color: #6b7179;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-primary-gradient {
    background: linear-gradient(135deg, #f5633e, #ff6b4a);
    color: white;
    padding: 18px 45px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 99, 62, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary-gradient:hover::before {
    left: 100%;
}

.btn-primary-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(245, 99, 62, 0.4);
    color: white;
}

.btn-secondary-outline {
    padding: 18px 45px;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    color: #6b7179;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    background: white;
}

.btn-secondary-outline:hover {
    border-color: #f5633e;
    color: #f5633e;
    background: rgba(245, 99, 62, 0.05);
}

.tech-stack {
    display: flex;
    gap: 15px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.tech-item {
    padding: 8px 16px;
    background: #f8f9fa;
    border-radius: 50px;
    font-size: 13px;
    color: #6b7179;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .product-wrapper {
        flex-direction: column !important;
        gap: 40px;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .product-features {
        grid-template-columns: 1fr;
    }
    
    .product-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .btn-primary-gradient,
    .btn-secondary-outline {
        width: 100%;
        text-align: center;
    }
}

/* FAQ Section Styles */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f8f9fa 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23f5633e' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.faq-header {
    text-align: center;
    margin-bottom: 60px;
}

.faq-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #f5633e;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    position: relative;
    padding: 0 30px;
}

.faq-subtitle::before,
.faq-subtitle::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 2px;
    background: #f5633e;
}

.faq-subtitle::before {
    left: 0;
}

.faq-subtitle::after {
    right: 0;
}

.faq-title {
    font-size: 48px;
    font-weight: 800;
    color: #2b3e4d;
    margin-bottom: 20px;
    line-height: 1.2;
}

.faq-description {
    font-size: 18px;
    color: #6b7179;
    max-width: 700px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    gap: 20px;
}

.faq-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.faq-item.active {
    border-color: #f5633e;
    box-shadow: 0 10px 30px rgba(245, 99, 62, 0.15);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transition: all 0.3s ease;
    background: white;
    position: relative;
}

.faq-question::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: #f5633e;
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question::before {
    transform: scaleY(1);
}

.faq-question:hover {
    background: #f8f9fa;
}

.faq-question-text {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 15px;
}

.faq-number {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(245, 99, 62, 0.1), rgba(245, 99, 62, 0.05));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: 700;
    color: #f5633e;
    font-size: 16px;
}

.faq-item.active .faq-number {
    background: linear-gradient(135deg, #f5633e, #ff6b4a);
    color: white;
}

.faq-question h3 {
    font-size: 18px;
    font-weight: 600;
    color: #2b3e4d;
    margin: 0;
}

.faq-toggle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle {
    background: #f5633e;
    transform: rotate(180deg);
}

.faq-toggle i {
    font-size: 14px;
    color: #6b7179;
    transition: all 0.3s ease;
}

.faq-item.active .faq-toggle i {
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    background: #f8f9fa;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 30px 25px 85px;
}

.faq-answer p {
    color: #6b7179;
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.faq-answer li {
    padding: 10px 0;
    color: #6b7179;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.faq-answer li i {
    color: #2acc18;
    font-size: 14px;
    margin-top: 3px;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.faq-category {
    padding: 12px 30px;
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 50px;
    color: #6b7179;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-category:hover {
    border-color: #f5633e;
    color: #f5633e;
    background: rgba(245, 99, 62, 0.05);
}

.faq-category.active {
    background: linear-gradient(135deg, #f5633e, #ff6b4a);
    border-color: transparent;
    color: white;
    box-shadow: 0 5px 20px rgba(245, 99, 62, 0.3);
}

.faq-cta {
    text-align: center;
    margin-top: 60px;
    padding: 40px;
    background: linear-gradient(135deg, rgba(245, 99, 62, 0.05), rgba(245, 99, 62, 0.02));
    border-radius: 20px;
    border: 1px solid rgba(245, 99, 62, 0.1);
}

.faq-cta h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2b3e4d;
    margin-bottom: 10px;
}

.faq-cta p {
    color: #6b7179;
    margin-bottom: 25px;
}

.btn-faq-contact {
    padding: 15px 40px;
    background: linear-gradient(135deg, #f5633e, #ff6b4a);
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(245, 99, 62, 0.3);
}

.btn-faq-contact:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(245, 99, 62, 0.4);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 32px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-answer-content {
        padding: 0 20px 20px 20px;
    }
    
    .faq-categories {
        gap: 10px;
    }
    
    .faq-category {
        padding: 10px 20px;
        font-size: 14px;
    }
}

