/* Professional Purchase Buttons */
.purchase-btn {
    background: #059669;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
    text-align: center;
    font-family: inherit;
}

.purchase-btn:hover {
    background: #047857;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(5, 150, 105, 0.2);
}

.purchase-btn:active {
    transform: translateY(0);
}

.purchase-btn:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.1);
}

/* Clean Trust Signals */
.trust-signals {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 24px 0;
    flex-wrap: wrap;
}

.trust-signal {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #6b7280;
    font-size: 14px;
    font-weight: 500;
}

.trust-signal svg {
    width: 18px;
    height: 18px;
    stroke: #059669;
}

/* Clean Duration Cards */
.duration-card {
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    background: white;
    transition: all 0.2s ease;
}

.duration-card:hover {
    border-color: #d1d5db;
}

.duration-option input[type="radio"]:checked + .duration-card {
    border-color: #059669;
    background: #f8fafc;
}

.duration-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.duration-name {
    font-weight: 600;
    color: #111827;
}

.duration-price {
    font-size: 20px;
    font-weight: 700;
    color: #059669;
}

.duration-billing {
    color: #6b7280;
    font-size: 14px;
}

/* Security Note */
.security-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    color: #6b7280;
    font-size: 14px;
}

.security-note svg {
    width: 16px;
    height: 16px;
    stroke: #6b7280;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .trust-signals {
        gap: 16px;
    }
    
    .trust-signal {
        font-size: 13px;
    }
    
    .purchase-btn {
        padding: 14px 24px;
        font-size: 15px;
    }
}