/* Trial Badge Styling */
.trial-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffe5e5 100%);
    border: 2px dashed var(--primary-color);
    border-radius: 12px;
    padding: 1.25rem 2rem;
    margin: 2rem auto;
    max-width: 600px;
    animation: pulse-border 2s ease-in-out infinite;
}

@keyframes pulse-border {
    0%, 100% {
        border-color: var(--primary-color);
        box-shadow: 0 0 0 0 rgba(230, 57, 70, 0.4);
    }
    50% {
        border-color: #ff4d5a;
        box-shadow: 0 0 0 8px rgba(230, 57, 70, 0);
    }
}

.trial-badge-icon {
    font-size: 2.5rem;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.trial-badge-content {
    text-align: left;
}

.trial-badge-content strong {
    display: block;
    font-size: 1.1rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.trial-badge-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.trial-badge-content .highlight {
    color: var(--primary-color);
    font-weight: 700;
}

/* Pricing Trial Note */
.pricing-trial-note {
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.75rem;
    text-align: center;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .trial-badge {
        flex-direction: column;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .trial-badge-icon {
        font-size: 2rem;
    }

    .trial-badge-content {
        text-align: center;
    }

    .trial-badge-content strong {
        font-size: 1rem;
    }

    .trial-badge-content p {
        font-size: 0.85rem;
    }
}
