/* Product Page Styles */

/* Product Hero Section */
.product-hero {
    padding: 120px 0 80px;
    background: var(--bg-light);
}

.product-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.product-hero-left {
    max-width: 600px;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.95rem;
    margin-bottom: 2rem;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--primary-color);
}

.product-icon-large {
    font-size: 4rem;
    margin-bottom: 1.5rem;
}

.product-title {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.product-subtitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.product-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 2.5rem;
}

.product-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-hero-right {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-image-placeholder {
    width: 100%;
    max-width: 500px;
    height: 400px;
    background: var(--bg-light);
    border: 2px dashed var(--border-color);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image-icon {
    font-size: 12rem;
    opacity: 0.3;
}

/* Key Features Section */
.key-features-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.key-features-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    transition: all 0.3s ease;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.feature-check {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    font-weight: bold;
    flex-shrink: 0;
}

.feature-card p {
    color: var(--text-dark);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Benefits Section */
.benefits-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.benefits-section .section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 900px;
    margin: 0 auto;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 1.5rem;
    transition: all 0.3s ease;
}

.benefit-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
    border-color: var(--primary-color);
}

.benefit-icon-circle {
    width: 48px;
    height: 48px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.benefit-check {
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: bold;
}

.benefit-card p {
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    margin: 0;
}

/* Product CTA Section */
.product-cta-section {
    background: linear-gradient(135deg, #2563EB 0%, #10B981 100%);
    color: white;
    text-align: center;
    padding: 80px 0;
}

.product-cta-section .cta-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.product-cta-section .cta-text {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.product-cta-section .btn-primary {
    background: var(--secondary-color);
}

.product-cta-section .btn-primary:hover {
    background: #059669;
}

/* Responsive Design */
@media (max-width: 968px) {
    .product-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .product-hero-right {
        order: -1;
    }

    .product-image-placeholder {
        max-width: 100%;
        height: 300px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .product-title {
        font-size: 2rem;
    }

    .product-icon-large {
        font-size: 3rem;
    }

    .product-image-icon {
        font-size: 8rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .product-cta {
        flex-direction: column;
    }

    .product-cta .btn {
        width: 100%;
    }
}

/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    background-color: #f9f9f9;
    font-family: 'Inter', sans-serif;
}

.faq-section .container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    color: #0d3b66; /* Professional SaaS color */
}

.faq-item {
    margin-bottom: 30px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 20px;
}

.faq-question {
    font-size: 1.25rem;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 10px;
    color: #f25822; /* Accent color for SaaS */
    transition: color 0.3s;
}

.faq-question:hover {
    color: #0d3b66;
}

.faq-answer {
    font-size: 1rem;
    line-height: 1.7;
    color: #333;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .faq-title {
        font-size: 2rem;
    }

    .faq-question {
        font-size: 1.1rem;
    }

    .faq-answer {
        font-size: 0.95rem;
    }
}

