/* Speed Test CTA Styles */
.sap-speed-cta {
    margin-top: 40px;
    padding: 0 20px;
}

.sap-cta-container {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 16px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.sap-cta-container::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 15s infinite ease-in-out;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(-10%, 10%) rotate(120deg); }
    66% { transform: translate(10%, -10%) rotate(240deg); }
}

.sap-cta-container h3 {
    color: white;
    font-size: 28px;
    margin: 0 0 15px 0;
    position: relative;
    z-index: 1;
}

.sap-cta-container p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin: 0 0 25px 0;
    position: relative;
    z-index: 1;
}

.sap-button-gradient {
    background: white;
    color: #667eea;
    padding: 15px 35px;
    font-size: 18px;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.sap-button-gradient:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
    background: #f8f8ff;
}

/* Responsive Design */
@media (max-width: 768px) {
    .sap-cta-container {
        padding: 30px 20px;
    }

    .sap-cta-container h3 {
        font-size: 24px;
    }

    .sap-cta-container p {
        font-size: 16px;
    }

    .sap-button-gradient {
        padding: 12px 25px;
        font-size: 16px;
    }
}