/* STICKY ACTION BUTTONS — Bottom Right Fixed Position */
.sticky-action-buttons {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 999;
}

.sticky-action-buttons a {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.sticky-action-buttons a:hover {
    transform: scale(1.15);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.sticky-whatsapp {
    background: linear-gradient(135deg, #25D366, #1da851);
    color: #fff;
}

.sticky-call {
    background: linear-gradient(135deg, #0066FF, #0052CC);
    color: #fff;
}

/* COMPARISON TABLE — Fully Structured CSS */
.comparison-table-wrapper {
    overflow-x: auto;
    margin: 24px 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.98rem;
}

.comparison-table thead tr {
    background: linear-gradient(135deg, #0066FF 0%, #4c61fd 100%);
    color: white;
}

.comparison-table th {
    padding: 16px 14px;
    text-align: left;
    font-weight: 600;
    border: none;
}

.comparison-table th.feature-col {
    text-align: left;
}

.comparison-table th.company-col {
    text-align: center;
}

.comparison-table th .highlight-badge {
    background: white;
    color: #0066FF;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    display: inline-block;
}

.comparison-table tbody tr {
    border-bottom: 1px solid #e0e0e0;
}

.comparison-table tbody tr:nth-child(even) {
    background: #fafafa;
}

.comparison-table tbody tr:hover {
    background: #f5f5f5;
    transition: background 0.2s ease;
}

.comparison-table td {
    padding: 14px;
    text-align: left;
}

.comparison-table td.feature-col {
    font-weight: 600;
    color: #0a1628;
    background: #f9f9f9;
}

.comparison-table td.company-col {
    text-align: center;
}

.comparison-table td.metareach {
    background: #f0f6ff;
    color: #0066FF;
    font-weight: 600;
    text-align: center;
}

.comparison-table td.check-yes {
    color: #16a34a;
    font-weight: 600;
    text-align: center;
}

.comparison-table td.check-no {
    color: #dc2626;
    text-align: center;
}

/* PEOPLE ALSO ASK — Expandable FAQ Section */
.people-also-ask {
    background: #f9fafb;
    border-radius: 12px;
    padding: 32px 24px;
    margin: 48px 0;
    border: 1px solid #e0e0e0;
}

.people-also-ask h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #0a1628;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.people-also-ask-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 12px;
}

.people-ask-item {
    background: white;
    padding: 14px 16px;
    border-radius: 8px;
    border: 1px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.2s ease;
}

.people-ask-item:hover {
    border-color: #0066FF;
    box-shadow: 0 2px 8px rgba(0, 102, 255, 0.1);
    transform: translateY(-2px);
}

.people-ask-item strong {
    font-family: 'Outfit', sans-serif;
    display: block;
    color: #0a1628;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.people-ask-item span {
    font-size: 0.75rem;
    color: #0066FF;
    font-weight: 600;
}

/* SPEAKABLE TEXT — For Voice Search Optimization */
.speakable-snippet {
    padding: 16px 20px;
    background: #f0f6ff;
    border-radius: 8px;
    border-left: 4px solid #0066FF;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #495057;
    margin: 12px 0;
}

/* MOBILE RESPONSIVE ADJUSTMENTS */
@media (max-width: 768px) {
    .sticky-action-buttons {
        right: 12px;
        bottom: 12px;
    }

    .sticky-action-buttons a {
        width: 52px;
        height: 52px;
        font-size: 1.3rem;
    }

    .comparison-table {
        font-size: 0.85rem;
    }

    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
    }

    .people-also-ask-grid {
        grid-template-columns: 1fr;
    }
}
