/* Trust Badges */
    .trust-strip {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1.25rem 1rem;
        background: rgba(255, 255, 255, 0.7);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border-top: 1px solid rgba(124, 58, 237, 0.08);
        border-bottom: 1px solid rgba(124, 58, 237, 0.08);
    }

    .trust-badge {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        font-size: 0.875rem;
        font-weight: 600;
        color: #374151;
        padding: 0.4rem 1rem;
        background: rgba(124, 58, 237, 0.05);
        border: 1px solid rgba(124, 58, 237, 0.12);
        border-radius: 2rem;
    }

    .trust-badge span { color: #7c3aed; font-size: 1rem; }

    /* Problem Section */
    .problem-section {
        padding: 5rem 1rem;
        background: #f8fafc;
    }

    .problem-section h2 {
        font-size: 2rem;
        font-weight: 800;
        color: #0f172a;
        text-align: center;
        margin-bottom: 1rem;
    }

    .problem-section .lead {
        max-width: 42rem;
        margin: 0 auto 2rem;
        text-align: center;
        font-size: 1rem;
        color: #64748b;
        line-height: 1.8;
    }

    .problem-solution-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
        max-width: 52rem;
        margin: 0 auto;
    }

    @media (max-width: 768px) {
        .problem-solution-grid { grid-template-columns: 1fr; }
    }

    .problem-card {
        background: rgba(239, 68, 68, 0.04);
        border: 1.5px solid rgba(239, 68, 68, 0.15);
        border-radius: 1.25rem;
        padding: 1.75rem;
    }

    .solution-card {
        background: rgba(124, 58, 237, 0.04);
        border: 1.5px solid rgba(124, 58, 237, 0.18);
        border-radius: 1.25rem;
        padding: 1.75rem;
    }

    .ps-card-title {
        font-size: 0.8rem;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 1rem;
    }

    .problem-card .ps-card-title { color: #dc2626; }
    .solution-card .ps-card-title { color: #7c3aed; }

    .ps-list {
        list-style: none;
        padding: 0; margin: 0;
        display: flex;
        flex-direction: column;
        gap: 0.6rem;
    }

    .ps-list li {
        display: flex;
        align-items: flex-start;
        gap: 0.6rem;
        font-size: 0.9rem;
        color: #374151;
        line-height: 1.5;
    }

    .ps-list li::before {
        flex-shrink: 0;
        margin-top: 0.15rem;
        font-size: 0.85rem;
    }

    .problem-card .ps-list li::before { content: '✗'; color: #dc2626; font-weight: 700; }
    .solution-card .ps-list li::before { content: '✓'; color: #7c3aed; font-weight: 700; }

    /* Tools Section */
    .tools-section {
        padding: 5rem 1rem;
        background: linear-gradient(135deg, #f5f3ff 0%, #f8fafc 50%, #ede9fe 100%);
    }

    .section-title {
        font-size: 2.1rem;
        font-weight: 800;
        color: #0f172a;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .section-subtitle {
        color: #64748b;
        text-align: center;
        margin-bottom: 0.75rem;
        font-size: 1rem;
        max-width: 38rem;
        margin-left: auto;
        margin-right: auto;
        line-height: 1.7;
    }

    .section-para {
        color: #64748b;
        text-align: center;
        font-size: 0.92rem;
        max-width: 40rem;
        margin: 0 auto 2.5rem;
        line-height: 1.8;
    }

    /* Mini Tool Descriptions */
    .tool-seo-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
        max-width: 72rem;
        margin: 3rem auto 0;
    }

    @media (max-width: 1024px) { .tool-seo-grid { grid-template-columns: repeat(2, 1fr); } }
    @media (max-width: 640px) { .tool-seo-grid { grid-template-columns: 1fr; } }

    .tool-seo-item {
        background: rgba(255, 255, 255, 0.75);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: 1rem;
        padding: 1.25rem 1.5rem;
    }

    .tool-seo-item h3 {
        font-size: 0.9rem;
        font-weight: 700;
        color: #7c3aed;
        margin-bottom: 0.4rem;
    }

    .tool-seo-item p {
        font-size: 0.82rem;
        color: #64748b;
        line-height: 1.7;
        margin: 0;
    }

    /* Who Is It For */
    .who-section {
        padding: 5rem 1rem;
        background: #f8fafc;
    }

    .who-inner {
        max-width: 52rem;
        margin: 0 auto;
        text-align: center;
    }

    .who-section h2 {
        font-size: 2rem;
        font-weight: 800;
        color: #0f172a;
        margin-bottom: 1rem;
    }

    .who-section .lead {
        font-size: 1rem;
        color: #64748b;
        line-height: 1.8;
        margin-bottom: 2rem;
    }

    .who-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 0.875rem;
        text-align: left;
    }

    @media (max-width: 640px) { .who-grid { grid-template-columns: repeat(2, 1fr); } }

    .who-item {
        display: flex;
        align-items: center;
        gap: 0.6rem;
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(12px);
        border: 1px solid rgba(124, 58, 237, 0.1);
        border-radius: 0.875rem;
        padding: 0.875rem 1rem;
        font-size: 0.875rem;
        font-weight: 600;
        color: #0f172a;
    }

    .who-dot {
        width: 8px; height: 8px;
        background: #7c3aed;
        border-radius: 50%;
        flex-shrink: 0;
    }

    /* FAQ */
    .faq-section {
        padding: 5rem 1rem;
        background: linear-gradient(135deg, #f5f3ff 0%, #f8fafc 100%);
    }

    .faq-inner {
        max-width: 48rem;
        margin: 0 auto;
    }

    .faq-section h2 {
        font-size: 2rem;
        font-weight: 800;
        color: #0f172a;
        text-align: center;
        margin-bottom: 0.75rem;
    }

    .faq-section .lead {
        font-size: 0.95rem;
        color: #64748b;
        text-align: center;
        margin-bottom: 2.5rem;
        line-height: 1.7;
    }

    .faq-item {
        background: rgba(255, 255, 255, 0.8);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        border-radius: 1rem;
        margin-bottom: 0.75rem;
        overflow: hidden;
    }

    .faq-question {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 1.25rem 1.5rem;
        background: none;
        border: none;
        text-align: left;
        font-size: 0.95rem;
        font-weight: 700;
        color: #0f172a;
        cursor: pointer;
        font-family: 'Inter', sans-serif;
        gap: 1rem;
        transition: color 0.2s ease;
    }

    .faq-question:hover { color: #7c3aed; }

    .faq-icon {
        width: 1.5rem; height: 1.5rem;
        flex-shrink: 0;
        background: rgba(124, 58, 237, 0.08);
        border-radius: 50%;
        display: flex; align-items: center; justify-content: center;
        font-size: 1rem;
        color: #7c3aed;
        font-weight: 700;
        transition: all 0.3s ease;
    }

    .faq-item.open .faq-icon {
        background: #7c3aed;
        color: white;
        transform: rotate(45deg);
    }

    .faq-answer {
        display: none;
        padding: 0 1.5rem 1.25rem;
        font-size: 0.9rem;
        color: #64748b;
        line-height: 1.8;
        border-top: 1px solid rgba(124, 58, 237, 0.06);
        padding-top: 1rem;
    }

    .faq-item.open .faq-answer { display: block; }

    /* Final CTA */
    .cta-section {
        padding: 5rem 1rem;
        background: linear-gradient(135deg, #7c3aed, #6d28d9);
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .cta-section::before {
        content: '';
        position: absolute;
        top: -50%; left: -10%;
        width: 500px; height: 500px;
        background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 65%);
        pointer-events: none;
    }

    .cta-section h2 {
        font-size: 2rem;
        font-weight: 800;
        color: white;
        margin-bottom: 0.75rem;
        position: relative;
    }

    .cta-section p {
        font-size: 1rem;
        color: rgba(255,255,255,0.75);
        margin-bottom: 2rem;
        position: relative;
        line-height: 1.7;
    }

    .cta-btn {
        display: inline-flex;
        align-items: center;
        gap: 0.5rem;
        background: white;
        color: #7c3aed;
        padding: 1rem 2.25rem;
        border-radius: 0.875rem;
        font-size: 1rem;
        font-weight: 700;
        text-decoration: none;
        transition: all 0.3s ease;
        box-shadow: 0 6px 25px rgba(0,0,0,0.15);
        position: relative;
    }

    .cta-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 10px 35px rgba(0,0,0,0.2);
        color: #6d28d9;
    }

    /* How it Works */
    .how-section {
        padding: 5rem 1rem;
        background: white;
    }