/* Professional Sales Optimization */

/* 1. Sticky Mobile Button - Removed by user request */

/* 2. FAQ Section */
.pro-faq-section {
    padding: 60px 0;
    background: #fff;
    font-family: 'Inter', sans-serif;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-details {
    margin-bottom: 30px;
    background: #f9f9f9;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.faq-details summary {
    padding: 18px 20px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
}

.faq-details summary::after {
    content: '+';
    font-size: 20px;
    color: #da1884;
}

.faq-details[open] summary::after {
    content: '-';
}

.faq-details p {
    padding: 20px;
    margin: 0;
    color: #555;
    line-height: 1.6;
    border: 1px solid #eee;
    border-top: none;
    background: #fff;
}

/* 3. Comparison Table */
.pro-comparison-section {
    padding: 60px 0;
    background: #fdfdfd;
}

.vs-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.vs-table th {
    padding: 20px;
    font-size: 18px;
    text-align: center;
}

.vs-table th.brand-col {
    background: #fff1f9;
    color: #da1884;
    border-bottom: 3px solid #da1884;
    width: 50%;
}

.vs-table th.others-col {
    background: #f0f0f0;
    color: #888;
    border-bottom: 3px solid #ccc;
    width: 50%;
}

.vs-table td {
    padding: 15px 20px;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: 15px;
}

.vs-check {
    color: #24B800;
    font-weight: bold;
    font-size: 18px;
}

.vs-cross {
    color: #ccc;
    font-size: 18px;
}

/* 4. Zig-Zag Layout */
.pro-features-layout {
    font-family: 'Inter', sans-serif;
    padding: 40px 0;
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-img {
    flex: 1;
}

.feature-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.feature-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

@media (max-width: 768px) {

    .feature-row,
    .feature-row.reverse {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 60px;
    }

    .feature-text h3 {
        font-size: 24px;
        text-align: center;
    }

    .feature-text p {
        text-align: center;
    }
}

/* 5. How It Works Steps */
.how-it-works-section {
    text-align: center;
    padding: 40px 0;
    background: #fff;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.step-item {
    flex: 1;
    min-width: 250px;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #fff1f9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    margin: 0 auto 20px;
    color: #da1884;
}

.step-title {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 10px;
}

.step-desc {
    color: #666;
    font-size: 14px;
}

/* Arrow between steps */
.step-item:not(:last-child):after {
    content: '➔';
    position: absolute;
    right: -25px;
    top: 30px;
    color: #ddd;
    font-size: 20px;
}

@media (max-width: 768px) {
    .step-item:not(:last-child):after {
        display: none;
    }
}