.ami-evidence-cta-section {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    background: linear-gradient(135deg, 
    rgba(80, 137, 145, 0.1) 0%, 
    rgba(209, 237, 69, 0.05) 50%, 
    rgba(255, 255, 255, 1) 100%
);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

/* Feathered circle - top left (teal) */
.ami-evidence-cta-section::before {
    content: '';
    position: absolute;
    top:   0px;
    left:   0px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(80, 137, 145, 0.25) 0%, rgba(80, 137, 145, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Feathered circle - bottom right (lime) */
.ami-evidence-cta-section::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: 0px;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(209, 237, 69, 0.4) 0%, rgba(209, 237, 69, 0) 70%);
    border-radius: 50%;
    pointer-events: none;
}

.evidence-cta-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.evidence-star-icon {
    margin-bottom: 24px;
}

.evidence-star-icon img {
    width: 56px;
    height: 56px;
}

.evidence-heading {
    font-size: 36px;
    font-weight: 800;
    color: #1A1A1A;
    margin: 0 0 24px 0;
    line-height: 1.2;
}

.evidence-heading .highlight {
    color: #508A92;
}

.evidence-paragraph {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin: 0 0 20px 0;
}

.evidence-highlight {
    font-size: 16px;
    font-weight: 700;
    color: #1A1A1A;
    margin: 0 0 32px 0;
    line-height: 1.5;
}

.evidence-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.evidence-button {
    display: inline-block;
    padding: 2px 24px;
    font-size: 16px;
    font-weight: 700!important;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.evidence-button-primary {
    background: #D0F45B;
    color: #1A1A1A;
    border: 2px solid #D0F45B;
}

.evidence-button-primary:hover {
    background: #c4e650;
    border-color: #c4e650;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.evidence-button-outline {
    background: #fff;
    color: #508A92;
    border: 2px solid #508A92;
}

.evidence-button-outline:hover {
    background: #f9f9f9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .ami-evidence-cta-section {
        padding: 60px 20px;
    }
    
    .evidence-heading {
        font-size: 28px;
    }
    
    .evidence-paragraph {
        font-size: 14px;
    }
    
    .evidence-highlight {
        font-size: 15px;
    }
    
    .evidence-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .evidence-button {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .ami-evidence-cta-section {
        padding: 50px 20px;
    }
    
    .evidence-star-icon img {
        width: 44px;
        height: 44px;
    }
    
    .evidence-heading {
        font-size: 24px;
    }
    
    .evidence-paragraph {
        font-size: 13px;
    }
    
    .evidence-highlight {
        font-size: 14px;
    }
    
    .evidence-button {
        padding: 10px 20px;
        font-size: 13px;
    }
}

