/* SEO Trust Bar + Expert Section */
.seo-trust-bar {
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    padding: 28px 0;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}
.seo-trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
}
.seo-trust-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: #e2e8f0;
    padding: 12px 14px;
    border-radius: 12px;
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.08);
    transition: transform .2s, border-color .2s;
}
.seo-trust-item:hover {
    transform: translateY(-2px);
    border-color: rgba(32,114,243,.4);
}
.seo-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: linear-gradient(135deg, #2072f3, #059669);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: #fff;
}
.seo-trust-item strong {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 2px;
}
.seo-trust-item span {
    font-size: 12px;
    color: #94a3b8;
    line-height: 1.4;
}

.seo-expert-section {
    background: linear-gradient(180deg, #f8fafc 0%, #fff 100%);
    padding: 72px 0;
}
.seo-expert-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 40px;
}
.seo-expert-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #eff6ff;
    color: #1d4ed8;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
}
.seo-expert-header h2 {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    margin: 0 0 12px;
    color: #0f172a;
}
.seo-expert-header p {
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.65;
    margin: 0;
}
.seo-expert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}
.seo-expert-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 24px rgba(15,23,42,.04);
    transition: box-shadow .25s, transform .25s;
}
.seo-expert-card:hover {
    box-shadow: 0 12px 40px rgba(32,114,243,.1);
    transform: translateY(-3px);
}
.seo-expert-card h3 {
    font-size: 1.05rem;
    margin: 0 0 10px;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 8px;
}
.seo-expert-card h3 i {
    color: #059669;
}
.seo-expert-card p {
    margin: 0;
    font-size: .92rem;
    color: #64748b;
    line-height: 1.6;
}
.seo-expert-cta {
    background: linear-gradient(135deg, #2072f3 0%, #1a6fd4 100%);
    border-radius: 20px;
    padding: 32px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}
.seo-expert-stats {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}
.seo-expert-stats div {
    text-align: center;
}
.seo-expert-stats strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}
.seo-expert-stats span {
    font-size: 12px;
    opacity: .85;
}
.seo-expert-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.seo-expert-actions .btn-outline {
    background: rgba(255,255,255,.12);
    border-color: rgba(255,255,255,.35);
    color: #fff;
}
.seo-expert-actions .btn-outline:hover {
    background: #fff;
    color: #2072f3;
}

/* Service FAQ accordion */
.seo-faq-block { margin-top: 24px; }
.seo-faq-list { display: flex; flex-direction: column; gap: 10px; }
.seo-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}
.seo-faq-q {
    padding: 16px 18px;
    font-weight: 600;
    cursor: pointer;
    list-style: none;
    color: #0f172a;
    font-size: .98rem;
}
.seo-faq-q::-webkit-details-marker { display: none; }
.seo-faq-q::after {
    content: '+';
    float: right;
    font-size: 1.25rem;
    color: #2072f3;
    font-weight: 400;
}
.seo-faq-item[open] .seo-faq-q::after { content: '−'; }
.seo-faq-a {
    padding: 0 18px 16px;
    color: #64748b;
    font-size: .95rem;
    line-height: 1.65;
}
.seo-faq-a p { margin: 0; }

@media (max-width: 768px) {
    .seo-expert-cta { flex-direction: column; text-align: center; }
    .seo-expert-stats { justify-content: center; }
    .seo-expert-actions { justify-content: center; }
}
