.bowa-goc-btn {
    background: var(--bowa-accent, #0EA5E9);
    border: none;
    color: #fff;
    padding: .75rem 1rem;
    border-radius: 12px;
    cursor: pointer;
    font-weight: 600;
    transition: opacity 0.2s;
}

.bowa-goc-btn:hover {
    opacity: 0.9;
}

.bowa-goc-modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.45);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.bowa-goc-modal {
    background: #fff;
    max-width: 680px;
    width: 92%;
    border-radius: 16px;
    overflow: hidden;
    padding: 0;
    box-shadow: 0 20px 25px -5px rgba(0,0,0,0.1);
}

.bowa-goc-card {
    border: 1px solid #eee;
    border-radius: 14px;
    padding: 12px;
    transition: transform 0.2s;
}

.bowa-goc-card:hover {
    transform: translateY(-2px);
}

.bowa-goc-actions {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.bowa-goc-actions a {
    padding: 8px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s;
}

.bowa-goc-actions a.primary {
    background: var(--bowa-accent, #0EA5E9);
    color: white;
}

.bowa-goc-actions a:not(.primary) {
    border: 1px solid #ddd;
    color: #666;
}

.bowa-app-wrap {
    max-width: 760px;
    margin: 0 auto;
    padding: 20px;
}

.bowa-form input,
.bowa-form select,
.bowa-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    font-size: 14px;
}

.bowa-form .row {
    margin: .5rem 0;
}

.bowa-form .row.two {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

@media (max-width: 640px) {
    .bowa-form .row.two {
        grid-template-columns: 1fr;
    }
}

.bowa-home-sections {
    max-width: 1100px;
    margin: 2rem auto;
    padding: 0 12px;
}

.bowa-social-proof {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
    flex-wrap: wrap;
}

.bowa-social-count h3 {
    font-size: 2.5rem;
    margin: 0;
    color: var(--bowa-accent, #0EA5E9);
}

.bowa-testimonials {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    flex: 1;
}

.bowa-testimonial {
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 10px;
    flex: 1 1 220px;
    background: #fafafa;
}

.bowa-brand-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

@media (max-width: 900px) {
    .bowa-brand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 640px) {
    .bowa-brand-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bowa-social-proof {
        flex-direction: column;
        align-items: flex-start;
    }
}

.bowa-brand-card {
    background: #fff;
    border: 1px solid #eee;
    padding: 10px;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.2s;
}

.bowa-brand-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.1);
}

.bowa-business-cta {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-radius: 12px;
    border: 1px solid #eee;
    background: linear-gradient(90deg, rgba(14,165,233,0.06), rgba(14,165,233,0.02));
}

.bowa-business-cta .cta-actions {
    display: flex;
    gap: 8px;
    align-items: center;
}

.bowa-goc-mini {
    font-size: 0.875rem;
    color: #666;
    margin: 5px 0;
}

.bowa-goc-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

:root {
    --bowa-accent: #0EA5E9;
}